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

:root {
    /* Основна палітра змінена під #2bcc6e */
    --royal-purple: #051d12;   /* Було deep purple -> Темний смарагд */
    --deep-purple: #020a05;    /* Було royal purple -> Майже чорний зелений */
    --gold: #2bcc6e;           /* ЦІЛЬОВИЙ КОЛІР */
    --bright-gold: #6effa6;    /* Світліша версія для бліків */
    --dark-gold: #1e8f4d;      /* Темніша версія для градієнтів */
    --burgundy: #0f3d24;       /* Було бордовий -> Глибокий лісовий зелений */
    
    /* Нейтральні кольори */
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --silver: #c0dccb;         /* Срібло з легким зеленим відтінком */
    --bronze: #2b5c46;         /* Бронза змінена на приглушений зелений */
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--deep-purple);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4 {
    font-family: 'Cinzel', serif;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   HEADER
   =========================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /* Змінено на темний зелений напівпрозорий */
    background: rgba(5, 29, 18, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    opacity: 0;
    /* Бордер змінено на зелений */
    border-bottom: 1px solid rgba(43, 204, 110, 0.2);
    animation: fadeInUp 1s ease-out 3s forwards;
}

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

.logo {
    height: 40px;
    /* Тінь логотипу зелена */
    filter: drop-shadow(0 0 10px rgba(43, 204, 110, 0.3));
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-email {
    color: var(--gold);
    font-size: 14px;
    transition: color 0.3s;
}

.contact-email:hover {
    color: var(--bright-gold);
}

.header-cta {
    padding: 10px 25px !important;
    font-size: 14px !important;
}

/* ===========================
   PROGRESS INDICATOR
   =========================== */
.progress-indicator {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    /* Фони та бордери змінено на зелені відтінки */
    background: rgba(43, 204, 110, 0.3);
    border: 2px solid var(--gold);
    cursor: pointer;
    transition: all 0.3s;
}

.progress-dot.active {
    background: var(--gold);
    box-shadow: 0 0 15px rgba(43, 204, 110, 0.8);
    transform: scale(1.3);
}

.progress-dot:hover {
    background: var(--gold);
    transform: scale(1.2);
}

/* ===========================
   SCROLL INDICATOR
   =========================== */
.scroll-indicator {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--gold);
    font-size: 14px;
    font-weight: 500;
    opacity: 1;
    transition: opacity 0.5s;
}

.scroll-indicator.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-left: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) rotate(-45deg); }
    40% { transform: translateY(-10px) rotate(-45deg); }
    60% { transform: translateY(-5px) rotate(-45deg); }
}

/* ===========================
   FULLSCREEN SECTIONS
   =========================== */
.fullscreen-section {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    /* Градієнт фону: від дуже темного до трохи світлішого зеленого */
    background: linear-gradient(180deg, var(--deep-purple) 0%, var(--royal-purple) 50%, var(--deep-purple) 100%);
}

/* ===========================
   PARTICLES
   =========================== */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

/* ===========================
   SCREEN 1: CROWN DESCENT
   =========================== */
#screen1 {
    /* Радіальний градієнт з ледь помітним зеленим центром */
    background: radial-gradient(ellipse at center, rgba(43, 204, 110, 0.15) 0%, var(--deep-purple) 70%);
}

.crown-container {
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: translateY(-200px) rotate(-10deg);
    animation: crownDescent 3s ease-out forwards;
    padding: 100px;
    padding-bottom: 350px;
    overflow: visible;
}

@keyframes crownDescent {
    to {
        opacity: 1;
        transform: translateY(0) rotate(0deg);
    }
}

.crown-image {
    width: 450px;
    height: auto;
    position: relative;
    z-index: 2;
    /* Тіні змінено на зелені (RGB: 43, 204, 110) */
    filter: drop-shadow(0 0 40px rgba(43, 204, 110, 0.6))
            drop-shadow(0 0 80px rgba(43, 204, 110, 0.3));
    animation: crownFloat 3s ease-in-out infinite;
}

