/* ========================================
   CSS Variables - Premium Casino Theme
   ======================================== */
:root {
    /* Premium Gold Palette */
    --color-primary: #FFD700;
    --color-gold-light: #FFE55C;
    --color-gold-dark: #E6C200;
    --color-secondary: #FFA500;
    --color-accent: #FF6B35;
    --color-accent-purple: #9D4EDD;
    --color-accent-blue: #00B4D8;

    /* Dark Theme */
    --color-bg-dark: #0a0a0f;
    --color-bg-darker: #05050a;
    --color-bg-card: rgba(26, 26, 38, 0.8);
    --color-bg-card-hover: rgba(38, 38, 54, 0.9);
    --color-bg-gradient-1: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --color-bg-gradient-2: linear-gradient(135deg, #2d1b69 0%, #1e1444 100%);
    --color-bg-gradient-3: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);

    /* Text Colors */
    --color-text-primary: #ffffff;
    --color-text-secondary: #e0e0e0;
    --color-text-muted: #a0a0a0;
    --color-border: rgba(255, 215, 0, 0.2);
    --color-border-light: rgba(255, 255, 255, 0.1);

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-round: 50%;

    /* Shadows - Premium */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.7);
    --shadow-glow: 0 0 30px rgba(255, 215, 0, 0.5), 0 0 60px rgba(255, 215, 0, 0.3);
    --shadow-glow-hover: 0 0 40px rgba(255, 215, 0, 0.7), 0 0 80px rgba(255, 215, 0, 0.4);
    --shadow-inset: inset 0 2px 8px rgba(0, 0, 0, 0.3);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ========================================
   Global Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Inter', sans-serif;
    background: linear-gradient(180deg, #0a0a0f 0%, #12121c 50%, #0a0a0f 100%);
    color: var(--color-text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background Particles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(157, 78, 221, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 180, 216, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--color-gold-light);
}

ul, ol {
    margin-left: var(--spacing-md);
}

/* ========================================
   Container
   ======================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

/* ========================================
   Header - Premium
   ======================================== */
.header {
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    padding: var(--spacing-md) 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    transition: var(--transition-normal);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
}

.logo {
    position: relative;
}

.logo img {
    height: 50px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    transition: var(--transition-fast);
}

.logo:hover img {
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    transform: scale(1.05);
}

.nav {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.nav-link {
    color: var(--color-text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold-dark), var(--color-primary), var(--color-gold-light));
    transform: translateX(-50%);
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
    background: rgba(255, 215, 0, 0.1);
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 80%;
}

.header-actions {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold-dark), var(--color-primary));
    border-radius: 4px;
    transition: var(--transition-fast);
}

