/* Neo Aurora Casino Theme VIP Edition */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 110px;
    position: relative;
    background: #020617; /* Base dark */
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 203, 0.1) 0%, transparent 50%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
    animation: backgroundPulse 10s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 30%;
    background: linear-gradient(to top, #020617, transparent);
    z-index: 1;
}

@keyframes backgroundPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.05); opacity: 1; }
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero-split {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4rem;
}

.hero-text-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: fadeUpIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeUpIn {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hero-text-content p {
    max-width: 700px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-top: 1.25rem;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 650px;
    animation: fadeLeftIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeLeftIn {
    0% { opacity: 0; transform: translateX(40px); }
    100% { opacity: 1; transform: translateX(0); }
}

.floating-glass-card {
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 2rem;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow:
        0 40px 100px -20px rgba(0, 0, 0, 0.9),
        inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.floating-glass-card:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-10px);
    box-shadow:
        0 50px 120px -20px rgba(212, 175, 55, 0.2),
        inset 0 0 0 1px rgba(212, 175, 55, 0.4);
}

.floating-glass-card::before {
    content: '';
    position: absolute;
    inset: -50%;
    background: conic-gradient(
        from 0deg,
        transparent 0deg,
        rgba(212, 175, 55, 0.15) 60deg,
        transparent 120deg
    );
    animation: cardSweep 6s linear infinite;
}

@keyframes cardSweep {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.floating-glass-card > * {
    position: relative;
    z-index: 1;
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-color) 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: goldShimmer 3s linear infinite;
}

@keyframes goldShimmer {
    to { background-position: 200% center; }
}

.jackpot-amount {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: clamp(3rem, 5vw, 4rem);
    letter-spacing: 0.05em;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    margin-top: 10px;
}

.badge {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1), transparent);
    border-radius: 999px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.badge i {
    color: var(--primary-color);
    animation: starPulse 2s infinite;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.2); filter: brightness(1.5); text-shadow: 0 0 10px var(--primary-color); }
}

.hero h1 {
    font-size: clamp(2.8rem, 5vw, 4rem);
    line-height: 1.1;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #020617;
    padding: 0.9rem 2.4rem;
    font-weight: 600;
    font-family: 'Poppins', system-ui, sans-serif;
    text-transform: uppercase;
    font-size: 0.78rem;
    box-shadow: 0 18px 55px rgba(15, 23, 42, 0.95);
    border-radius: 999px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
    box-shadow: 0 20px 70px rgba(15, 23, 42, 0.95);
}

.btn-secondary {
    background: rgba(15, 23, 42, 0.85);
    color: var(--primary-color);
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.6);
    padding: 0.9rem 2.4rem;
    font-family: 'Poppins', system-ui, sans-serif;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.78rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    background: rgba(15, 23, 42, 0.95);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-top: 2.5rem;
    border-top: 1px dashed rgba(148, 163, 184, 0.35);
    padding-top: 1.6rem;
}

.stat-item h4 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 0.15rem;
    font-family: 'Space Grotesk', system-ui, sans-serif;
}

.stat-item p {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}

/* Sections shared */
.content-section {
    padding: 5.5rem 0;
    position: relative;
}

.section-prefix {
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.82rem;
    text-align: center;
    margin-bottom: 0.75rem;
    opacity: 0.85;
}

/* VIP Section - Card Grid */
.vip-tiers-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
}

.vip-tier-horizontal {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: space-between;
    background:
        radial-gradient(circle at 0 0, rgba(0, 201, 255, 0.16), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(0, 245, 160, 0.14), transparent 55%),
        var(--bg-card);
    border: 1px solid rgba(148, 163, 184, 0.45);
    border-radius: 1.6rem;
    padding: 1.9rem 1.9rem 1.6rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.vip-tier-horizontal::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 0 0, rgba(255, 255, 255, 0.08), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease-out;
}

.vip-tier-horizontal:hover {
    border-color: var(--primary-color);
    transform: translateY(-6px);
    box-shadow: 0 26px 70px rgba(15, 23, 42, 0.95);
}

.vip-tier-horizontal:hover::before {
    opacity: 1;
}

