/* ========================================
   Luxury Casino Design - Gold & Red Theme
   ======================================== */

:root {
    --color-primary: #FFD700;
    --color-secondary: #DC2626;
    --color-accent: #FFA500;
    --color-dark: #0A0A0A;
    --color-dark-light: #1A1A1A;
    --color-text: #E5E5E5;
    --color-success: #10B981;

    --gradient-primary: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #DC2626 100%);
    --gradient-dark: linear-gradient(180deg, #0A0A0A 0%, #1A1A1A 100%);

    --shadow-gold: 0 0 30px rgba(255, 215, 0, 0.3);
    --shadow-red: 0 0 30px rgba(220, 38, 38, 0.3);
    --shadow-large: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ========================================
   Base
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--color-dark);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(220, 38, 38, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ========================================
   Animated Background
   ======================================== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0;
    animation: floatUp linear infinite;
}

@keyframes floatUp {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.2;
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(1);
    }
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.06;
}

.glow-1 {
    width: 600px;
    height: 600px;
    background: var(--color-primary);
    top: -200px;
    left: -200px;
    animation: glowPulse 8s ease-in-out infinite;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: var(--color-secondary);
    bottom: -150px;
    right: -150px;
    animation: glowPulse 10s ease-in-out infinite 2s;
}

.glow-3 {
    width: 400px;
    height: 400px;
    background: var(--color-accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: glowPulse 12s ease-in-out infinite 4s;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.04; transform: scale(1); }
    50% { opacity: 0.08; transform: scale(1.2); }
}

/* ========================================
   Header
   ======================================== */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(255, 215, 0, 0.2);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(10, 10, 10, 0.98);
    border-bottom-color: rgba(255, 215, 0, 0.4);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    box-shadow: var(--shadow-gold);
    object-fit: cover;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    font-size: 24px;
}

.logo-name {
    font-family: 'Unbounded', sans-serif;
    font-size: 22px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.header-buttons {
    display: flex;
    gap: 12px;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #000;
    box-shadow: var(--shadow-gold);
    font-weight: 900;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: var(--color-primary);
    color: #000;
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 17px;
}

.btn-full {
    width: 100%;
    text-align: center;
}

.btn-icon {
    font-size: 18px;
}

/* ========================================
   Mobile Menu
   ======================================== */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 28px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    z-index: 999;
    padding: 100px 20px 40px;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
}

.mobile-nav-link {
    display: block;
    color: var(--color-text);
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    padding: 16px 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.mobile-nav-link:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    background: rgba(255, 215, 0, 0.05);
}

body.menu-open {
    overflow: hidden;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    padding: 100px 0 80px;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '♠ ♥ ♦ ♣';
    position: absolute;
    top: 50%;
    left: -10%;
    font-size: 200px;
    color: rgba(255, 215, 0, 0.03);
    transform: translateY(-50%) rotate(-20deg);
    letter-spacing: 50px;
    z-index: 0;
}

.hero::after {
    content: '♠ ♥ ♦ ♣';
    position: absolute;
    top: 50%;
    right: -10%;
    font-size: 200px;
    color: rgba(220, 38, 38, 0.03);
    transform: translateY(-50%) rotate(20deg);
    letter-spacing: 50px;
    z-index: 0;
}

.hero > .container {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--color-primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
}

.hero-stats .stat-item {
    text-align: center;
    background: none;
    border: none;
    padding: 0;
}

.hero-stats .stat-item:hover {
    transform: none;
    box-shadow: none;
}

.hero-stats .stat-item::before {
    display: none;
}