/* ========================================
   Buttons - Premium
   ======================================== */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
    font-size: 1rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0a0a0f;
    box-shadow:
        0 4px 20px rgba(255, 215, 0, 0.4),
        0 0 40px rgba(255, 215, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    position: relative;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: var(--transition-slow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow:
        0 6px 30px rgba(255, 215, 0, 0.6),
        0 0 60px rgba(255, 215, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    color: #0a0a0f;
}

.btn-primary:hover::after {
    left: 100%;
}

.btn-secondary {
    background: rgba(255, 215, 0, 0.1);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    box-shadow:
        0 0 20px rgba(255, 215, 0, 0.2),
        inset 0 0 20px rgba(255, 215, 0, 0.1);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: #0a0a0f;
    transform: translateY(-3px);
    box-shadow:
        0 6px 30px rgba(255, 215, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-large {
    padding: 1.125rem 2.75rem;
    font-size: 1.125rem;
}

/* ========================================
   Sections
   ======================================== */
.section {
    padding: var(--spacing-xxl) 0;
    position: relative;
}

.section-dark {
    background: linear-gradient(180deg, rgba(18, 18, 28, 0.5) 0%, rgba(10, 10, 15, 0.8) 100%);
    position: relative;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 20%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(157, 78, 221, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section h2 {
    font-size: 2.75rem;
    margin-bottom: var(--spacing-lg);
    text-align: center;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    border-radius: 2px;
}

.section h3 {
    font-size: 1.875rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
    font-weight: 700;
    letter-spacing: -0.3px;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    max-width: 900px;
    margin: 0 auto var(--spacing-xl);
    line-height: 1.8;
}

/* ========================================
   Hero Section - Premium
   ======================================== */
.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    padding: calc(var(--spacing-xxl) * 1.5) 0;
    position: relative;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

/* Animated Glowing Orbs */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
    border-radius: var(--radius-round);
    animation: float 8s ease-in-out infinite;
    filter: blur(60px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(157, 78, 221, 0.2) 0%, transparent 70%);
    border-radius: var(--radius-round);
    animation: float 10s ease-in-out infinite reverse;
    filter: blur(60px);
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.7;
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
        opacity: 0.6;
    }
}

/* Sparkle Effect */
.hero .container::before {
    content: '✨';
    position: absolute;
    top: 10%;
    right: 15%;
    font-size: 2rem;
    animation: sparkle 3s ease-in-out infinite;
    opacity: 0;
}

.hero .container::after {
    content: '💎';
    position: absolute;
    bottom: 20%;
    left: 10%;
    font-size: 2rem;
    animation: sparkle 4s ease-in-out infinite 1s;
    opacity: 0;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0.5) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    margin-bottom: var(--spacing-md);
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, #FFD700 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    letter-spacing: -1px;
    text-shadow: 0 0 60px rgba(255, 215, 0, 0.3);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
    text-align: center;
}

.hero-image a {
    display: block;
    width: 100%;
}

.hero-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent-purple));
    border-radius: var(--radius-xl);
    opacity: 0.3;
    filter: blur(20px);
    animation: pulse 3s ease-in-out infinite;
}

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

.hero-image img {
    border-radius: var(--radius-xl);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(255, 215, 0, 0.2);
    width: 100%;
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

/* ========================================
   Why Choose Section
   ======================================== */
.intro-text {
    max-width: 1000px;
    margin: 0 auto var(--spacing-xl);
    text-align: center;
}

.intro-text p {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.feature-card {
    background: linear-gradient(135deg, rgba(26, 26, 38, 0.9) 0%, rgba(18, 18, 28, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-normal);
}

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

.feature-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent-purple), var(--color-accent-blue));
    border-radius: var(--radius-xl);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(255, 215, 0, 0.3);
}

.feature-card:hover::after {
    opacity: 0.5;
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    animation: iconFloat 3s ease-in-out infinite;
}

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

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
}

.feature-card p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-left: 0;
}

.feature-list li {
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-lg);
    position: relative;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* ========================================
   Bonuses Section - Premium
   ======================================== */
.bonuses-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.bonuses-text h3 {
    margin-top: var(--spacing-lg);
}

.bonuses-text p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.bonus-list {
    background: linear-gradient(135deg, rgba(26, 26, 38, 0.6) 0%, rgba(18, 18, 28, 0.6) 100%);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin: var(--spacing-md) 0;
    border-left: 5px solid var(--color-primary);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 215, 0, 0.1);
}

.bonus-list li {
    padding: var(--spacing-md) 0;
    color: var(--color-text-secondary);
    border-bottom: 1px solid var(--color-border-light);
}

.bonus-list li:last-child {
    border-bottom: none;
}

.bonus-list li strong {
    color: var(--color-primary);
    display: block;
    margin-bottom: var(--spacing-xs);
    font-size: 1.2rem;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.bonuses-image {
    position: relative;
    text-align: center;
}

.bonuses-image a {
    display: block;
    width: 100%;
}

.bonuses-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-primary));
    border-radius: var(--radius-xl);
    opacity: 0.2;
    filter: blur(30px);
}

.bonuses-image img {
    border-radius: var(--radius-xl);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(255, 215, 0, 0.2);
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.vip-section {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2) 0%, rgba(26, 26, 38, 0.9) 100%);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(157, 78, 221, 0.3);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(157, 78, 221, 0.2);
    position: relative;
    overflow: hidden;
}

.vip-section::before {
    content: '👑';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    opacity: 0.1;
    transform: rotate(-15deg);
}