.vip-tier-icon {
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.vip-tier-info {
    flex: 1;
}

.vip-tier-info h3 {
    font-size: 1.35rem;
    color: #e5e7eb;
    margin-bottom: 0.35rem;
}

.vip-tier-info p {
    color: var(--secondary-color);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.vip-perks {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.vip-perks li {
    color: var(--text-muted);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vip-perks li i {
    color: var(--primary-color);
}

.vip-action {
    margin-top: 1.6rem;
    text-align: left;
}

/* Game Grid */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 240px;
    gap: 1.4rem;
}
.game-card-angular {
    background: #020617;
    position: relative;
    overflow: hidden;
    border-radius: 1.2rem;
    border: 1px solid rgba(148, 163, 184, 0.45);
}
.game-card-angular:hover {
    border-color: var(--primary-color);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.95);
}
.game-card-angular:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.game-card-angular:nth-child(4) { grid-column: span 2; }
.game-card-angular:nth-child(7) { grid-row: span 2; }

.game-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: 0.7s;
}

.game-card-angular:hover .game-card-img {
    opacity: 1;
    transform: scale(1.06);
}
.game-card-content {
    position: absolute;
    inset: auto 0 0 0;
    padding: 1.6rem 1.8rem 1.8rem;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.98), transparent);
    transform: translateY(18px);
    transition: 0.35s ease-out;
}
.game-card-angular:hover .game-card-content {
    transform: translateY(0);
}

.game-card-title {
    color: #e5e7eb;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 1.2rem;
}

.game-card-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.35rem;
    opacity: 0;
    transition: 0.3s;
}

.game-card-angular:hover .game-card-desc {
    opacity: 1;
}
.game-card-play { margin-top: 15px; }

/* How to Play - Step Grid */
.timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.timeline-item {
    position: relative;
    background: radial-gradient(circle at 0 0, rgba(0, 245, 160, 0.08), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(0, 201, 255, 0.08), transparent 55%),
        var(--bg-card);
    border-radius: 1.4rem;
    border: 1px solid rgba(148, 163, 184, 0.45);
    padding: 1.7rem 1.6rem 1.5rem;
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.85);
    overflow: hidden;
}

.timeline-content {
    margin-top: 1.1rem;
}

.timeline-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #e5e7eb;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.timeline-num {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-weight: 600;
    font-size: 1rem;
    color: #e5e7eb;
    background: radial-gradient(circle at 30% 0, rgba(0, 245, 160, 0.7), rgba(15, 23, 42, 1));
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.95);
}

/* Live Wins Feed */
.live-wins-bar {
    background: radial-gradient(circle at 0 50%, rgba(0, 201, 255, 0.12), transparent 55%);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-top: 2rem;
}
.live-wins-label {
    background: rgba(15, 23, 42, 0.96);
    color: var(--primary-color);
    padding: 10px 20px;
    font-family: 'Poppins', system-ui, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    position: absolute;
    left: 0;
    z-index: 10;
}
.wins-track-container {
    padding-left: 200px;
    width: 100%;
    overflow: hidden;
}
.wins-track {
    display: flex;
    gap: 3rem;
    animation: marquee 25s linear infinite;
    white-space: nowrap;
}
.win-ticket {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-main);
    background: rgba(0,0,0,0.5);
    padding: 5px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
}
.win-user { color: var(--text-muted); }
.win-amount { color: var(--primary-color); font-weight: bold; font-family: 'Inter', sans-serif; font-size: 1.1rem;}
 .win-amount { font-family: 'Space Grotesk', system-ui, sans-serif; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* Jackpot Stats Banner */
.jackpot-stats-banner {
    background:
        radial-gradient(circle at 10% 50%, rgba(212, 175, 55, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 90% 50%, rgba(255, 107, 203, 0.08) 0%, transparent 50%),
        rgba(2, 6, 23, 0.95);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding: 2.5rem 0;
}

.jackpot-stats-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.jackpot-stat-item {
    flex: 1;
    min-width: 160px;
    text-align: center;
}

.jackpot-stat-item.jackpot-main {
    flex: 1.5;
}

.jackpot-stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.jackpot-stat-label i {
    color: var(--primary-color);
}

.jackpot-stat-value {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-color) 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: goldShimmer 3s linear infinite;
    line-height: 1.1;
}

.jackpot-stat-sub {
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-top: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

.jackpot-stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.35), transparent);
    flex-shrink: 0;
}

