/*
Theme Name: Wolf Army
Theme URI: https://wolfarmy.io
Author: Mate
Description: Wolf Army Theme
Version: 1.0
*/
/* RESET */

/* =========================
   RESET
========================= */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#0f131b;
    color:#fff;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

/* =========================
   NAVBAR
========================= */

.navbar{
    position:sticky;
    top:0;
    width:100%;
    background:#111722;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 60px;
    border-bottom:1px solid #232b39;
    z-index:999;
}

.logo img{
    height:70px;
    animation:rotateLogo 8s linear infinite;
}

@keyframes rotateLogo{

    from{
        transform:rotate(0deg);
    }

    to{
        transform:rotate(360deg);
    }

}

nav ul{
    display:flex;
    align-items:center;
    list-style:none;
    gap:35px;
}

nav a{
    color:#fff;
    text-decoration:none;
    font-weight:bold;
    transition:.3s;
}

nav a:hover,
nav a.active{
    color:#7cff4b;
}

.telegram-btn{
    display:inline-block;
    background:#79d742;
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:12px;
    font-weight:bold;
    transition:.3s;
}

.telegram-btn:hover{
    background:#8ef84d;
    transform:translateY(-3px);
}

/* =========================
   HERO
========================= */

.hero-image{
    width:100%;
    background:#111;
}

.hero-image img{
    width:100%;
}

/* =========================
   ABOUT
========================= */

.about{
    max-width:1400px;
    margin:auto;
    padding:90px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:50px;
}

.about-left{
    width:33%;
}

.about-left h2{
    font-size:46px;
    margin-bottom:25px;
}

.about-left p{
    color:#c9c9c9;
    line-height:1.8;
    margin-bottom:18px;
}

.join-btn{
    display:inline-block;
    margin-top:20px;
    background:#79d742;
    color:#fff;
    text-decoration:none;
    padding:15px 35px;
    border-radius:12px;
    font-weight:bold;
    transition:.3s;
}

.join-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 0 25px #79d742;
}

