
/*
Theme Name: Gaming Theme
Author: ChatGPT
Version: 1.0
*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Tahoma,sans-serif;
    background:#0f172a;
    color:#fff;
}

a{
    color:#38bdf8;
    text-decoration:none;
}

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

.site-header{
    background:#111827;
    padding:20px 0;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:28px;
    font-weight:bold;
    color:#38bdf8;
}

.hero{
    padding:100px 20px;
    text-align:center;
    background:linear-gradient(135deg,#1e293b,#0f172a);
}

.hero h1{
    font-size:50px;
    margin-bottom:15px;
}

.posts{
    padding:50px 0;
}

.post-card{
    background:#1e293b;
    margin-bottom:20px;
    padding:20px;
    border-radius:12px;
}

.post-card h2{
    margin-bottom:10px;
}

.site-footer{
    background:#111827;
    text-align:center;
    padding:25px;
    margin-top:50px;
}

@media(max-width:768px){
    .hero h1{
        font-size:32px;
    }

    .navbar{
        flex-direction:column;
        gap:10px;
    }
}