/* Hot Bonuses Section */
.hot-bonuses-section {
    background:
        radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.07) 0%, transparent 60%),
        rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.bonus-cards-row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.bonus-card {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
    background: radial-gradient(circle at 50% 0%, rgba(212, 175, 55, 0.08), transparent 60%);
    pointer-events: none;
}

.bonus-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.08);
}

.bonus-card:hover::before { opacity: 1; }

/* Featured welcome card */
.bonus-card--welcome {
    border-color: rgba(212, 175, 55, 0.35);
    background: radial-gradient(circle at 0 0, rgba(212, 175, 55, 0.1), transparent 60%),
                rgba(15, 23, 42, 0.7);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), inset 0 0 0 1px rgba(212, 175, 55, 0.1);
}

.bonus-card-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.bonus-card-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--secondary-color);
    font-weight: 600;
}

.bonus-card-amount {
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, var(--primary-color) 60%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.bonus-card-desc {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.bonus-card-perks {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

.bonus-card-perks li {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bonus-card-perks li i {
    color: var(--primary-color);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.bonus-btn {
    margin-top: auto;
    text-align: center;
    justify-content: center;
    font-size: 0.8rem !important;
    padding: 0.8rem 1.2rem !important;
    position: relative;
    z-index: 2;
}



/* News Section - Different grid */
.news-split-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
}
.news-featured {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    position: relative;
}
.news-featured img { width: 100%; height: 350px; object-fit: cover; }
.news-featured-content { padding: 2.5rem; }
.news-featured-content h3 { font-size: 1.8rem; margin-bottom: 1rem; }
.news-featured-content p { color: var(--text-muted); margin-bottom: 1.5rem; }

.news-list { display: flex; flex-direction: column; gap: 1.5rem; justify-content: space-between; }
.news-list-item {
    display: flex; gap: 1.5rem; align-items: center; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 1.5rem;
}
.news-list-item img { width: 140px; height: 100px; object-fit: cover; border: 1px solid var(--border-color); }
.news-content h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.news-content p { color: var(--text-muted); font-size: 0.85rem; }

/* Why Choose & Features */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    text-align: left;
    margin-top: 4rem;
}
.why-card {
    background: var(--bg-card);
    padding: 3rem;
    border: 1px solid var(--border-color);
}

/* Testimonials + Trust */
.trust-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: radial-gradient(circle at top left, rgba(0, 245, 160, 0.05), transparent 60%),
                rgba(15, 23, 42, 0.4);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    margin: 3rem 0;
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.85rem;
    padding: 1.5rem 1rem;
    border-radius: 1.25rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.15);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.trust-item i {
    color: var(--primary-color);
    font-size: 1.8rem;
    text-shadow: 0 0 15px rgba(0, 245, 160, 0.3);
}

.trust-item strong {
    display: block;
    color: #fff;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

.trust-item span {
    display: block;
    color: var(--text-muted);
    font-size: 0.82rem;
    line-height: 1.5;
    opacity: 0.8;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.testimonial-card {
    background: radial-gradient(circle at top left, rgba(255, 107, 203, 0.05), transparent 50%),
                rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 1.8rem;
    padding: 2.2rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 245, 160, 0.4);
    box-shadow: 0 40px 100px rgba(0, 245, 160, 0.1);
}

.testimonial-stars {
    color: var(--primary-color);
    display: flex;
    gap: 0.35rem;
    margin-bottom: 1.25rem;
    font-size: 0.9rem;
}

.testimonial-card p {
    color: #d1d5db;
    font-size: 1.05rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.testimonial-author .avatar {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--primary-color);
    font-size: 1.2rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.testimonial-author strong {
    display: block;
    color: #fff;
    font-family: 'Space Grotesk', system-ui, sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
}

.testimonial-author span {
    display: block;
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.15rem;
}

.content-cta-row {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

/* Strategy Section */
.strategy-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.strategy-card {
    background: radial-gradient(circle at 0 0, rgba(0, 245, 160, 0.06), transparent 55%),
        radial-gradient(circle at 100% 100%, rgba(0, 201, 255, 0.06), transparent 55%),
        var(--bg-card);
    border-radius: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
    padding: 1.9rem 1.9rem 1.7rem;
    box-shadow: 0 22px 65px rgba(15, 23, 42, 0.85);
}

.strategy-card h3 {
    font-size: 1.25rem;
    margin: 0.6rem 0 0.6rem;
    color: #e5e7eb;
}

.strategy-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 0.7rem;
}

.strategy-card ul {
    list-style: none;
    padding-left: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    font-size: 0.9rem;
    color: var(--text-main);
}

.strategy-card ul li::before {
    content: "•";
    color: var(--primary-color);
    margin-right: 0.4rem;
}

.strategy-tag {
    display: inline-block;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.24em;
    color: var(--secondary-color);
}

.countdown-flex {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
    font-family: 'Inter', sans-serif;
}
.countdown-item {
    border: 1px solid var(--primary-color);
    padding: 15px 25px;
    background: #000;
}
.countdown-num {
    font-size: 2.5rem;
    color: var(--primary-color);
    display: block;
}
.countdown-label {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.features-grid-modern {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.feature-box {
    background: rgba(10,5,15,0.6);
    border: 1px solid var(--border-color);
    padding: 3rem 2rem;
    text-align: center;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}
.feature-box::before {
    content:''; position: absolute; top:0; left:0; width: 2px; height: 100%; background: var(--primary-color);
    transition: 0.4s; transform: scaleY(0); transform-origin: top;
}
.feature-box:hover::before { transform: scaleY(1); }
.feature-box:hover { background: rgba(30,20,40,0.8); }
.feature-icon { font-size: 3rem; color: var(--primary-color); margin-bottom: 1.5rem; }
.feature-box h3 { font-size: 1.3rem; margin-bottom: 1rem; color: #fff;}
.feature-box p { color: var(--text-muted); font-size: 0.9rem;}

/* Footer Banner */
.footer-register-banner {
    background: linear-gradient(90deg, #110b20, #221430);
    border-top: 1px solid var(--primary-color);
    border-bottom: 1px solid var(--primary-color);
    padding: 40px 0;
    margin-top: 5rem;
}
.footer-register-banner .container {
    display: flex; justify-content: space-between; align-items: center;
}
.footer-register-banner h3 { font-size: 1.8rem; margin: 0; color: var(--primary-color);}

/* Providers Track */
.providers-track-container { width: 100%; overflow: hidden; white-space: nowrap; margin-bottom: -10px; }
.providers-track { display: flex; gap: 4rem; animation: marquee 30s linear infinite; align-items: center; }
.provider-logo { color: var(--text-muted); font-size: 1.5rem; font-weight: bold; text-transform: uppercase; font-family: 'Inter', sans-serif; display: flex; align-items: center; gap: 10px; opacity: 0.5; transition: 0.4s; }
.provider-logo i { color: var(--primary-color); }
.provider-logo:hover { opacity: 1; color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.5); }

/* App Section */
.app-split-layout { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 4rem; align-items: center; }
.phone-mockup { position: relative; text-align: center; }
.floating-badge { position: absolute; background: var(--bg-dark); color: var(--primary-color); padding: 10px 20px; border: 1px solid var(--primary-color); box-shadow: 0 0 15px rgba(212,175,55,0.2); font-weight: bold; border-radius: 5px; z-index: 5; }
.floating-badge.badge-1 { top: 20%; left: 0; animation: bounce 3s ease-in-out infinite; }
.floating-badge.badge-2 { bottom: 20%; right: 0; animation: bounce 3s ease-in-out infinite 1.5s; }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

/* FAQ Section */
.faq-grid { display: flex; flex-direction: column; gap: 1rem; }
.faq-item { background: rgba(0,0,0,0.5); border: 1px solid var(--border-color); }
.faq-question { padding: 1.5rem; color: #fff; font-size: 1.1rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: bold; transition: 0.3s; }
.faq-question:hover { color: var(--primary-color); background: rgba(212,175,55,0.05); }
.faq-answer { padding: 0 1.5rem; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; color: var(--text-muted); }
.faq-item.active .faq-question { color: var(--primary-color); border-bottom: 1px solid rgba(255,255,255,0.05); }
.faq-item.active .faq-answer { padding: 1.5rem; max-height: 500px; }
.faq-item.active .faq-question i { transform: rotate(45deg); color: var(--accent-color); transition: 0.3s; }

/* Mobile adaptations */
@media(max-width: 992px) {
    .hero { padding-top: 120px; }
    .hero-split { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .hero-text-content { text-align: center; }
    .hero-text-content p { margin: 0 auto; }
    .hero-actions, .hero-stats { justify-content: center; }
    
    .floating-glass-card { padding: 2rem; margin: 0 auto; max-width: 100%; }
    .floating-glass-card h2.jackpot-amount { font-size: 2.5rem; }

    .masonry-grid { grid-template-columns: 1fr 1fr; }
    .game-card-angular:nth-child(1), .game-card-angular:nth-child(4), .game-card-angular:nth-child(7) { grid-column: span 1; grid-row: span 1; }
    
    .timeline { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    
    .vip-tiers-row { grid-template-columns: 1fr; }
    .vip-tier-horizontal { text-align: center; }
    .vip-action { text-align: center; }
    
    .news-split-grid { grid-template-columns: 1fr; gap: 2rem; }
    .features-grid-modern { grid-template-columns: 1fr; gap: 1.5rem; }
    .trust-strip { grid-template-columns: 1fr 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .strategy-grid { grid-template-columns: 1fr 1fr; }
    
    .footer-register-banner .container { flex-direction: column; text-align: center; gap: 2rem; }
    
    .live-wins-label { position: relative; display: block; text-align: center; z-index: 10; padding: 10px; width: 100%; border-bottom: 2px solid var(--border-color); }
    .wins-track-container { padding-left: 0; padding-top: 10px; width: 100%; }
    .live-wins-bar { flex-direction: column; padding: 0; }
    .wins-track { gap: 1.5rem; animation: marquee 15s linear infinite; }

    .jackpot-stats-grid { justify-content: center; gap: 1.5rem; }
    .jackpot-stat-divider { display: none; }
    .jackpot-stat-item { min-width: 140px; flex: 1 1 140px; }

    .bonus-cards-row { grid-template-columns: 1fr 1fr; }
}

@media(max-width: 768px) {
    .content-section { padding: 4rem 0; }
    .why-choose-grid { grid-template-columns: 1fr; gap: 1.5rem; margin-top: 2rem; }
    .why-card { padding: 2rem; }
    
    .countdown-flex { flex-wrap: wrap; gap: 1rem; }
    .countdown-item { flex: 1; min-width: 40%; }
    
    .hero-stats { flex-wrap: wrap; justify-content: center; gap: 1.5rem; margin-top: 2rem; padding-top: 1.5rem; }
    .stat-item h4 { font-size: 1.5rem; }
    .hero h1 { font-size: 2.8rem; }
    
    .news-featured img { height: 250px; }
    .news-list-item { flex-direction: column; text-align: center; }
    .news-list-item img { width: 100%; height: 180px; }
    
    .app-split-layout { grid-template-columns: 1fr; text-align: center; }
    .app-text h2, .app-text p { text-align: center !important; }
    .app-buttons { justify-content: center; flex-wrap: wrap; }
    .phone-mockup i { font-size: 10rem; }
    .strategy-grid { grid-template-columns: 1fr; }
}

@media(max-width: 576px) {
    .floating-glass-card h2.jackpot-amount { font-size: 2rem; white-space: normal; }
    .hero h1 { font-size: 2.2rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    
    .trust-strip { grid-template-columns: 1fr; gap: 1rem; padding: 1rem; }
    .trust-item { padding: 1.25rem; }
    .testimonial-card { padding: 1.5rem; }
    .testimonial-card p { font-size: 0.95rem; margin-bottom: 1.5rem; }

    .masonry-grid { grid-template-columns: 1fr; }
    .vip-action { width: 100%; }
    .vip-action .btn-primary, .vip-action .btn-secondary { width: 100%; display: block; }
    
    .bonus-cards-row { grid-template-columns: 1fr; }
    .jackpot-stat-item { flex: 1 1 100%; }

    .countdown-item span.countdown-num { font-size: 1.8rem !important; }
    .timeline { grid-template-columns: 1fr; }
    .footer-register-banner h3 { font-size: 1.4rem; }
    .section-title { font-size: 1.8rem !important; }
}