
/*
Theme Name: HackCore
Theme URI: https://example.com
Author: Spiros
Description: Dark hacker-style WordPress demo theme.
Version: 1.0
Text Domain: hackcore
*/

body{
    margin:0;
    background:#050505;
    color:#00ff88;
    font-family: Consolas, monospace;
}

header{
    padding:40px;
    text-align:center;
    border-bottom:1px solid #00ff88;
}

.logo{
    font-size:42px;
    font-weight:bold;
    letter-spacing:4px;
}

.hero{
    padding:120px 20px;
    text-align:center;
}

.hero h1{
    font-size:64px;
    margin-bottom:20px;
}

.hero p{
    max-width:700px;
    margin:auto;
    line-height:1.7;
    color:#8affc1;
}

.btn{
    display:inline-block;
    margin-top:30px;
    padding:14px 28px;
    border:1px solid #00ff88;
    color:#00ff88;
    text-decoration:none;
    transition:0.3s;
}

.btn:hover{
    background:#00ff88;
    color:#000;
}

.section{
    padding:80px 20px;
    max-width:1100px;
    margin:auto;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.card{
    border:1px solid #133f2c;
    padding:25px;
    background:#0a0a0a;
}

footer{
    text-align:center;
    padding:40px;
    border-top:1px solid #00ff88;
    color:#5e9f7e;
}