.stat-value {
    font-family: 'Unbounded', sans-serif;
    font-size: 32px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 6px;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

/* ========================================
   Slot Machine
   ======================================== */
.hero-visual {
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.slot-machine {
    display: flex;
    justify-content: center;
}

.slot-frame {
    background: linear-gradient(145deg, #1A1A1A 0%, #0A0A0A 100%);
    border: 3px solid var(--color-primary);
    border-radius: 20px;
    padding: 30px;
    box-shadow:
        var(--shadow-gold),
        inset 0 0 50px rgba(0, 0, 0, 0.8);
    position: relative;
}

.slot-frame::before,
.slot-frame::after {
    content: '★';
    position: absolute;
    font-size: 28px;
    color: var(--color-primary);
    animation: twinkle 2s infinite;
}

.slot-frame::before {
    top: -14px;
    left: -14px;
}

.slot-frame::after {
    bottom: -14px;
    right: -14px;
}

@keyframes twinkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.slot-screen {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.slot-reel {
    width: 80px;
    height: 100px;
    background: #000;
    border: 2px solid var(--color-primary);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 20px rgba(255, 215, 0, 0.2);
}

.slot-symbol {
    width: 80px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 44px;
    background: linear-gradient(180deg, #1A1A1A 0%, #0A0A0A 100%);
}

.slot-reel.spinning .slot-symbol {
    animation: slotSpin 0.1s linear infinite;
}

@keyframes slotSpin {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.spin-btn {
    display: block;
    background: var(--gradient-primary);
    color: #000;
    border: none;
    padding: 14px 40px;
    font-size: 18px;
    font-weight: 900;
    border-radius: 10px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
    width: 100%;
    text-align: center;
    text-decoration: none;
}

.spin-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.6);
}

.spin-btn:active {
    transform: scale(0.98);
}

/* ========================================
   Bonus Banner
   ======================================== */
.bonus-banner {
    padding: 60px 0;
    background: var(--color-dark-light);
    position: relative;
}

.bonus-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(220, 38, 38, 0.08) 100%);
    border: 2px solid var(--color-primary);
    border-radius: 24px;
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: var(--shadow-large);
    position: relative;
    overflow: hidden;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.bonus-icon {
    font-size: 72px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4));
}

.bonus-content {
    flex: 1;
    position: relative;
    z-index: 1;
}

.bonus-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.bonus-value {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.bonus-percent {
    font-family: 'Unbounded', sans-serif;
    font-size: 56px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.bonus-plus {
    font-size: 32px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.4);
}

.bonus-spins {
    font-family: 'Unbounded', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-secondary);
}

.bonus-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.bonus-card > .btn {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

/* ========================================
   Section Headers
   ======================================== */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 36px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

/* ========================================
   Games Section
   ======================================== */
.games {
    padding: 80px 0;
    background: var(--color-dark);
}

.games-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 215, 0, 0.15);
    color: rgba(255, 255, 255, 0.6);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.tab-btn.active {
    background: var(--gradient-primary);
    color: #000;
    border-color: transparent;
    box-shadow: var(--shadow-gold);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.game-card {
    background: var(--color-dark-light);
    border: 2px solid rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.game-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-gold);
}

.game-image {
    position: relative;
    padding-top: 75%;
    background: #000;
    overflow: hidden;
}

.game-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    background: linear-gradient(135deg, #1A1A1A 0%, #0A0A0A 100%);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.game-info {
    padding: 16px;
}

.game-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.game-provider {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

.games-footer {
    text-align: center;
}

/* ========================================
   Features Section
   ======================================== */
.features {
    padding: 80px 0;
    background: var(--color-dark-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--color-dark);
    border: 2px solid rgba(255, 215, 0, 0.15);
    border-radius: 20px;
    padding: 40px 28px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-gold);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.4));
}

.feature-title {
    font-family: 'Unbounded', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 14px;
}

.feature-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ========================================
   Providers Section
   ======================================== */
.providers {
    padding: 60px 0;
    background: var(--color-dark);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.providers-slider {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.provider-logo {
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.35);
    padding: 16px 24px;
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.provider-logo:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* ========================================
   SEO Section
   ======================================== */
.seo-section {
    padding: 80px 0;
    background: var(--color-dark-light);
}

.seo-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
}

.seo-content h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 28px;
    text-align: center;
}

.seo-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    margin: 28px 0 16px;
}

.seo-content p {
    margin-bottom: 18px;
}

.seo-content ul {
    margin: 18px 0;
    padding-left: 28px;
}

.seo-content li {
    margin-bottom: 10px;
}

/* ========================================
   Live Stats Section
   ======================================== */
.live-stats-section {
    padding: 80px 0;
    background: var(--color-dark);
}

.stats-widget {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.04) 0%, rgba(220, 38, 38, 0.04) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--shadow-large);
}

.stats-header {
    text-align: center;
    margin-bottom: 36px;
}

