/* Luxury Casino Theme - Index Styles */

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

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

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

/* Global overflow prevention */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

img, video, canvas, svg {
    max-width: 100%;
    height: auto;
}

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding-top: 90px;
    position: relative;
    background: #000;
    overflow: hidden;
    color: #fff;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1596838132731-3301c3fd4317?ixlib=rb-1.2.1&auto=format&fit=crop&w=1920&q=80'); /* Luxury Casino Background */
    background-size: cover;
    background-position: center;
    opacity: 0.4;
    z-index: 0;
    filter: blur(2px) brightness(0.6);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

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

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

.hero-text-content {
    animation: fadeInScale 1.2s ease-out;
    max-width: 900px;
}

@keyframes fadeInScale {
    0% { opacity: 0; transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

.hero-text-content h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    text-shadow: 0 5px 25px rgba(212, 175, 55, 0.4);
    letter-spacing: -1px;
}

.hero-text-content p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 2.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #b8860b);
    color: #000;
    padding: 1rem 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
    background: #fff;
    color: var(--primary-color);
}

.btn-secondary {
    background: rgba(255,255,255,0.05);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
    padding: 1rem 2.8rem;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 5rem;
    padding: 2rem 4rem;
    background: rgba(0,0,0,0.6);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.stat-item h4 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
    font-family: 'Playfair Display', serif;
}

.stat-item p {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #a0a0a0;
    letter-spacing: 2px;
}

/* Jackpot Banner */
.jackpot-stats-banner {
    background: linear-gradient(to right, #0a0a0a, #1a0000, #0a0a0a);
    padding: 5rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.jackpot-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.jackpot-stat-item {
    text-align: center;
    position: relative;
}

.jackpot-stat-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.jackpot-stat-value {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    font-family: 'Playfair Display', serif;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.jackpot-stat-sub {
    font-size: 0.9rem;
    color: #888;
    margin-top: 10px;
}

/* VIP Section */
.vip-tiers-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
}

.vip-tier-horizontal {
    background: #0f0f0f;
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 3rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    transition: var(--transition);
    border-radius: 10px;
}

.vip-tier-horizontal:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    background: #151515;
}

.vip-tier-icon {
    width: 100px;
    height: 100px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    flex-shrink: 0;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.vip-tier-info h3 {
    font-size: 1.8rem;
    color: #fff;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.vip-tier-info p {
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.vip-perks li {
    font-size: 1rem;
    color: #a0a0a0;
    margin-bottom: 8px;
}

.vip-action {
    margin-left: auto;
}

/* 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: #050505;
    padding: 7rem 0;
}

.bonus-cards-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.bonus-card {
    background: #0f0f0f;
    padding: 0;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
    border-radius: 15px;
    overflow: hidden;
}

.bonus-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.15);
    border-color: var(--primary-color);
}

.bonus-card-icon {
    background: linear-gradient(135deg, var(--primary-color), #b8860b);
    color: #000;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin: 2rem auto 0;
    border-radius: 50%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.bonus-card-body {
    padding: 2.5rem;
    text-align: center;
}

.bonus-card-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.bonus-card-amount {
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    font-family: 'Playfair Display', serif;
    line-height: 1;
    margin-bottom: 20px;
}

.bonus-card-desc {
    font-size: 1.1rem;
    color: #a0a0a0;
    margin-bottom: 25px;
}

.bonus-card-perks li {
    font-size: 0.95rem;
    margin-bottom: 12px;
    color: #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

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

.bonus-btn {
    width: 100%;
    border-radius: 0;
    margin-top: auto;
    background: var(--primary-color);
}



/* 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(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.why-card {
    background: #0f0f0f;
    padding: 4rem;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    border-radius: 10px;
}

.why-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.why-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.why-card h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
}

.why-card p {
    color: #a0a0a0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Popular Games Section */
.popular-games-section {
    background: rgba(0, 0, 0, 0.5);
    padding: 5rem 0;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.game-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: var(--transition);
}

.game-card-link:hover {
    transform: translateY(-8px);
}

.game-card {
    background: #0f0f0f;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition);
    height: 100%;
}

.game-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.game-card-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.game-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.game-card:hover .game-card-image img {
    transform: scale(1.1);
}

.game-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-card-overlay {
    opacity: 1;
}

.game-card-overlay i {
    font-size: 3rem;
    color: var(--primary-color);
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.6));
}

.game-card-info {
    padding: 1.2rem;
}

.game-card-info h3 {
    font-size: 0.85rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.game-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.7rem;
}

.game-rating {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--primary-color);
}

