:root {
    --bg-main: #081016;
    --bg-card: #121b22;
    --bg-elevated: #17242d;
    --bg-nav: rgba(8, 16, 22, 0.94);
    --primary: #34d399;
    --primary-dark: #0f9f6e;
    --accent: #f8c846;
    --accent-2: #4fb3ff;
    --text-light: #ffffff;
    --text-muted: #afbbc4;
    --danger: #ff6464;
    --border: rgba(255,255,255,0.08);
    --shadow: 0 18px 44px rgba(0,0,0,0.32);
    --font-stack: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --transition: all 0.24s ease;
}

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

html {
    scroll-behavior: smooth;
    font-family: var(--font-stack);
    background-color: var(--bg-main);
    color: var(--text-light);
}

body {
    line-height: 1.65;
}

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

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.standard-width {
    max-width: 820px;
}

.text-center {
    text-align: center;
}

.logo-accent,
.text-gradient {
    color: var(--primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    padding: 12px 24px;
    font-weight: 800;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    border: 1px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #071014;
    box-shadow: 0 10px 24px rgba(52, 211, 153, 0.24);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-header:hover {
    transform: translateY(-2px);
}

.btn-secondary {
    background: #ffffff;
    color: #071014;
}

.btn-header {
    background: rgba(52, 211, 153, 0.12);
    border-color: rgba(52, 211, 153, 0.55);
    color: var(--primary);
    padding: 9px 16px;
    font-size: 0.92rem;
}

.btn-large {
    min-height: 50px;
    padding: 14px 26px;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--bg-nav);
    backdrop-filter: blur(14px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    padding: 13px 0;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.45rem;
    font-weight: 900;
    text-decoration: none;
    color: var(--text-light);
}

.logo img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
}

.navbar ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.96rem;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-nav-toggle .bar {
    width: 24px;
    height: 3px;
    background-color: var(--text-light);
    transition: var(--transition);
}

.hero-section {
    padding: 142px 0 78px;
    background:
        linear-gradient(135deg, rgba(52,211,153,0.16), transparent 38%),
        linear-gradient(315deg, rgba(79,179,255,0.13), transparent 34%),
        var(--bg-main);
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 46px;
    align-items: center;
}

.badge {
    display: inline-flex;
    align-items: center;
    background: rgba(248, 200, 70, 0.14);
    color: #ffe28a;
    padding: 7px 13px;
    border-radius: 999px;
    font-size: 0.88rem;
    font-weight: 800;
    margin-bottom: 18px;
    border: 1px solid rgba(248, 200, 70, 0.28);
}

.hero-content h1 {
    font-size: clamp(2.25rem, 5vw, 4.4rem);
    line-height: 1.06;
    margin-bottom: 20px;
    font-weight: 950;
    letter-spacing: 0;
}

.hero-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    max-width: 690px;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-bottom: 22px;
}

.quick-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.quick-facts span {
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.04);
    color: var(--text-muted);
    border-radius: 999px;
    padding: 6px 12px;
    font-size: 0.9rem;
    font-weight: 700;
}

.hero-media {
    min-height: 360px;
    display: grid;
    place-items: center;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02)),
        var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 30px;
}

.hero-media img {
    width: min(100%, 330px);
    border-radius: 18px;
    box-shadow: 0 14px 30px rgba(0,0,0,0.28);
}

section {
    padding: 78px 0;
}

.section-title {
    margin-bottom: 42px;
}

.section-title h2 {
    font-size: clamp(1.85rem, 3vw, 2.55rem);
    font-weight: 900;
    margin-bottom: 12px;
}

.section-title p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.feature-card,
.overview-card,
.faq-item,
.benefit-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
}

.feature-card {
    padding: 28px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(52, 211, 153, 0.35);
}

.feature-icon {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    background: rgba(52, 211, 153, 0.12);
    color: var(--primary);
    border: 1px solid rgba(52, 211, 153, 0.24);
    border-radius: 8px;
    font-weight: 900;
    margin-bottom: 18px;
}

.feature-card h3,
.benefit-item h3,
.overview-card h3 {
    font-size: 1.25rem;
    margin-bottom: 9px;
}

.feature-card p,
.benefit-item p,
.faq-content p {
    color: var(--text-muted);
}

.guide-section,
.benefits-section {
    background: #0b151c;
}