.vip-section h3 {
    margin-top: 0;
    background: linear-gradient(135deg, #9D4EDD 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-section p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.vip-benefits-list {
    list-style: none;
    margin: var(--spacing-md) 0;
    counter-reset: vip-counter;
}

.vip-benefits-list li {
    counter-increment: vip-counter;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding: var(--spacing-md);
    padding-left: 4.5rem;
    background: linear-gradient(90deg, rgba(157, 78, 221, 0.1) 0%, transparent 100%);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-accent-purple);
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
}

.vip-benefits-list li:hover {
    background: linear-gradient(90deg, rgba(157, 78, 221, 0.2) 0%, transparent 100%);
    transform: translateX(5px);
}

.vip-benefits-list li::before {
    content: counter(vip-counter);
    position: absolute;
    left: var(--spacing-md);
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-primary));
    color: #ffffff;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(157, 78, 221, 0.4);
}

/* ========================================
   Registration Section
   ======================================== */
.registration-content {
    max-width: 1000px;
    margin: 0 auto;
}

.registration-steps h3 {
    margin-top: var(--spacing-lg);
}

.registration-steps p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.steps-list {
    background: linear-gradient(135deg, rgba(26, 26, 38, 0.6) 0%, rgba(18, 18, 28, 0.6) 100%);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    margin: var(--spacing-md) 0;
    border-left: 5px solid var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.steps-list li {
    padding: var(--spacing-md) 0;
    color: var(--color-text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
    padding-left: var(--spacing-lg);
}

.steps-list li::marker {
    color: var(--color-primary);
    font-weight: bold;
    font-size: 1.2rem;
}

/* ========================================
   Games Section - Premium
   ======================================== */
.games-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.games-image {
    position: relative;
    text-align: center;
}

.games-image a {
    display: block;
    width: 100%;
}

.games-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--color-accent-blue), var(--color-primary));
    border-radius: var(--radius-xl);
    opacity: 0.2;
    filter: blur(30px);
}

.games-image img {
    border-radius: var(--radius-xl);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(0, 180, 216, 0.2);
    position: relative;
    z-index: 1;
    border: 2px solid rgba(0, 180, 216, 0.2);
}

.games-text h3 {
    margin-top: 0;
}

.games-text p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.games-categories {
    list-style: none;
    margin: var(--spacing-md) 0;
}

.games-categories li {
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--color-text-secondary);
    background: linear-gradient(90deg, rgba(0, 180, 216, 0.1) 0%, transparent 100%);
    border-left: 3px solid var(--color-accent-blue);
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
    transition: var(--transition-fast);
}

.games-categories li:hover {
    background: linear-gradient(90deg, rgba(0, 180, 216, 0.2) 0%, transparent 100%);
    transform: translateX(5px);
}

.games-categories li strong {
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.games-additional {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
}

.game-type {
    background: linear-gradient(135deg, rgba(26, 26, 38, 0.8) 0%, rgba(18, 18, 28, 0.8) 100%);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.game-type::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition-slow);
}

.game-type:hover::before {
    opacity: 1;
    transform: rotate(45deg);
}

.game-type:hover {
    transform: translateY(-5px);
    border-color: var(--color-primary);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 0 30px rgba(255, 215, 0, 0.2);
}

.game-type h3 {
    margin-top: 0;
}

.game-type p {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* ========================================
   Mobile App Section
   ======================================== */
.mobile-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.mobile-text h3 {
    margin-top: 0;
}

.mobile-text p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.mobile-benefits-list {
    list-style: none;
    margin: var(--spacing-md) 0;
}

.mobile-benefits-list li {
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--color-text-secondary);
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.05) 0%, transparent 100%);
    border-left: 3px solid var(--color-primary);
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
    transition: var(--transition-fast);
}

.mobile-benefits-list li:hover {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
    transform: translateX(5px);
}

.mobile-benefits-list li strong {
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.mobile-image {
    position: relative;
    text-align: center;
}

.mobile-image a {
    display: block;
    width: 100%;
}

.mobile-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: var(--radius-xl);
    opacity: 0.2;
    filter: blur(30px);
}