.game-rating i {
    font-size: 0.9rem;
}

.game-players {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #888;
}

.game-players i {
    font-size: 0.85rem;
}

.game-tags {
    display: flex;
    gap: 0.5rem;
}

.tag {
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tag.hot {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: #fff;
}

.tag.new {
    background: linear-gradient(135deg, var(--primary-color), #b8860b);
    color: #000;
}

.games-cta {
    text-align: center;
    margin-top: 2rem;
}

.games-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.games-cta .btn-primary i {
    font-size: 1.2rem;
}

/* Latest Articles Section */
.articles-section {
    background: rgba(10, 10, 10, 0.8);
    padding: 5rem 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    margin-bottom: 3rem;
}

.article-card {
    background: #0f0f0f;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
    height: 100%;
}

.article-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    transform: translateY(-5px);
}

.article-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

.article-image {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.08);
}

.article-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, var(--primary-color), #b8860b);
    color: #000;
    padding: 0.35rem 0.7rem;
    border-radius: 6px;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.article-content {
    padding: 1.3rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
    font-size: 0.7rem;
    color: #888;
}

.article-date,
.article-read-time {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.article-date i,
.article-read-time i {
    color: var(--primary-color);
}

.article-content h3 {
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 0.6rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-content p {
    font-size: 0.8rem;
    color: #a0a0a0;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.article-card:hover .read-more {
    gap: 0.8rem;
}

.read-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.article-card:hover .read-more i {
    transform: translateX(5px);
}

.articles-cta {
    text-align: center;
    margin-top: 2rem;
}

.articles-cta .btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.articles-cta .btn-secondary i {
    font-size: 1.1rem;
}

.feature-box {
    background: rgba(255,255,255,0.03);
    padding: 3rem;
    border: 1px solid rgba(255,255,255,0.05);
    text-align: center;
    border-radius: 5px;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-box h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.feature-box p {
    color: #888;
}

/* Trust Strip */
.trust-strip {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.trust-item {
    background: #fff;
    padding: 1.5rem;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.trust-item div strong {
    display: block;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.trust-item div span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.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.5rem; 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) {
    /* Prevent horizontal overflow */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .container {
        width: 95%;
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    
    .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; flex-direction: column; }
    .vip-action { text-align: center; margin-left: 0; margin-top: 1.5rem; }
    
    .news-split-grid { grid-template-columns: 1fr; gap: 2rem; }
    .features-grid-modern { grid-template-columns: 1fr; gap: 1.5rem; }
    .why-choose-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
    .trust-strip { grid-template-columns: 1fr 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .strategy-grid { grid-template-columns: 1fr 1fr; }
    
    /* Games grid - 2 columns on tablet */
    .games-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .game-card-image { height: 180px; }
    
    /* Articles grid - 2 columns on tablet */
    .articles-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
    .article-image { height: 200px; }
    
    .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; }
    
    /* Fix sections with inline styles */
    section.content-section {
        padding-left: 0;
        padding-right: 0;
    }
}

@media(max-width: 768px) {
    .content-section { padding: 4rem 0; }
    
    /* Animation classes for mobile */
    .animate-on-scroll {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    }
    
    .animate-on-scroll.visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Games swiper for mobile */
    .games-grid {
        display: block;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .games-grid .swiper-slide {
        height: auto;
    }
    
    .games-grid .game-card-image {
        height: 200px;
    }
    
    .games-cta .btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    /* Articles swiper for mobile */
    .articles-grid {
        display: block;
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .articles-grid .swiper-slide {
        height: auto;
    }
    
    .articles-grid .article-image {
        height: 200px;
    }
    
    .articles-cta .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    /* Single column for why-choose on mobile */
    .why-choose-grid { grid-template-columns: 1fr; gap: 0; margin-top: 2rem; }
    .why-card { padding: 2rem 1.5rem; }
    
    /* Mobile Swiper Styles */
    .mobile-only-swiper {
        display: block;
        width: 100%;
        padding-bottom: 50px;
    }
    
    .mobile-only-swiper .swiper-slide {
        height: auto;
    }
    
    .mobile-only-swiper .why-card {
        padding: 2rem 1.5rem;
        margin: 0;
        animation: fadeInUp 0.6s ease-out;
    }
    
    .swiper-pagination {
        bottom: 0 !important;
    }
    
    .swiper-pagination-bullet {
        background: var(--primary-color) !important;
        opacity: 0.4 !important;
        width: 10px;
        height: 10px;
    }
    
    .swiper-pagination-bullet-active {
        opacity: 1 !important;
        width: 24px;
        border-radius: 5px;
    }
    
    /* Bonus Mobile Swiper */
    .bonus-mobile-swiper {
        display: block;
        width: 100%;
        padding-bottom: 50px;
    }
    
    .bonus-mobile-swiper .swiper-slide {
        height: auto;
    }
    
    .bonus-mobile-swiper .bonus-card {
        animation: fadeInUp 0.6s ease-out;
    }
    
    .bonus-pagination .swiper-pagination-bullet {
        background: var(--primary-color) !important;
        opacity: 0.4 !important;
    }
    
    .bonus-pagination .swiper-pagination-bullet-active {
        opacity: 1 !important;
    }
    
    /* Games Mobile Swiper */
    .games-mobile-swiper {
        padding-bottom: 50px !important;
    }
    
    .games-pagination .swiper-pagination-bullet {
        background: var(--primary-color) !important;
        opacity: 0.4 !important;
    }
    
    .games-pagination .swiper-pagination-bullet-active {
        opacity: 1 !important;
    }
    
    /* Articles Mobile Swiper */
    .articles-mobile-swiper {
        padding-bottom: 50px !important;
    }
    
    .articles-pagination .swiper-pagination-bullet {
        background: var(--primary-color) !important;
        opacity: 0.4 !important;
    }
    
    .articles-pagination .swiper-pagination-bullet-active {
        opacity: 1 !important;
    }
    
    /* Reduce padding on cards */
    .why-card {
        padding: 1.5rem;
    }
    
    /* Fix inline styled containers */
    .container.text-center {
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Ensure all grid items fit */
    .container > * {
        max-width: 100%;
    }
    
    .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; }
    
    /* Prevent any overflow from child elements */
    .container * {
        max-width: 100%;
    }
}

@media(max-width: 576px) {
    /* Prevent all horizontal overflow */
    html, body {
        overflow-x: hidden !important;
    }
    
    .container {
        width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .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: 0; }
    .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.2rem; }
    .section-title { font-size: 1.8rem !important; }
    
    /* Reduce card padding on small screens */
    .why-card {
        padding: 1.25rem;
    }
    
    /* Fix any elements with fixed widths */
    [style*="width"] {
        max-width: 100% !important;
    }
    
    /* Ensure hero stats don't overflow */
    .hero-stats {
        padding: 1.5rem 1rem;
        gap: 1rem;
    }
    
    .stat-item h4 {
        font-size: 1.3rem;
    }
    
    .stat-item p {
        font-size: 0.7rem;
    }
}