@keyframes crownFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.crown-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    /* Світіння центру */
    background: radial-gradient(circle, rgba(43, 204, 110, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.light-rays {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    /* Промені світла (зелені) */
    background:
        linear-gradient(0deg, transparent 30%, rgba(43, 204, 110, 0.12) 50%, transparent 70%),
        linear-gradient(60deg, transparent 30%, rgba(43, 204, 110, 0.12) 50%, transparent 70%),
        linear-gradient(120deg, transparent 30%, rgba(43, 204, 110, 0.12) 50%, transparent 70%);
    animation: rotateRays 20s linear infinite;
    z-index: 0;
    mask-image: radial-gradient(circle, black 35%, transparent 65%);
    -webkit-mask-image: radial-gradient(circle, black 35%, transparent 65%);
}

@keyframes rotateRays {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.hero-content {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
    max-width: 800px;
    z-index: 20;
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    /* Градієнт тексту */
    background: linear-gradient(135deg, var(--bright-gold), var(--gold), var(--dark-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(43, 204, 110, 0.5);
    letter-spacing: 4px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2s forwards;
    position: relative;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

.hero-subtitle {
    font-size: 20px;
    color: var(--silver);
    margin: 20px 0 40px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 2.5s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold), var(--dark-gold));
    color: var(--deep-purple);
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    /* Тіні кнопки */
    box-shadow: 0 8px 25px rgba(43, 204, 110, 0.4);
    opacity: 0;
    animation: fadeInUp 1s ease-out 3s forwards;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(43, 204, 110, 0.6),
                0 0 30px rgba(43, 204, 110, 0.4);
}

/* ===========================
   SCREEN 2: LIVE WINS
   =========================== */
#screen2 {
    overflow: visible;
}

.corner-decoration {
    position: absolute;
    width: 200px;
    height: auto;
    opacity: 0.45;
    filter: drop-shadow(0 0 20px rgba(43, 204, 110, 0.3));
    pointer-events: none;
    z-index: 7;
    transition: all 0.3s;
}

.corner-mid-left {
    top: 120px;
    left: -50px;
    transform: rotate(-15deg);
    animation: floatTopLeft 6s ease-in-out infinite;
}

.corner-mid-right {
    top: 120px;
    right: -50px;
    transform: rotate(15deg);
    animation: floatTopRight 7s ease-in-out infinite;
}

.corner-top-left {
    top: 10px;
    left: -50px;
    transform: rotate(-15deg);
    animation: floatTopLeft 6s ease-in-out infinite;
}

.corner-top-right {
    top: 20px;
    right: -50px;
    transform: rotate(15deg);
    animation: floatTopRight 7s ease-in-out infinite;
}

.corner-bottom-left {
    bottom: 0px;
    left: -50px;
    transform: rotate(15deg);
    animation: floatBottomLeft 8s ease-in-out infinite;
}

.corner-bottom-right {
    bottom: 0px;
    right: -50px;
    transform: rotate(-15deg);
    animation: floatBottomRight 6.5s ease-in-out infinite;
}

@keyframes floatTopLeft {
    0%, 100% { transform: translate(0, 0) rotate(-15deg); }
    50% { transform: translate(20px, 20px) rotate(-10deg); }
}

@keyframes floatTopRight {
    0%, 100% { transform: translate(0, 0) rotate(15deg); }
    50% { transform: translate(-20px, 20px) rotate(10deg); }
}

@keyframes floatBottomLeft {
    0%, 100% { transform: translate(0, 0) rotate(15deg); }
    50% { transform: translate(20px, -20px) rotate(20deg); }
}

@keyframes floatBottomRight {
    0%, 100% { transform: translate(0, 0) rotate(-15deg); }
    50% { transform: translate(-20px, -20px) rotate(-20deg); }
}

.live-wins-container {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
    z-index: 10;
}

.live-wins-title {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--bright-gold), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    margin-bottom: 15px;
    animation: fadeInUp 1s ease-out;
}

.live-wins-subtitle {
    font-size: 18px;
    color: var(--silver);
    margin-bottom: 50px;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.wins-stream {
    /* Фон блоку перемог */
    background: rgba(5, 29, 18, 0.6);
    border: 2px solid rgba(43, 204, 110, 0.3);
    border-radius: 15px;
    padding: 30px 20px;
    margin-bottom: 50px;
    min-height: 200px;
    backdrop-filter: blur(10px);
    overflow: hidden;
    animation: fadeInUp 1s ease-out 0.4s backwards;
    text-align: left;
}

.win-entry {
    background: rgba(43, 204, 110, 0.1);
    border-left: 3px solid var(--gold);
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: slideInRight 0.5s ease-out;
    transition: all 0.3s;
}

.win-entry:hover {
    background: rgba(43, 204, 110, 0.2);
    transform: translateX(5px);
}

.win-player {
    font-weight: 600;
    color: var(--bright-gold);
    font-size: 16px;
}

.win-game {
    color: var(--silver);
    font-size: 14px;
}

.win-amount {
    font-size: 22px;
    font-weight: 700;
    color: var(--gold);
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.vip-tiers {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.tier-card {
    background: rgba(5, 29, 18, 0.6);
    border: 2px solid rgba(43, 204, 110, 0.3);
    border-radius: 15px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
    min-width: 180px;
}

.tier-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold);
    box-shadow: 0 15px 40px rgba(43, 204, 110, 0.3);
}

.tier-icon {
    width: 80px;
    height: auto;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 15px rgba(43, 204, 110, 0.5));
    transition: all 0.3s;
}

.tier-card:hover .tier-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px rgba(43, 204, 110, 0.7));
}

