/* ================================
   FONTS
================================ */
@font-face {
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('fonts/Rubik-Light.woff2') format('woff2');
}
@font-face {
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/Rubik-Regular.woff2') format('woff2');
}
@font-face {
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/Rubik-Medium.woff2') format('woff2');
}
@font-face {
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/Rubik-SemiBold.woff2') format('woff2');
}
@font-face {
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('fonts/Rubik-Bold.woff2') format('woff2');
}
@font-face {
    font-family: 'Rubik';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('fonts/Rubik-Black.woff2') format('woff2');
}

/* ================================
   ROOT & RESET
================================ */
:root {
    --bg-dark: #070707;
    --card-bg: rgba(255,255,255,0.03);
    --accent-white: #ffffff;
    --text-dim: #9a9a9a;
    --gold: #d4a017;
    --gold-light: #f0c040;
    --platinum: #e8e8e8;
    --silver: #c0c0c0;
}

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

body {
    background: var(--bg-dark);
    color: var(--accent-white);
    font-family: 'Rubik', sans-serif;
    overflow-x: hidden;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; }

/* ================================
   HEADER
================================ */
.header {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    background: rgba(5,5,5,0.95);
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
}

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

.logo-img {
    height: 44px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.4s;
}
.logo-img:hover {
    filter: grayscale(0%);
}

.nav-auth { display: flex; align-items: center; gap: 20px; }


.btn-outline {
    border: 1px solid rgba(255,255,255,0.35);
    padding: 10px 24px;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
    text-transform: uppercase;
    background: rgba(255,255,255,0.06);
    border-radius: 4px;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.6); }

/* ================================
   HERO
================================ */
.hero {
    position: relative;
    overflow: hidden;
    min-height: 680px;
    display: flex;
    align-items: flex-end;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    
    display: flex;
    align-items: flex-end;
}

.hero-grid {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0;
    min-height: 640px;
    width: 100%;
}

.hero-text {
    flex: 0 0 50%;
    padding-bottom: 70px;
    padding-top: 80px;
}

.main-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 36px;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #1a2240;
    color: #fff;
    padding: 20px 44px;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 2px;
    margin-top: 28px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.15);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}
.btn-hero:hover {
    background: #243060;
    border-color: rgba(255,255,255,0.3);
    transform: translateY(-2px);
}
.btn-arrow {
    font-size: 18px;
    line-height: 1;
    transition: transform 0.3s;
}
.btn-hero:hover .btn-arrow { transform: translateX(4px); }


.bonus-intro {
    margin-top: 28px;
    font-size: 14px;
    color: var(--text-dim);
    line-height: 1.6;
}
.bonus-intro-link {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(255,255,255,0.4);
    transition: text-decoration-color 0.3s;
}
.bonus-intro-link:hover {
    text-decoration-color: rgba(255,255,255,1);
}

.bonus-features { margin-top: 16px; display: flex; flex-direction: column; gap: 16px; }
.feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.feat-star {
    color: #fff;
    font-size: 18px;
    line-height: 1.3;
    flex-shrink: 0;
}
.feat-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}
.feat-sub {
    font-size: 12px;
    color: var(--text-dim);
    margin-top: 2px;
    line-height: 1.4;
}


/* ================================
   DIAMOND SPARKLES
================================ */
.sparkle {
    position: absolute;
    z-index: 6;
    pointer-events: none;
    border-radius: 50%;
    
    background: radial-gradient(circle,
        rgba(255,255,255,1)   0%,
        rgba(220,240,255,0.8) 20%,
        rgba(255,255,255,0)   65%);
    box-shadow:
        0 0 6px  3px rgba(255,255,255,0.75),
        0 0 14px 6px rgba(180,220,255,0.35);
}

.sparkle::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 420%;
    height: 1.5px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255,255,255,0.55) 25%,
        rgba(255,255,255,1)    50%,
        rgba(255,255,255,0.55) 75%,
        transparent 100%);
    border-radius: 50%;
}

.sparkle::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 1.5px;
    height: 420%;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(255,255,255,0.55) 25%,
        rgba(255,255,255,1)    50%,
        rgba(255,255,255,0.55) 75%,
        transparent 100%);
    border-radius: 50%;
}

@keyframes sparkleAnim {
    0%         { transform: scale(0) rotate(-15deg); opacity: 0; }
    10%        { opacity: 0; }
    45%        { transform: scale(1) rotate(10deg);  opacity: 1; }
    65%        { transform: scale(0.85) rotate(18deg); opacity: 0.6; }
    100%       { transform: scale(0) rotate(30deg);  opacity: 0; }
}

