/* ==========================
   ROOT VARIABLES
========================== */

:root{

    --bg-primary:#000000;
    --bg-secondary:#080808;
    --bg-card:#111111;
    --bg-card-hover:#181818;

    --green:#00ff88;
    --green-dark:#00d26a;

    --gold:#ffcc00;
    --gold-dark:#e6b800;

    --text:#ffffff;
    --text-muted:#9ca3af;

    --border:rgba(255,255,255,.08);

    --shadow:
    0 20px 60px rgba(0,0,0,.4);

    --transition:.3s ease;
}

/* ==========================
   RESET
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:var(--bg-primary);

    color:var(--text);

    overflow-x:hidden;

    min-height:100vh;
}

img{
    display:block;
    width:100%;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}

/* ==========================
   GLOBAL
========================== */

.container{

    width:90%;

    max-width:1400px;

    margin:auto;
}

section{

    padding:120px 0;
}

main{

    min-height:100vh;
}

/* ==========================
   SCROLLBAR
========================== */

::-webkit-scrollbar{

    width:8px;
}

::-webkit-scrollbar-track{

    background:#050505;
}

::-webkit-scrollbar-thumb{

    background:var(--green);

    border-radius:10px;
}

/* ==========================
   BUTTONS
========================== */

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:14px 30px;

    border-radius:12px;

    font-weight:700;

    transition:var(--transition);

    cursor:pointer;
}

.btn-primary{

    background:var(--green);

    color:#000;

    box-shadow:
    0 0 25px rgba(0,255,136,.20);
}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:
    0 0 35px rgba(0,255,136,.40);
}

.btn-outline{

    border:1px solid var(--border);

    background:rgba(255,255,255,.03);

    color:white;
}

.btn-outline:hover{

    border-color:var(--green);

    color:var(--green);
}

/* ==========================
   NAVBAR
========================== */

.navbar{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    z-index:9999;

    background:rgba(0,0,0,.82);

    backdrop-filter:blur(20px);

    -webkit-backdrop-filter:blur(20px);

    border-bottom:1px solid rgba(255,255,255,.05);
}

.navbar-container{

    height:90px;

    display:flex;

    align-items:center;

    justify-content:space-between;
}

/* Logo */

.logo{

    display:flex;

    align-items:center;
}

.navbar-logo{

    height:65px;

    width:auto;

    display:block;

    object-fit:contain;

    transition:.3s ease;
}

.navbar-logo:hover{

    transform:scale(1.03);
}

/* Navigation */

.nav-wrapper{

    display:flex;

    align-items:center;

    gap:45px;
}

.nav-links{

    display:flex;

    align-items:center;

    gap:35px;
}

.nav-links a{

    color:var(--text-muted);

    font-weight:500;

    transition:.3s ease;
}

.nav-links a:hover{

    color:var(--green);
}

/* Actions */

.nav-actions{

    display:flex;

    align-items:center;

    gap:15px;
}

/* Language Switch */

.language-switcher{

    display:flex;

    align-items:center;

    gap:8px;
}

.lang-link{

    padding:8px 14px;

    border-radius:10px;

    color:var(--text-muted);

    font-size:.9rem;

    transition:.3s ease;
}

.lang-link:hover{

    color:var(--green);
}

.lang-link.active{

    background:var(--green);

    color:#000;

    font-weight:700;
}

.divider{

    color:rgba(255,255,255,.25);
}

/* Mobile */

.mobile-menu-btn{

    display:none;

    background:none;

    border:none;

    color:white;

    font-size:1.4rem;

    cursor:pointer;
}

/* ==========================
   FOOTER
========================== */

.footer{

    background:#050505;

    border-top:1px solid rgba(255,255,255,.05);

    padding:100px 0 40px;
}

.footer-grid{

    display:grid;

    grid-template-columns:
    2fr 1fr 1fr 1fr;

    gap:60px;
}

.footer-brand p{

    color:var(--text-muted);

    line-height:1.8;

    margin-top:20px;

    max-width:350px;
}

.footer h3{

    margin-bottom:25px;

    color:white;

    font-size:1.1rem;
}

.footer ul{

    display:flex;

    flex-direction:column;

    gap:15px;
}

.footer a{

    color:var(--text-muted);

    transition:.3s ease;
}

.footer a:hover{

    color:var(--green);
}

.footer-socials{

    display:flex;

    gap:15px;

    margin-top:25px;
}

.footer-socials a{

    width:48px;

    height:48px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#111;

    border:1px solid rgba(255,255,255,.08);

    transition:.3s ease;
}

.footer-socials a:hover{

    background:var(--green);

    color:#000;

    transform:translateY(-5px);
}

.footer-bottom{

    margin-top:60px;

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.05);

    text-align:center;

    color:var(--text-muted);
}

/* ==========================
   UTILITIES
========================== */

.text-green{

    color:var(--green);
}

.glow{

    box-shadow:
    0 0 35px rgba(0,255,136,.25);
}

/* ==========================
   ANIMATIONS
========================== */

@keyframes float{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0);
    }
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width:1100px){

    .mobile-menu-btn{
        display:block;
        position:relative;
        z-index:10002;
    }

    .nav-wrapper{

        position:fixed;

        top:0;
        left:0;

        width:100vw;
        height:100vh;

        background:#080808;

        display:flex;

        flex-direction:column;

        justify-content:center;

        align-items:center;

        gap:35px;

        z-index:10000;

        transform:translateX(100%);

        transition:transform .35s ease;

    }

    .nav-wrapper.active{

        transform:translateX(0);

    }

    .nav-links{

        display:flex;

        flex-direction:column;

        gap:24px;

        width:100%;

        align-items:center;

    }

    .nav-actions{

        display:flex;

        flex-direction:column;

        width:90%;

        gap:15px;

    }

    .nav-actions .btn{

        width:100%;

    }

}

@media(max-width:768px){

    section{

        padding:90px 0;
    }

    .footer-grid{

        grid-template-columns:1fr;
    }

    .navbar-logo{

        height:55px;
    }
}
body.menu-open{
    overflow:hidden;
    height:100vh;
    touch-action:none;
}
/* ==========================
   MOBILE ACTIONS
========================== */

.mobile-actions{

    display:none;

}

.mobile-language-toggle{

    display:none;

}

@media (max-width:1100px){

    .mobile-actions{

        display:flex;

        align-items:center;

        gap:10px;

        margin-left:auto;

    }

    .mobile-language-toggle{

        display:flex;

        align-items:center;

        justify-content:center;

        gap:6px;

        padding:10px 14px;

        border-radius:12px;

        background:var(--green);

        color:#000;

        font-weight:700;

        font-size:.82rem;

        white-space:nowrap;

        transition:var(--transition);

    }

    .mobile-language-toggle:hover{

        background:var(--green-dark);

    }

    .mobile-language-toggle i{

        font-size:.9rem;

    }

    /* Hide desktop language switch */

    .language-switcher{

        display:none;

    }

}

@media (max-width:480px){

    .mobile-language-toggle{

        padding:9px 11px;

        font-size:.75rem;

    }

    .mobile-language-toggle i{

        display:none;

    }

}