.mobile-image img {
    border-radius: var(--radius-xl);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(255, 107, 53, 0.2);
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.mobile-download {
    background: linear-gradient(135deg, rgba(26, 26, 38, 0.8) 0%, rgba(18, 18, 28, 0.8) 100%);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.mobile-download h3 {
    margin-top: 0;
}

.mobile-download p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.installation-steps {
    background: rgba(10, 10, 15, 0.5);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin: var(--spacing-md) 0;
    border-left: 5px solid var(--color-primary);
}

.installation-steps li {
    padding: var(--spacing-sm) 0;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.installation-steps li::marker {
    color: var(--color-primary);
    font-weight: bold;
}

/* ========================================
   Payments Section
   ======================================== */
.payments-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.payments-image {
    position: relative;
    text-align: center;
}

.payments-image a {
    display: block;
    width: 100%;
}

.payments-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--color-accent-purple), var(--color-accent-blue));
    border-radius: var(--radius-xl);
    opacity: 0.2;
    filter: blur(30px);
}

.payments-image img {
    border-radius: var(--radius-xl);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(157, 78, 221, 0.2);
    position: relative;
    z-index: 1;
    border: 2px solid rgba(157, 78, 221, 0.2);
}

.payments-text h3 {
    margin-top: 0;
}

.payments-text p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0;
}

.payment-category {
    background: linear-gradient(135deg, rgba(26, 26, 38, 0.6) 0%, rgba(18, 18, 28, 0.6) 100%);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: var(--transition-fast);
}

.payment-category:hover {
    transform: translateY(-3px);
    border-color: var(--color-primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.payment-category p {
    margin-bottom: var(--spacing-sm);
}

.payment-category ul {
    list-style: none;
    margin-left: 0;
}

.payment-category li {
    padding: var(--spacing-xs) 0;
    color: var(--color-text-secondary);
    padding-left: var(--spacing-md);
    position: relative;
    font-size: 0.95rem;
}

.payment-category li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

.withdrawals-section {
    background: linear-gradient(135deg, rgba(26, 26, 38, 0.8) 0%, rgba(18, 18, 28, 0.8) 100%);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.withdrawals-section h3 {
    margin-top: var(--spacing-lg);
}

.withdrawals-section h3:first-child {
    margin-top: 0;
}

.withdrawals-section p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.withdrawal-times {
    list-style: none;
    margin: var(--spacing-md) 0;
}

.withdrawal-times li {
    padding: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(90deg, rgba(0, 180, 216, 0.1) 0%, transparent 100%);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-accent-blue);
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
}

.withdrawal-times li:hover {
    background: linear-gradient(90deg, rgba(0, 180, 216, 0.2) 0%, transparent 100%);
    transform: translateX(5px);
}

.withdrawal-times li strong {
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* ========================================
   Support Section
   ======================================== */
.support-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    margin-bottom: var(--spacing-xl);
}

.support-text h3 {
    margin-top: 0;
}

.support-text p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0;
}

.contact-method {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.1) 0%, transparent 100%);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
    transition: var(--transition-fast);
}

.contact-method:hover {
    background: linear-gradient(90deg, rgba(255, 215, 0, 0.2) 0%, transparent 100%);
    transform: translateX(5px);
}

.contact-method p {
    margin: 0;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.contact-method strong {
    color: var(--color-primary);
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.support-image {
    position: relative;
    text-align: center;
}

.support-image a {
    display: block;
    width: 100%;
}

.support-image::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent-purple));
    border-radius: var(--radius-xl);
    opacity: 0.2;
    filter: blur(30px);
}