.stats-header h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 24px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stats-update {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.stats-update time {
    color: var(--color-primary);
    font-weight: 700;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-item {
    text-align: center;
    padding: 28px 16px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.15);
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-gold);
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-number {
    font-family: 'Unbounded', sans-serif;
    font-size: 36px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    line-height: 1;
}

/* ========================================
   Recent Wins Section
   ======================================== */
.recent-wins-section {
    padding: 80px 0;
    background: var(--color-dark-light);
}

.wins-table-wrapper {
    overflow-x: auto;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 16px;
    padding: 6px;
    box-shadow: var(--shadow-large);
}

.wins-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 560px;
}

.wins-table thead {
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
}

.wins-table th {
    padding: 16px 20px;
    text-align: left;
    font-size: 13px;
    font-weight: 900;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wins-table tbody tr {
    border-bottom: 1px solid rgba(255, 215, 0, 0.08);
    transition: all 0.3s ease;
}

.wins-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.08) 0%, rgba(220, 38, 38, 0.06) 100%);
}

.wins-table tbody tr:last-child {
    border-bottom: none;
}

.wins-table td {
    padding: 14px 20px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.win-time {
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 13px !important;
}

.win-row:first-child {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.12) 0%, rgba(220, 38, 38, 0.04) 100%);
    border-left: 4px solid var(--color-primary);
}

.win-row:first-child .win-time::before {
    content: '🆕 ';
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.win-player {
    color: var(--color-primary) !important;
    font-weight: 700;
    font-family: 'Courier New', monospace;
}

.win-slot {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
}

.win-amount {
    color: var(--color-success) !important;
    font-weight: 900;
    font-size: 16px !important;
    text-align: right;
    text-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.wins-footer {
    margin-top: 24px;
    text-align: center;
}

.wins-note {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
    padding: 80px 0;
    background: var(--color-dark);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-dark-light);
    border: 2px solid rgba(255, 215, 0, 0.15);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 215, 0, 0.4);
}

.faq-item.active {
    border-color: var(--color-primary);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.15);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;
    background: transparent;
    border: none;
    text-align: left;
    font-size: 17px;
    font-weight: 700;
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.faq-question span:first-child {
    flex: 1;
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-icon {
    font-size: 28px;
    font-weight: 300;
    color: var(--color-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 30px;
    text-align: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding: 0 28px 22px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 15px;
    line-height: 1.8;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: #050505;
    padding: 60px 0 30px;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo .logo-icon {
    font-size: 28px;
}

.footer-logo .logo-name {
    font-family: 'Unbounded', sans-serif;
    font-size: 20px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 10px;
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--color-primary);
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4 {
    font-family: 'Unbounded', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.15);
}

.footer-payments {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 16px;
}

.payment-icon {
    font-size: 28px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.payment-icon:hover {
    opacity: 1;
}

.footer-copy {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 6px;
}

.footer-warning {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 700;
}

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 40px;
    }

    .games-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .nav {
        display: none;
    }

    .header-buttons {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero > .container {
        flex-direction: column;
    }

    .hero-title {
        font-size: 36px;
    }

    .bonus-card {
        flex-direction: column;
        text-align: center;
    }

    .bonus-value {
        justify-content: center;
    }

    .bonus-card > .btn {
        width: 100%;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 30px;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .stat-value {
        font-size: 26px;
    }

    .slot-frame {
        padding: 20px;
    }

    .slot-reel {
        width: 65px;
        height: 85px;
    }

    .slot-symbol {
        font-size: 36px;
        width: 65px;
        height: 85px;
    }

    .bonus-percent {
        font-size: 44px;
    }

    .bonus-spins {
        font-size: 28px;
    }

    .bonus-card {
        padding: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-widget {
        padding: 28px 20px;
    }

    .stat-number {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .games-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .bonus-percent {
        font-size: 36px;
    }

    .bonus-spins {
        font-size: 24px;
    }

    .games-tabs {
        gap: 8px;
    }

    .tab-btn {
        padding: 10px 18px;
        font-size: 13px;
    }
}

/* ========================================
   Utilities
   ======================================== */
.text-center { text-align: center; }
.text-primary { color: var(--color-primary); }
