:root {

    --background: #07060b;
    --background-light: #0d0b13;
    --panel: #110e19;
    --panel-hover: #181323;

    --purple: #8b5cf6;
    --purple-light: #b58aff;
    --purple-dark: #6d3bd1;

    --text: #f8f7fb;
    --muted: #aaa5b5;

    --border:
        rgba(255,255,255,0.08);
}


/* ==========================================
   RESET
========================================== */

* {

    box-sizing: border-box;

    margin: 0;
    padding: 0;

}


html {

    scroll-behavior: smooth;

}


body {

    min-height: 100vh;

    background:

        radial-gradient(
            circle at 80% 0%,
            rgba(139,92,246,0.16),
            transparent 35%
        ),

        var(--background);

    color: var(--text);

    font-family:
        Inter,
        Arial,
        Helvetica,
        sans-serif;

}


a {

    color: inherit;

    text-decoration: none;

}


/* ==========================================
   CONTAINER
========================================== */

.container,
.nav-container {

    width:
        min(1180px, 92%);

    margin:
        auto;

}


/* ==========================================
   NAVBAR
========================================== */

.navbar {

    position: sticky;

    top: 0;

    z-index: 9999;

    background:
        rgba(7,6,11,0.92);

    backdrop-filter:
        blur(18px);

    -webkit-backdrop-filter:
        blur(18px);

    border-bottom:
        1px solid var(--border);

}


.nav-container {

    min-height: 82px;

    display: flex;

    align-items: center;

    gap: 25px;

}


/* ==========================================
   LOGO
========================================== */

.brand-area {

    display: flex;

    align-items: center;

    gap: 18px;

    flex-shrink: 0;

}


.brand-logo {

    display: flex;

    align-items: center;

    height: 50px;

}


.brand-logo img {

    display: block;

    height: 46px;

    width: auto;

    max-width: 180px;

    object-fit: contain;

}


/* ==========================================
   SPIELERANZAHL
========================================== */

.player-count {

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 7px 11px;

    background:
        rgba(255,255,255,0.035);

    border:
        1px solid var(--border);

    border-radius: 9px;

    color: var(--muted);

    font-size: 12px;

    white-space: nowrap;

}


.player-count strong {

    color: white;

    font-weight: 800;

}


.online-dot {

    width: 7px;

    height: 7px;

    flex-shrink: 0;

    border-radius: 50%;

    background:
        #8b5cf6;

    box-shadow:
        0 0 12px
        rgba(139,92,246,0.9);

}


/* ==========================================
   NAVIGATION
========================================== */

.navigation {

    margin-left: auto;

    display: flex;

    align-items: center;

    gap: 3px;

}


.nav-item {

    position: relative;

}


.nav-link {

    display: flex;

    align-items: center;

    gap: 7px;

    padding:
        12px 13px;

    border: none;

    background: transparent;

    border-radius: 10px;

    color: #d8d4df;

    font-size: 14px;

    font-weight: 700;

    cursor: pointer;

    white-space: nowrap;

    transition:
        background .2s ease,
        color .2s ease;

}


.nav-link:hover {

    color: white;

    background:
        rgba(139,92,246,0.13);

}


/* ==========================================
   DROPDOWN BUTTON
========================================== */

.dropdown-button {

    font-family: inherit;

}


.arrow {

    font-size: 12px;

    transition:
        transform .2s ease;

}


.dropdown-item.open .arrow {

    transform:
        rotate(180deg);

}


/* ==========================================
   DROPDOWN
========================================== */

.dropdown-menu {

    position: absolute;

    top:
        calc(100% + 8px);

    left: 0;

    width: 220px;

    padding: 8px;

    background:
        rgba(16,13,24,0.98);

    border:
        1px solid var(--border);

    border-radius: 14px;

    box-shadow:
        0 20px 60px
        rgba(0,0,0,0.55);

    opacity: 0;

    visibility: hidden;

    transform:
        translateY(-8px);

    pointer-events: none;

    transition:
        opacity .18s ease,
        transform .18s ease,
        visibility .18s ease;

}


.dropdown-item.open .dropdown-menu {

    opacity: 1;

    visibility: visible;

    transform:
        translateY(0);

    pointer-events: auto;

}


.dropdown-menu a {

    display: flex;

    align-items: center;

    gap: 10px;

    padding:
        12px 13px;

    color: #cfc9d9;

    border-radius: 9px;

    font-size: 14px;

    font-weight: 600;

    transition:
        background .18s ease,
        color .18s ease;

}


.dropdown-menu a span {

    color:
        var(--purple-light);

}