.about-right{
    width:64%;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.feature-card{
    background:#1a2230;
    border:1px solid #2d3646;
    border-radius:18px;
    padding:35px 25px;
    text-align:center;
    transition:.35s;
}

.feature-card:hover{
    transform:translateY(-10px);
    border-color:#79d742;
    box-shadow:0 0 25px rgba(121,215,66,.45);
}

.icon{
    font-size:50px;
    color:#79d742;
    margin-bottom:20px;
}

.feature-card h3{
    margin-bottom:15px;
    font-size:22px;
}

.feature-card p{
    color:#bfbfbf;
    line-height:1.7;
}

/* =========================
   GAME
========================= */

.game{
    width:90%;
    max-width:1400px;
    margin:80px auto;
    background:#121821;
    border:2px solid #2a323d;
    border-radius:18px;
    display:flex;
    align-items:center;
    gap:40px;
    padding:30px;
}

.game-image,
.game-info{
    flex:1;
}

.game-image img{
    width:100%;
    border-radius:12px;
}

.game-info h2{
    font-size:34px;
    margin-bottom:15px;
}

.game-info p{
    color:#cfcfcf;
    line-height:1.8;
    margin-bottom:20px;
}

.game-info ul{
    list-style:none;
}

.game-info li{
    margin:10px 0;
    color:#fff;
}

.play-btn{
    display:inline-block;
    margin-top:20px;
    background:#79d742;
    color:#fff;
    text-decoration:none;
    padding:14px 28px;
    border-radius:10px;
    font-weight:bold;
    transition:.3s;
}

.play-btn:hover{
    background:#90f04f;
    transform:translateY(-3px);
    box-shadow:0 0 20px rgba(121,215,66,.5);
}

/* =========================
   TOKENOMICS
========================= */

.tokenomics{
    width:90%;
    max-width:1400px;
    margin:80px auto;
    background:#141b22;
    border:1px solid #2f3945;
    border-radius:18px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    padding:40px;
}

.token-left{
    flex:1;
}

.token-left h2{
    font-size:38px;
    margin-bottom:20px;
}

.token-left p{
    color:#c9c9c9;
    line-height:1.8;
    margin-bottom:25px;
}

.token-btn{
    display:inline-block;
    padding:14px 30px;
    background:#79d742;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    font-weight:bold;
    transition:.3s;
}

.token-btn:hover{
    background:#90f04f;
    box-shadow:0 0 20px rgba(121,215,66,.5);
}

.token-right{
    flex:1.4;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.token-box{
    background:#1a2230;
    border:1px solid #2e3742;
    border-radius:15px;
    padding:25px 15px;
    text-align:center;
    transition:.3s;
}

.token-box:hover{
    border-color:#79d742;
    transform:translateY(-6px);
}

.token-icon{
    font-size:40px;
    margin-bottom:15px;
}

.token-box h4{
    color:#79d742;
    margin-bottom:10px;
}

.token-box span{
    color:#fff;
    font-size:17px;
}

/* =========================
   ROADMAP
========================= */

.roadmap{
    width:90%;
    max-width:1400px;
    margin:90px auto;
    background:#141b22;
    border:1px solid #283341;
    border-radius:18px;
    padding:60px 40px;
}

.roadmap h2{
    text-align:center;
    font-size:48px;
    margin-bottom:70px;
}

.timeline{
    position:relative;
    display:flex;
    justify-content:space-between;
    gap:25px;
}

.line{
    position:absolute;
    top:28px;
    left:10%;
    width:80%;
    height:5px;
    background:#2d3642;
    z-index:0;
}

.step{
    width:25%;
    text-align:center;
    position:relative;
    z-index:2;
    transition:.3s;
}

.step:hover{
    transform:translateY(-8px);
}

.circle{
    width:55px;
    height:55px;
    margin:auto;
    border-radius:50%;
    border:4px solid #79d742;
    display:flex;
    justify-content:center;
    align-items:center;
    background:#141b22;
    color:#fff;
    font-size:22px;
}

.active .circle{
    box-shadow:0 0 20px #79d742;
}

.step h3{
    margin:20px 0;
    font-size:30px;
}

.step .icon{
    font-size:55px;
    color:#79d742;
    margin-bottom:20px;
}

.step p{
    color:#c8c8c8;
    line-height:1.8;
}

/* =========================
   FOOTER
========================= */

.footer{
    background:#0d1218;
    border-top:1px solid #27313d;
    padding:25px 60px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.footer-logo{
    display:flex;
    align-items:center;
    gap:15px;
}

.footer-logo img{
    width:55px;
    height:55px;
    border-radius:50%;
}

.footer-logo h2{
    font-size:34px;
}

.footer-logo span{
    color:#79d742;
}

.footer-copy{
    color:#b8b8b8;
}

.footer-links{
    display:flex;
    gap:18px;
}

.footer-links a{
    color:#b8b8b8;
    text-decoration:none;
    transition:.3s;
}

.footer-links a:hover{
    color:#79d742;
}

/* ===================================
   RESPONSIVE
=================================== */

@media (max-width:1100px){

    .navbar{
        flex-direction:column;
        padding:20px;
        gap:20px;
    }

    nav ul{
        flex-wrap:wrap;
        justify-content:center;
        gap:20px;
    }

    .telegram-btn{
        width:100%;
        max-width:300px;
        text-align:center;
    }

    .about{
        flex-direction:column;
        padding:70px 25px;
    }

    .about-left,
    .about-right{
        width:100%;
    }

    .about-right{
        grid-template-columns:repeat(2,1fr);
    }

    .game{
        flex-direction:column;
        text-align:center;
    }

    .game-info ul{
        text-align:left;
        display:inline-block;
    }

    .tokenomics{
        flex-direction:column;
        text-align:center;
    }

    .token-left,
    .token-right{
        width:100%;
    }

    .token-right{
        grid-template-columns:repeat(2,1fr);
    }

    .timeline{
        flex-direction:column;
        align-items:center;
    }

    .line{
        display:none;
    }

    .step{
        width:100%;
        max-width:500px;
    }

    .footer{
        flex-direction:column;
        text-align:center;
        gap:20px;
    }

}

@media (max-width:768px){

    .navbar{
        padding:15px;
    }

    .logo img{
        height:60px;
    }

    nav ul{
        gap:15px;
    }

    nav a{
        font-size:14px;
    }

    .about{
        padding:50px 20px;
    }

    .about-left h2{
        font-size:34px;
    }

    .about-right{
        grid-template-columns:1fr;
    }

    .feature-card{
        padding:25px;
    }

    .game,
    .tokenomics,
    .roadmap{
        width:95%;
        padding:25px;
    }

    .token-right{
        grid-template-columns:1fr;
    }

    .roadmap h2{
        font-size:36px;
    }

    .step h3{
        font-size:24px;
    }

    .footer-logo{
        flex-direction:column;
    }

}

@media (max-width:480px){

    body{
        font-size:15px;
    }

    .navbar{
        padding:12px;
    }

    .logo img{
        height:50px;
    }

    nav ul{
        flex-direction:column;
        gap:12px;
    }

    .telegram-btn,
    .join-btn,
    .play-btn,
    .token-btn{
        width:100%;
        text-align:center;
    }

    .about-left h2,
    .game-info h2,
    .token-left h2,
    .roadmap h2{
        font-size:28px;
    }

    .feature-card,
    .token-box{
        padding:20px;
    }

    .step .icon{
        font-size:45px;
    }

    .footer{
        padding:20px 15px;
    }

}