.sp-1 {
    width: 10px; height: 10px;
    top: 12%;  left: 58%;
    animation: sparkleAnim 3.2s ease-in-out infinite;
    animation-delay: 0s;
}
.sp-2 {
    width: 7px; height: 7px;
    top: 24%;  left: 67%;
    animation: sparkleAnim 2.8s ease-in-out infinite;
    animation-delay: -1.1s;
}
.sp-3 {
    width: 9px; height: 9px;
    top: 7%;   left: 71%;
    animation: sparkleAnim 3.6s ease-in-out infinite;
    animation-delay: -2.3s;
}
.sp-4 {
    width: 6px; height: 6px;
    top: 31%;  left: 56%;
    animation: sparkleAnim 2.4s ease-in-out infinite;
    animation-delay: -0.7s;
}
.sp-5 {
    width: 12px; height: 12px;
    top: 4%;   left: 63%;
    animation: sparkleAnim 4s ease-in-out infinite;
    animation-delay: -3s;
}

/* ================================
   STEPS — HOW IT WORKS
================================ */
.steps { padding: 60px 0; background: #080808; }
.steps .section-title { margin-bottom: 60px; }

.step-card {
    background: rgba(255,255,255,0.03);
    padding: 48px 36px;
    border: 1px solid rgba(255,255,255,0.07);
    transition: 0.4s;
    text-align: center;
    position: relative;
}
.step-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.15);
    transform: translateY(-6px);
}

.step-num {
    font-size: 56px;
    font-weight: 900;
    color: rgba(255,255,255,0.07);
    line-height: 1;
    margin-bottom: 16px;
}


.step-card h3 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 14px;
    text-transform: uppercase;
}
.step-card p { color: var(--text-dim); font-size: 14px; line-height: 1.7; }

/* ================================
   VIP SECTION
================================ */
.section-title {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

/* ================================
   BONUS SECTION
================================ */
.bonus-section {
    padding: 60px 0;
    background: #060606;
}

.bonus-section-sub {
    text-align: center;
    color: var(--text-dim);
    font-size: 15px;
    margin-bottom: 56px;
}
.bonus-section-sub strong { color: #ccc; }

.bonus-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

.bonus-card {
    background: #0e0e0e;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, border-color 0.3s;
}
.bonus-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.18);
}

.bonus-card-top {
    background: linear-gradient(160deg, #141414, #1a1a1a);
    padding: 28px 20px 24px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.bonus-game-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 16px;
}

.bonus-value {
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    letter-spacing: -2px;
}

.bonus-value-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: #666;
    text-transform: uppercase;
    margin-top: 6px;
}

.bonus-card-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bonus-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.bonus-detail:last-child { border-bottom: none; padding-bottom: 0; }