.tier-card h3 {
    font-size: 22px;
    color: var(--gold);
    margin-bottom: 10px;
}

.tier-card p {
    font-size: 16px;
    color: var(--silver);
}

/* ===========================
   SCREEN 3: KING'S THRONE
   =========================== */
#screen3 {
    /* Фіолетовий градієнт змінено на глибокий зелений */
    background: radial-gradient(ellipse at center, rgba(15, 61, 36, 0.3) 0%, var(--deep-purple) 70%);
}

.throne-pillars {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
}

.spotlight {
    position: absolute;
    top: 0;
    width: 0;
    height: 0;
    border-left: 200px solid transparent;
    border-right: 200px solid transparent;
    border-top: 300px solid rgba(43, 204, 110, 0);
    opacity: 0;
    transition: all 1s;
}

.spotlight-left {
    left: 20%;
}

.spotlight-right {
    right: 20%;
}

#screen3.active .spotlight {
    opacity: 1;
    border-top-color: rgba(43, 204, 110, 0.15);
}

.light-rays-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    /* Фонові промені */
    background:
        linear-gradient(0deg, transparent 35%, rgba(43, 204, 110, 0.08) 50%, transparent 65%),
        linear-gradient(45deg, transparent 35%, rgba(43, 204, 110, 0.08) 50%, transparent 65%),
        linear-gradient(90deg, transparent 35%, rgba(43, 204, 110, 0.08) 50%, transparent 65%),
        linear-gradient(135deg, transparent 35%, rgba(43, 204, 110, 0.08) 50%, transparent 65%);
    opacity: 0;
    animation: none;
    mask-image: radial-gradient(circle, black 40%, transparent 70%);
    -webkit-mask-image: radial-gradient(circle, black 40%, transparent 70%);
}

#screen3.active .light-rays-bg {
    opacity: 1;
    animation: rotateRaysSlow 30s linear infinite;
}

.king-container {
    position: relative;
    z-index: 10;
    opacity: 0;
    transform: scale(0.95);
    transition: all 1.5s ease-out;
    padding: 100px;
    overflow: visible;
}

#screen3.active .king-container {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.5s;
}

.throne-seat {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 400px;
    /* Червоний трон змінено на глибокий темний смарагд/чорний */
    background: linear-gradient(180deg, var(--burgundy) 0%, #000000 100%);
    border: 2px solid rgba(43, 204, 110, 0.3);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 1s 1s;
    z-index: 1;
}

#screen3.active .throne-seat {
    opacity: 1;
}

.king-image {
    width: 450px;
    height: auto;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 40px rgba(43, 204, 110, 0.4));
    animation: kingBreathe 4s ease-in-out infinite;
}

@keyframes kingBreathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

.king-container:hover .king-image {
    filter: drop-shadow(0 0 60px rgba(43, 204, 110, 0.7))
            drop-shadow(0 0 100px rgba(43, 204, 110, 0.3));
}