.support-image img {
    border-radius: var(--radius-xl);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(255, 215, 0, 0.2);
    position: relative;
    z-index: 1;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.faq-section {
    background: linear-gradient(135deg, rgba(26, 26, 38, 0.8) 0%, rgba(18, 18, 28, 0.8) 100%);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.faq-section h3 {
    margin-top: 0;
}

.faq-section p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.faq-list {
    background: rgba(10, 10, 15, 0.5);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin: var(--spacing-md) 0;
}

.faq-list li {
    padding: var(--spacing-sm) 0;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.faq-list li::marker {
    color: var(--color-primary);
    font-weight: bold;
}

/* ========================================
   Licence Section
   ======================================== */
.licence-content {
    max-width: 1000px;
    margin: 0 auto var(--spacing-xl);
}

.licence-content p {
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    font-size: 1.15rem;
    line-height: 1.8;
}

.comparison-section {
    margin-top: var(--spacing-xl);
}

.comparison-section h3 {
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.comparison-section > p {
    text-align: center;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-lg);
    line-height: 1.8;
}

.table-responsive {
    overflow-x: auto;
    margin: var(--spacing-lg) 0;
    border-radius: var(--radius-lg);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: linear-gradient(135deg, rgba(26, 26, 38, 0.9) 0%, rgba(18, 18, 28, 0.9) 100%);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.comparison-table thead {
    background: linear-gradient(135deg, rgba(18, 18, 28, 0.9) 0%, rgba(10, 10, 15, 0.9) 100%);
}

.comparison-table th {
    padding: var(--spacing-md);
    text-align: left;
    color: var(--color-primary);
    font-weight: 700;
    border-bottom: 2px solid var(--color-border);
    font-size: 1rem;
}

.comparison-table td {
    padding: var(--spacing-md);
    color: var(--color-text-secondary);
    border-bottom: 1px solid var(--color-border-light);
    line-height: 1.6;
}

.comparison-table tbody tr {
    transition: var(--transition-fast);
}

.comparison-table tbody tr:hover {
    background: rgba(255, 215, 0, 0.05);
}

.comparison-table .highlight {
    color: var(--color-primary);
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* ========================================
   Call to Action Section
   ======================================== */
.cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content p {
    font-size: 1.15rem;
    color: var(--color-text-secondary);
    margin-bottom: var(--spacing-md);
    line-height: 1.9;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

.responsible-gaming {
    margin-top: var(--spacing-xl);
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--color-border);
    position: relative;
    z-index: 1;
}

.responsible-gaming p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ========================================
   Footer - Premium
   ======================================== */
.footer {
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.8) 0%, rgba(5, 5, 10, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    border-top: 1px solid var(--color-border);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-logo img {
    height: 50px;
    margin-bottom: var(--spacing-md);
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.footer-column h4 {
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    font-size: 1.15rem;
    font-weight: 700;
}

.footer-column p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-column ul {
    list-style: none;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-column ul li a {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-column ul li a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-border-light);
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
    line-height: 1.6;
}

/* ========================================
   Scroll to Top Button - Premium
   ======================================== */
.scroll-top {
    position: fixed;
    bottom: var(--spacing-lg);
    right: var(--spacing-lg);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #0a0a0f;
    width: 55px;
    height: 55px;
    border-radius: var(--radius-round);
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
    box-shadow:
        0 4px 20px rgba(255, 215, 0, 0.5),
        0 0 40px rgba(255, 215, 0, 0.3);
    z-index: 999;
    font-weight: bold;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow:
        0 6px 30px rgba(255, 215, 0, 0.7),
        0 0 60px rgba(255, 215, 0, 0.5);
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 968px) {
    .hero-content,
    .bonuses-content,
    .games-content,
    .mobile-content,
    .payments-content,
    .support-content {
        grid-template-columns: 1fr;
    }

    .games-additional {
        grid-template-columns: 1fr;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 15, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: var(--spacing-md);
        border-top: 1px solid var(--color-border);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    }

    .nav.active {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .section h2 {
        font-size: 2.25rem;
    }

    .comparison-table {
        font-size: 0.875rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: var(--spacing-sm);
    }
}

@media (max-width: 640px) {
    :root {
        font-size: 14px;
    }

    .container {
        padding: 0 var(--spacing-sm);
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }

    .btn-large {
        width: 100%;
    }

    .header-actions .btn {
        padding: 0.625rem 1.125rem;
        font-size: 0.875rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .payment-methods {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .section h2 {
        font-size: 1.875rem;
    }
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

.animate-on-scroll {
    opacity: 0;
    animation: fadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ========================================
   Loading State
   ======================================== */
body.loaded {
    animation: pageLoad 0.5s ease-in-out;
}

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

/* ========================================
   Utility Classes
   ======================================== */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--color-primary);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

/* ========================================
   Glass Morphism Utility
   ======================================== */
.glass {
    background: rgba(26, 26, 38, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ========================================
   Accessibility
   ======================================== */
.keyboard-nav *:focus {
    outline: 3px solid var(--color-primary);
    outline-offset: 3px;
    border-radius: var(--radius-sm);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