.bd-label { color: #555; }
.bd-val { color: #ccc; font-weight: 600; }

.bonus-card-btn {
    display: block;
    text-align: center;
    background: #1a2240;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px;
    border-top: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s;
}
.bonus-card-btn:hover { background: #243060; }

.bonus-note {
    max-width: 680px;
    margin: 40px auto 0;
    text-align: center;
    font-size: 12px;
    color: #444;
    line-height: 1.7;
}
.bonus-note-icon {
    display: inline-block;
    margin-right: 6px;
    color: #555;
    font-style: normal;
}
.bonus-note a {
    color: #666;
    text-decoration: underline;
    transition: color 0.3s;
}
.bonus-note a:hover { color: #999; }

/* ================================
   FAQ
================================ */
.faq-section {
    padding: 60px 0;
    background: #080808;
}

.faq-grid {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.faq-item {
    border-bottom: 1px solid rgba(255,255,255,0.07);
    overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 0;
    font-size: 15px;
    font-weight: 600;
    color: #ccc;
    cursor: pointer;
    user-select: none;
    transition: color 0.25s;
}
.faq-q:hover { color: #fff; }

.faq-q::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    color: #444;
    flex-shrink: 0;
    transition: transform 0.3s, color 0.3s;
    line-height: 1;
}

.faq-item.open .faq-q { color: #fff; }
.faq-item.open .faq-q::after {
    transform: rotate(45deg);
    color: #888;
}

.faq-a {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding-bottom: 0;
}
.faq-item.open .faq-a {
    max-height: 200px;
    padding-bottom: 22px;
}
.faq-a strong { color: #999; font-weight: 600; }
.faq-a a { color: #777; text-decoration: underline; transition: color 0.3s; }
.faq-a a:hover { color: #bbb; }


/* ================================
   FOOTER
================================ */
.footer {
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 60px 0 30px;
}

.footer-divider {
    height: 1px;
    background: rgba(255,255,255,0.06);
    margin: 0 0 32px;
}

.footer-partners { padding-bottom: 32px; }
.partners-title {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #444;
    text-align: center;
    margin-bottom: 24px;
}
.partners-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}
.partner-item {
    opacity: 0.5;
    transition: opacity 0.3s, filter 0.3s;
    filter: grayscale(100%) brightness(2);
}
.partner-item:hover { opacity: 0.9; filter: grayscale(0%) brightness(1); }
.partner-item img {
    height: 32px;
    width: auto;
    max-width: 100px;
    display: block;
}

.footer-copy-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding-bottom: 32px;
}
.footer-copy {
    font-size: 13px;
    color: #555;
}
.responsible-badges {
    display: flex;
    align-items: center;
    gap: 14px;
}
.badge-img {
    height: 40px;
    width: auto;
    opacity: 0.65;
    transition: opacity 0.3s;
}
.badge-img:hover { opacity: 1; }

.footer-legal-text {
    padding-bottom: 12px;
}
.footer-legal-text p {
    font-size: 11px;
    color: #3a3a3a;
    line-height: 1.7;
    margin-bottom: 10px;
}
.footer-legal-text a {
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-legal-text a:hover { color: #888; }
.footer-legal-text strong { color: #4a4a4a; }

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 900px) {
    .bonus-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .bonus-cards { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
}

@media (max-width: 768px) {
    .nav-auth { display: none; }

    .header {
        position: relative;
    }

    .hero {
        height: 100svh;
        height: 100vh;
        min-height: 600px;
        max-height: 900px;
        align-items: stretch;
    }

    .hero-bg {
        background-position: 62% center;
        background-size: cover;
    }

    
    .hero-bg::after {
        content: '';
        position: absolute;
        inset: 0;
        background:
            linear-gradient(to bottom,
                rgba(5,5,5,0.72) 0%,
                rgba(5,5,5,0.40) 15%,
                transparent       38%
            ),
            linear-gradient(to top,
                rgba(5,5,5,0.92) 0%,
                rgba(5,5,5,0.70) 25%,
                rgba(5,5,5,0.30) 45%,
                transparent       62%
            ),
            linear-gradient(to right,
                rgba(5,5,5,0.55) 0%,
                rgba(5,5,5,0.25) 40%,
                transparent       62%
            );
    }

    .hero .container {
        width: 100%;
    }

    .hero-grid {
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        gap: 0;
        padding-top: 72px;
        padding-bottom: 0;
    }

    .hero-text {
        flex: none;
        width: 100%;
        padding: 0 0 90px;
        text-align: left;
    }


    .main-title {
        font-size: 46px;
        letter-spacing: -0.5px;
        margin-bottom: 16px;
        text-shadow: 0 2px 20px rgba(0,0,0,0.9), 0 0 40px rgba(0,0,0,0.7);
    }

    .bonus-intro {
        font-size: 13px;
        margin-top: 16px;
        text-shadow: 0 1px 8px rgba(0,0,0,0.9);
    }

    .bonus-features {
        gap: 10px;
        margin-top: 8px;
    }

    .feat-title {
        font-size: 14px;
        text-shadow: 0 1px 6px rgba(0,0,0,0.8);
    }
    .feat-sub { font-size: 11px; }

    
    .btn-hero {
        position: absolute;
        bottom: 24px;
        left: 16px;
        right: 16px;
        width: auto;
        justify-content: center;
        padding: 18px 24px;
        margin-top: 0;
        order: unset;
        z-index: 3;
    }

    
    .sp-1 { top: 18%; left: 54%; width: 8px;  height: 8px; }
    .sp-2 { top: 30%; left: 64%; width: 6px;  height: 6px; }
    .sp-3 { top: 12%; left: 70%; width: 7px;  height: 7px; }
    .sp-4 { top: 24%; left: 48%; width: 5px;  height: 5px; }
    .sp-5 { top: 8%;  left: 60%; width: 10px; height: 10px; }

    
    .footer-copy-row { flex-direction: column; align-items: center; text-align: center; }
    .section-title { font-size: 30px; }
}

@media (max-width: 480px) {
    .hero-bg { background-position: 66% center; }
    .hero-grid { padding-top: 64px; }

    .main-title  { font-size: 38px; }
    .btn-hero    { bottom: 20px; left: 12px; right: 12px; }
    .feat-title  { font-size: 13px; }
    .feat-sub    { font-size: 11px; }
    .btn-hero    { font-size: 13px; padding: 16px 20px; }
    .bonus-intro { font-size: 12px; }
    .partners-logos { gap: 18px; }
    .section-title  { font-size: 26px; }

    
    .sp-1 { top: 15%; left: 55%; width: 7px;  height: 7px; }
    .sp-2 { top: 28%; left: 65%; width: 5px;  height: 5px; }
    .sp-3 { top: 9%;  left: 71%; width: 6px;  height: 6px; }
    .sp-4 { display: none; }
    .sp-5 { top: 5%;  left: 61%; width: 9px;  height: 9px; }
}