.dropdown-menu a:hover {

    color: white;

    background:
        rgba(139,92,246,0.15);

}


/* ==========================================
   DISCORD
========================================== */

.discord-link {

    color:
        var(--purple-light);

}


.discord-link:hover {

    color: white;

}


/* ==========================================
   MOBILE BUTTON
========================================== */

.mobile-menu {

    display: none;

    margin-left: auto;

    padding:
        9px 12px;

    border:
        1px solid var(--border);

    border-radius: 9px;

    background:
        rgba(255,255,255,0.03);

    color: white;

    font-size: 20px;

    cursor: pointer;

}


/* ==========================================
   COUNTDOWN
   NUR INDEX.HTML
========================================== */

.vc-countdown {

    width: 100%;

    position: relative;

    z-index: 100;

    padding:
        22px 20px 24px;

    background:

        linear-gradient(
            180deg,
            rgba(17,14,25,0.98),
            rgba(7,6,11,0.98)
        );

    border-bottom:
        1px solid
        rgba(139,92,246,0.18);

}


.vc-countdown-inner {

    width:
        min(900px, 92%);

    margin:
        0 auto;

    text-align: center;

}


.vc-countdown-title {

    color:
        var(--purple-light);

    font-size: 10px;

    font-weight: 900;

    letter-spacing: 4px;

}


.vc-countdown-subtitle {

    margin-top: 5px;

    color: #ffffff;

    font-size: 21px;

    font-weight: 800;

}


.vc-countdown-date {

    margin-top: 5px;

    color:
        var(--muted);

    font-size: 12px;

}


.vc-countdown-date strong {

    color: #ffffff;

}


.vc-countdown-timer {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 10px;

    margin-top: 16px;

}


.vc-countdown-box {

    min-width: 105px;

    padding:
        10px 14px;

    background:
        rgba(139,92,246,0.07);

    border:
        1px solid
        rgba(139,92,246,0.20);

    border-radius: 10px;

}


.vc-countdown-box span {

    display: block;

    color: #ffffff;

    font-size: 25px;

    font-weight: 900;

    line-height: 1;

}


.vc-countdown-box small {

    display: block;

    margin-top: 5px;

    color: #8f899b;

    font-size: 8px;

    font-weight: 800;

    letter-spacing: 2px;

    text-transform: uppercase;

}


/* ==========================================
   HERO
========================================== */

.hero {

    min-height: 650px;

    display: flex;

    align-items: center;

    position: relative;

    overflow: hidden;

}


.hero::before {

    content: "";

    position: absolute;

    width: 650px;

    height: 650px;

    right: -220px;

    top: -180px;

    background:

        radial-gradient(
            circle,
            rgba(139,92,246,0.22),
            transparent 70%
        );

    pointer-events: none;

}


.hero-content {

    width:
        min(1180px, 92%);

    margin:
        auto;

    position: relative;

    z-index: 1;

}


.hero-label {

    margin-bottom: 18px;

    color:
        var(--purple-light);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 3px;

}


.hero h1 {

    max-width: 950px;

    margin-bottom: 25px;

    font-size:
        clamp(44px, 7vw, 78px);

    line-height: 1;

    letter-spacing: -2px;

}


.hero h1 span {

    color:
        var(--purple-light);

}


.hero p {

    max-width: 680px;

    color:
        var(--muted);

    font-size: 18px;

    line-height: 1.7;

}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 32px;

}


/* ==========================================
   BUTTONS
========================================== */

.button {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding:
        14px 21px;

    border:
        1px solid var(--border);

    border-radius: 11px;

    font-weight: 800;

    transition:
        transform .2s ease;

}


.button:hover {

    transform:
        translateY(-2px);

}


.button.primary {

    background:

        linear-gradient(
            135deg,
            var(--purple),
            var(--purple-dark)
        );

}


.button.secondary {

    background:
        var(--panel);

}


/* ==========================================
   FEATURES
========================================== */

.features {

    padding:
        90px 0;

}


.section-heading {

    margin-bottom: 35px;

}


.section-heading > span {

    color:
        var(--purple-light);

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 3px;

}


.section-heading h2 {

    margin-top: 12px;

    font-size: 42px;

}


.section-heading h2 strong {

    color:
        var(--purple-light);

}


.section-heading p {

    margin-top: 10px;

    color:
        var(--muted);

}


.feature-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 17px;

}


.feature-card {

    min-height: 230px;

    padding: 27px;

    background:

        linear-gradient(
            145deg,
            rgba(255,255,255,0.045),
            rgba(255,255,255,0.015)
        );

    border:
        1px solid var(--border);

    border-radius: 18px;

    transition:
        transform .2s ease,
        border .2s ease,
        background .2s ease;

}