.king-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    /* Аура - відтінок зеленого */
    background: radial-gradient(circle, rgba(43, 204, 110, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: auraFlow 3s ease-in-out infinite;
    z-index: 0;
}

@keyframes auraFlow {
    0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1) rotate(0deg); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.1) rotate(180deg); }
}

.king-content {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    width: 90%;
    max-width: 700px;
    z-index: 20;
    opacity: 0;
    transition: opacity 1s 1.5s;
}

#screen3.active .king-content {
    opacity: 1;
}

.king-title {
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--bright-gold), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(43, 204, 110, 0.5);
}

.king-subtitle {
    font-size: 18px;
    color: var(--silver);
    margin-bottom: 30px;
    line-height: 1.8;
}

.cta-large {
    font-size: 20px;
    padding: 20px 60px;
}

/* ===========================
   TESTIMONIALS SECTION
   =========================== */
.testimonials-section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

@keyframes shimmer {
    to { left: 100%; }
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    /* Змінено градієнт заголовка */
    background: linear-gradient(135deg, var(--gold) 0%, #d4ffeb 50%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 60px;
    letter-spacing: 4px;
    position: relative;
    animation: titleGlow 3s ease-in-out infinite;
}

@keyframes titleGlow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(43, 204, 110, 0.4)); }
    50% { filter: drop-shadow(0 0 20px rgba(43, 204, 110, 0.6)); }
}

.section-title::after {
    content: '';
    display: block;
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold) 20%, var(--gold) 80%, transparent);
    margin: 20px auto 0;
    box-shadow: 0 0 15px rgba(43, 204, 110, 0.5);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
    animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

/* Responsive logic remains same */
@media (max-width: 799px) {
    .testimonials-grid .testimonial-card:nth-child(n+5) {
        display: none;
    }
}

@media (min-width: 800px) {
    .testimonials-grid .testimonial-card:nth-child(n+7) {
        display: none;
    }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonial-card {
    /* Фон картки: темний зелений */
    background: linear-gradient(135deg, rgba(5, 29, 18, 0.8) 0%, rgba(2, 10, 5, 0.9) 100%);
    border: 2px solid rgba(43, 204, 110, 0.3);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    backdrop-filter: blur(15px);
    overflow: hidden;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 80px;
    color: rgba(43, 204, 110, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(43, 204, 110, 0.15), transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold);
    box-shadow:
        0 15px 40px rgba(43, 204, 110, 0.25),
        0 0 50px rgba(43, 204, 110, 0.2);
}

.testimonial-card:hover::after {
    width: 400px;
    height: 400px;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-avatar {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--bright-gold) 50%, var(--dark-gold) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 24px;
    color: var(--deep-purple);
    flex-shrink: 0;
    box-shadow: 0 0 20px rgba(43, 204, 110, 0.5);
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 4px;
}

.testimonial-tier {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.star {
    color: var(--gold);
    font-size: 18px;
    filter: drop-shadow(0 0 3px rgba(43, 204, 110, 0.5));
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* ===========================
   FAQ SECTION
   =========================== */
.faq-section {
    padding: 80px 0;
    background: var(--deep-purple);
    border-top: 2px solid rgba(43, 204, 110, 0.2);
}

.faq-search-container {
    max-width: 900px;
    margin: 0 auto 40px;
    position: relative;
}

.faq-search-input {
    width: 100%;
    padding: 18px 55px 18px 25px;
    font-size: 16px;
    /* Поле вводу */
    background: rgba(5, 29, 18, 0.6);
    border: 2px solid rgba(43, 204, 110, 0.3);
    border-radius: 50px;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s;
    backdrop-filter: blur(10px);
}

.faq-search-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(43, 204, 110, 0.3);
}

.faq-search-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.faq-search-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    pointer-events: none;
    opacity: 0.7;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-no-results {
    text-align: center;
    padding: 40px 20px;
    color: var(--silver);
    font-size: 16px;
    background: rgba(5, 29, 18, 0.4);
    border: 2px solid rgba(43, 204, 110, 0.2);
    border-radius: 10px;
    margin-top: 20px;
}

.faq-item {
    background: rgba(5, 29, 18, 0.6);
    border: 2px solid rgba(43, 204, 110, 0.2);
    border-radius: 10px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--gold);
}

.faq-question {
    padding: 20px 25px;
    font-size: 18px;
    font-weight: 600;
    color: var(--gold);
    cursor: pointer;
    position: relative;
    user-select: none;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 28px;
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 25px;
    color: var(--silver);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 25px 20px;
}

/* ===========================
   FOOTER
   =========================== */
footer {
    background: var(--deep-purple);
    border-top: 2px solid rgba(43, 204, 110, 0.2);
    padding: 60px 0 30px;
}

.footer-text {
    color: var(--silver);
    font-size: 14px;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 40px;
}

.footer-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.footer-icon {
    height: 35px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-icon:hover {
    opacity: 1;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gold);
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--bright-gold);
    text-decoration: underline;
}

