@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', Arial, sans-serif;
    background: #0b0b0b;
    color: #f5f5f5;
    line-height: 1.6;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    transition: all 0.25s ease;
}

main {
    width: 100%;
}

/* =========================
   HEADER
========================= */
.site-header {
    width: 100%;
    background: #000;
    border-bottom: 3px solid #FFD700;
    position: sticky;
    top: 0;
    z-index: 9999;
    box-shadow: 0 3px 14px rgba(0, 0, 0, 0.35);
}

.header-wrap {
    width: min(1240px, 94%);
    margin: 0 auto;
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
}

.site-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.site-brand__logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    background: #000;
}

.site-brand__text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.site-brand__title {
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.4px;
}

.site-brand__title .mel {
    color: #FFD700;
}

.site-brand__title .bet {
    color: #ffffff;
    margin-left: 2px;
}

.site-brand__sub {
    color: #cfcfcf;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    margin-top: 4px;
}

.desktop-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.desktop-nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 22px;
    margin: 0;
    padding: 0;
}

.desktop-nav ul li {
    margin: 0;
    padding: 0;
}

.desktop-nav ul li a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
}

.desktop-nav ul li a:hover {
    color: #ffffff;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-btn {
    min-height: 40px;
    padding: 9px 14px;
    border-radius: 6px;
    font-size: 0.84rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.header-btn--primary {
    background: #FFD700;
    color: #000;
    border: 2px solid #FFD700;
}

.header-btn--primary:hover {
    background: transparent;
    color: #FFD700;
}

.header-btn--ghost {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.header-btn--ghost:hover {
    background: #FFD700;
    color: #000;
}

.lang-switch {
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    min-width: 32px;
    text-align: center;
}

.lang-switch:hover {
    color: #FFD700;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 2px solid #FFD700;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    border-radius: 10px;
    background: #FFD700;
}

.mobile-menu {
    display: none;
    background: #111;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.mobile-menu.active {
    display: block;
}

.mobile-menu__inner {
    width: min(1240px, 94%);
    margin: 0 auto;
    padding: 14px 0 18px;
}

.mobile-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-nav ul li {
    border-bottom: 1px solid #2a2a2a;
}

.mobile-nav ul li a {
    display: block;
    padding: 13px 2px;
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
}

.mobile-nav ul li a:hover {
    color: #fff;
}

.mobile-menu__actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 14px;
}

.lang-switch--mobile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border: 2px solid #FFD700;
    border-radius: 6px;
    color: #FFD700;
}

/* =========================
   HERO
========================= */
.hero-main {
    padding: 40px 20px;
    background: #111;
}

.hero-card {
    max-width: 1180px;
    margin: 0 auto;
    border-radius: 26px;
    padding: 34px 28px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
    overflow: hidden;
}

.hero-card h1,
.hero-card h2 {
    color: #fff;
}

.hero-card p {
    color: #f1f1f1;
}

.hero-card .accent {
    color: #FFD700;
}

/* =========================
   SECTIONS
========================= */
.section-heading {
    color: #FFD700;
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    margin: 0 0 34px 0;
    font-weight: 800;
    line-height: 1.2;
}

.content-panel {
    padding: 60px 20px;
    background: #111;
}

.info-block {
    max-width: 1180px;
    margin: 0 auto;
    background: #1d1d1d;
    border: 1px solid #333;
    border-radius: 22px;
    padding: 32px;
    color: #f5f5f5;
}

.info-block h2 {
    color: #FFD700;
}

.info-block p {
    color: #f1f1f1;
}

/* =========================
   CARDS
========================= */
.benefit,
.faq-card,
.cta-panel {
    background: #222;
    border: 1px solid #333;
    border-radius: 18px;
    color: #f5f5f5;
}

.benefit h3,
.faq-card h3,
.cta-panel h2 {
    color: #FFD700;
}

.benefit p,
.faq-card p,
.cta-panel p {
    color: #f1f1f1;
}

.benefit {
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.benefit:hover,
.faq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    border-color: rgba(255, 215, 0, 0.35);
}

/* =========================
   FOOTER
========================= */
footer {
    background: #0d0d0d;
    border-top: 3px solid #FFD700;
    padding: 28px 20px;
    text-align: center;
    color: #ddd;
}

footer a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
}

footer a:hover {
    color: #fff;
}

/* =========================
   BUTTON HELPERS
========================= */
.btn-gold,
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #FFD700;
    background: #FFD700;
    color: #000;
}

.btn-gold:hover,
.cta-button:hover {
    background: transparent;
    color: #FFD700;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #FFD700;
    background: transparent;
    color: #FFD700;
}

.btn-outline:hover {
    background: #FFD700;
    color: #000;
}

/* =========================
   UTILITIES
========================= */
.text-gold {
    color: #FFD700 !important;
}

.text-light {
    color: #f5f5f5 !important;
}

.bg-dark {
    background: #111 !important;
}

.bg-panel {
    background: #1d1d1d !important;
}

.shadow-soft {
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px) {
    .desktop-nav ul {
        gap: 14px;
    }

    .header-btn {
        padding: 8px 10px;
        font-size: 0.78rem;
    }

    .hero-card {
        padding: 28px 22px;
    }

    .info-block {
        padding: 26px 22px;
    }
}

@media (max-width: 860px) {
    .desktop-nav,
    .header-actions .header-btn,
    .header-actions .lang-switch {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .header-wrap {
        min-height: 72px;
    }

    .site-brand__logo {
        width: 46px;
        height: 46px;
    }

    .site-brand__title {
        font-size: 1.15rem;
    }

    .site-brand__sub {
        font-size: 0.58rem;
        letter-spacing: 0.14em;
    }

    .hero-main,
    .content-panel {
        padding-left: 16px;
        padding-right: 16px;
    }

    .hero-card {
        border-radius: 22px;
    }
}

@media (max-width: 640px) {
    .header-wrap {
        width: 94%;
    }

    .mobile-menu__inner {
        width: 94%;
    }

    .mobile-menu__actions .header-btn,
    .mobile-menu__actions .lang-switch--mobile {
        width: 100%;
    }

    .hero-card {
        padding: 24px 18px;
    }

    .info-block {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .section-heading {
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .site-brand__logo {
        width: 42px;
        height: 42px;
    }

    .site-brand__title {
        font-size: 1rem;
    }

    .site-brand__sub {
        font-size: 0.54rem;
    }

    .hero-card {
        padding: 22px 16px;
    }
}