.feature-card:hover {

    transform:
        translateY(-6px);

    border-color:
        rgba(139,92,246,0.4);

    background:
        var(--panel-hover);

}


.card-icon {

    margin-bottom: 25px;

    color:
        var(--purple-light);

    font-size: 26px;

}


.feature-card h3 {

    margin-bottom: 10px;

    font-size: 21px;

}


.feature-card p {

    color:
        var(--muted);

    font-size: 14px;

    line-height: 1.6;

}


/* ==========================================
   FOOTER
========================================== */

footer {

    padding:
        35px 0;

    border-top:
        1px solid var(--border);

    color:
        var(--muted);

}


.footer-content {

    display: flex;

    justify-content: space-between;

    gap: 30px;

}


.footer-content strong {

    color: white;

}


.footer-content p {

    margin-top: 7px;

}


.footer-links {

    display: flex;

    flex-wrap: wrap;

    gap: 20px;

}


.footer-links a:hover {

    color:
        var(--purple-light);

}


/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 1150px) {

    .nav-link {

        padding-left: 9px;

        padding-right: 9px;

    }

}


@media (max-width: 1000px) {

    .player-count {

        display: none;

    }

}


@media (max-width: 900px) {

    .nav-container {

        min-height: 74px;

        position: relative;

    }


    .brand-area {

        gap: 0;

    }


    .brand-logo img {

        height: 40px;

        max-width: 155px;

    }


    .mobile-menu {

        display: block;

    }


    .navigation {

        display: none;

        position: absolute;

        top:
            calc(100% + 10px);

        left: 0;

        right: 0;

        width: auto;

        margin: 0;

        padding: 12px;

        flex-direction: column;

        align-items: stretch;

        background:
            rgba(16,13,24,0.99);

        border:
            1px solid var(--border);

        border-radius: 15px;

        box-shadow:
            0 20px 60px
            rgba(0,0,0,0.5);

        z-index: 9999;

    }


    .navigation.mobile-open {

        display: flex;

    }


    .nav-item {

        width: 100%;

    }


    .nav-link {

        width: 100%;

        display: flex;

        align-items: center;

        justify-content: space-between;

        padding:
            15px 16px;

        border-radius: 10px;

    }


    .nav-link:hover {

        background:
            rgba(255,255,255,0.05);

    }


    .dropdown-item {

        position: relative;

    }


    .dropdown-button {

        width: 100%;

        justify-content: space-between;

        background: transparent;

        border: 0;

        font: inherit;

        cursor: pointer;

    }


    .dropdown-menu {

        display: none;

        position: static;

        width: 100%;

        margin-top: 4px;

        padding: 5px;

        background:
            rgba(255,255,255,0.025);

        border: 0;

        box-shadow: none;

        opacity: 1;

        visibility: visible;

        transform: none;

        pointer-events: auto;

    }


    .dropdown-item.open > .dropdown-menu {

        display: block;

    }


    .dropdown-menu a {

        display: flex;

        align-items: center;

        width: 100%;

        padding:
            13px 18px;

        border-radius: 8px;

    }


    .dropdown-menu a span {

        margin-right: 10px;

    }


    .feature-grid {

        grid-template-columns:
            repeat(2, 1fr);

    }

}


@media (max-width: 600px) {

    .hero {

        min-height: 580px;

    }


    .hero h1 {

        font-size: 43px;

        letter-spacing: -1px;

    }


    .hero p {

        font-size: 16px;

    }


    .feature-grid {

        grid-template-columns: 1fr;

    }


    .footer-content {

        flex-direction: column;

    }


    /* COUNTDOWN MOBILE */

    .vc-countdown {

        padding:
            18px 10px 20px;

    }


    .vc-countdown-subtitle {

        font-size: 18px;

    }


    .vc-countdown-date {

        font-size: 11px;

    }


    .vc-countdown-timer {

        gap: 6px;

    }


    .vc-countdown-box {

        min-width: 0;

        flex: 1;

        padding:
            10px 5px;

    }


    .vc-countdown-box span {

        font-size: 21px;

    }


    .vc-countdown-box small {

        font-size: 7px;

        letter-spacing: 1px;

    }

}


@media (max-width: 500px) {

    .navigation {

        left: 10px;

        right: 10px;

    }


    .brand-area {

        gap: 8px;

    }


    .player-count {

        font-size: 11px;

    }


    .brand-logo img {

        max-width: 130px;

        height: auto;

    }

}