/* ===========================
   MODALS
   =========================== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--royal-purple);
    border: 3px solid var(--gold);
    border-radius: 15px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    animation: slideUp 0.3s;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    background: var(--gold);
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 12px 12px 0 0;
}

.modal-title {
    font-size: 28px;
    font-weight: 900;
    color: var(--deep-purple);
    margin: 0;
}

.close {
    background: none;
    border: none;
    font-size: 40px;
    color: var(--deep-purple);
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s;
}

.close:hover {
    transform: rotate(90deg);
}

.modal-text {
    padding: 30px;
    color: var(--silver);
    font-size: 15px;
    line-height: 1.8;
}

.modal-text strong {
    color: var(--gold);
}

/* ===========================
   RESPONSIVE
   =========================== */
/* Media queries kept intact, values inherited from root */

@media (max-width: 1024px) {
    .pedestals-container { gap: 40px; }
    .pedestal { width: 160px; height: 220px; }
    .pedestal-high { height: 280px; }
    .reward-image { width: 100px; }
    .king-image { width: 350px; }
    .throne-seat { width: 400px; height: 320px; bottom: 180px; }
}

@media (max-width: 768px) {
    .header-cta { padding: 8px 15px; font-size: 14px; }
    .contact-email { display: none; }
    .progress-indicator { right: 15px; }
    .hero-title { font-size: 48px; }
    .hero-subtitle { font-size: 16px; }
    .cta-button { padding: 15px 35px; font-size: 16px; }
    .corner-decoration { width: 120px; }
    .corner-top-left, .corner-bottom-left { left: -30px; }
    .corner-top-right, .corner-bottom-right { right: -30px; }
    .live-wins-title { font-size: 42px; letter-spacing: 2px; }
    .live-wins-subtitle { font-size: 16px; }
    .live-wins-container { padding: 40px 15px; }
    .wins-stream { padding: 20px 15px; }
    .win-entry { flex-direction: column; align-items: flex-start; gap: 10px; padding: 12px 15px; }
    .win-amount { font-size: 20px; }
    .vip-tiers { gap: 20px; }
    .tier-card { min-width: 150px; padding: 25px 20px; }
    .tier-icon { width: 60px; }
    .tier-card h3 { font-size: 20px; }
    .tier-card p { font-size: 15px; }
    .testimonials-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; }
    .testimonial-card { padding: 25px; }
    .testimonial-avatar { width: 55px; height: 55px; font-size: 20px; }
    .testimonial-name { font-size: 18px; }
    .testimonials-section { padding: 60px 0; }
    .pedestals-container { flex-direction: column; align-items: center; gap: 60px; }
    .pedestal { width: 200px; height: 250px; }
    .pedestal-high { height: 250px; }
    .king-title { font-size: 42px; }
    .king-subtitle { font-size: 16px; }
    .king-image { width: 300px; }
    .throne-seat { width: 350px; height: 280px; bottom: 160px; }
    .section-title { font-size: 32px; }
    .winners-ticker { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 36px; }
    .crown-image { width: 300px; }
    .king-title { font-size: 32px; }
    .king-image { width: 250px; }
    .throne-seat { width: 260px; height: 240px; bottom: 140px; }
    .cta-large { font-size: 16px; padding: 15px 40px; }
}

/* ===========================
   SCROLLBAR
   =========================== */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--deep-purple);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--gold), var(--dark-gold));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--bright-gold);
}