.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
    gap: 34px;
    align-items: start;
}

.steps-list {
    color: var(--text-muted);
    margin: 0 0 26px 22px;
}

.steps-list li {
    margin-bottom: 12px;
    padding-left: 4px;
}

.overview-card {
    padding: 28px;
    box-shadow: var(--shadow);
}

.overview-card dl {
    display: grid;
    gap: 14px;
}

.overview-card dl div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    padding-bottom: 12px;
}

.overview-card dt {
    color: var(--text-muted);
    font-weight: 700;
}

.overview-card dd {
    color: var(--text-light);
    font-weight: 800;
    text-align: right;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.image-grid figure {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.image-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.image-grid figcaption {
    padding: 12px 14px;
    color: var(--text-light);
    font-weight: 800;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(245px, 1fr));
    gap: 20px;
}

.benefit-item {
    padding: 24px;
    border-left: 4px solid var(--primary);
}

.faq-accordion-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    padding: 18px 20px;
    background: transparent;
    border: none;
    text-align: left;
    color: var(--text-light);
    font-size: 1.05rem;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.faq-trigger .arrow::before {
    content: '+';
    font-size: 1.25rem;
    color: var(--primary);
}

.faq-item.open .faq-trigger .arrow::before {
    content: '-';
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    padding: 0 20px;
}

.faq-item.open .faq-content {
    max-height: 500px;
    padding: 0 20px 20px;
    border-top: 1px solid var(--border);
}

.faq-content p {
    padding-top: 14px;
}

.bottom-cta-section {
    background:
        linear-gradient(rgba(8,16,22,0.86), rgba(8,16,22,0.94)),
        url("assets/ix7-games.jpeg") center/cover no-repeat;
    border-top: 1px solid rgba(52,211,153,0.22);
}

.bottom-cta-section h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 950;
    margin-bottom: 12px;
}

.bottom-cta-section p {
    color: var(--text-muted);
    font-size: 1.12rem;
    margin-bottom: 28px;
}

.main-footer {
    background: #050b10;
    padding: 46px 0 28px;
    border-top: 1px solid var(--border);
}

.footer-logo {
    font-size: 1.75rem;
    font-weight: 950;
    margin-bottom: 16px;
}

.disclaimer {
    font-size: 0.92rem;
    color: var(--text-muted);
    max-width: 900px;
    margin: 0 auto 22px;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 8px;
    font-size: 0.92rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.copyright {
    font-size: 0.85rem;
    color: #6b7780;
}

.support-link {
    display: inline-block;
    color: var(--primary);
    font-weight: 900;
    text-decoration: none;
    margin-top: 12px;
    word-break: break-word;
}

.legal-page {
    padding-top: 118px;
}

.legal-wrap {
    max-width: 920px;
}

.legal-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 36px;
    margin-bottom: 58px;
}

.legal-content h1 {
    font-size: clamp(2rem, 4vw, 2.65rem);
    line-height: 1.12;
    margin-bottom: 10px;
}

.legal-content h2 {
    color: var(--primary);
    font-size: 1.28rem;
    margin: 28px 0 10px;
}

.legal-content p {
    color: var(--text-muted);
    margin-bottom: 14px;
}

.last-updated {
    border-bottom: 1px solid var(--border);
    padding-bottom: 16px;
    margin-bottom: 22px;
    font-size: 0.92rem;
}

@media (max-width: 980px) {
    .hero-grid,
    .two-column {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        text-align: center;
    }

    .hero-cta-group,
    .quick-facts {
        justify-content: center;
    }
}

@media (max-width: 820px) {
    .navbar {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--bg-nav);
        border-bottom: 1px solid var(--border);
        padding: 18px 20px;
    }

    .navbar.active {
        display: block;
    }

    .navbar ul {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .mobile-nav-toggle {
        display: flex;
    }

    .btn-header {
        display: none;
    }
}

@media (max-width: 560px) {
    .container {
        padding: 0 16px;
    }

    .logo {
        font-size: 1.25rem;
    }

    .hero-section {
        padding-top: 122px;
    }

    .hero-media {
        min-height: auto;
        padding: 22px;
    }

    .btn {
        width: 100%;
    }

    .overview-card dl div {
        display: block;
    }

    .overview-card dd {
        text-align: left;
        margin-top: 3px;
    }
}
