/* =============================================
   Elon Casino - CSS Stylesheet
   Modern, Vibrant, SEO-Optimized Design
   ============================================= */

/* ===== CSS Variables & Color Scheme ===== */
:root {
    /* Primary Colors - Electric Blue & Purple */
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --primary-color: #667eea;
    --primary-dark: #5568d3;
    --primary-light: #8099ff;
    
    /* Secondary Colors - Gold & Orange */
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --secondary-color: #f5576c;
    --secondary-dark: #e04057;
    --secondary-light: #ff7a8a;
    
    /* Accent Colors */
    --accent-gold: #ffd700;
    --accent-orange: #ff6b35;
    --accent-green: #00d9a3;
    --accent-cyan: #00d4ff;
    --accent-pink: #ff1493;
    
    /* Neutral Colors */
    --dark-bg: #0f0f1e;
    --dark-secondary: #1a1a2e;
    --dark-tertiary: #16213e;
    --text-primary: #ffffff;
    --text-secondary: #b8b8d1;
    --text-muted: #8b8ba7;
    
    /* Gradient Backgrounds */
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --gradient-5: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --gradient-6: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 25px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 50px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 30px rgba(102, 126, 234, 0.4);
    
    /* Transitions */
    --transition-fast: all 0.2s ease;
    --transition-normal: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
    transition: var(--transition-normal);
}

/* ===== Container ===== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: 'Orbitron', sans-serif;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: 'Orbitron', sans-serif;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* ===== Buttons ===== */
.btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.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.6s, height 0.6s;
}

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

.btn-primary {
    background: var(--gradient-1);
    color: white;
    border: 2px solid transparent;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-outline:hover {
    background: white;
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.btn-hero {
    background: var(--gradient-2);
    color: white;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    box-shadow: 0 10px 40px rgba(245, 87, 108, 0.4);
}

.btn-hero:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(245, 87, 108, 0.6);
}

.btn-bonus {
    background: var(--gradient-4);
    color: var(--dark-bg);
    width: 100%;
    margin-top: 1rem;
    font-weight: 700;
}

.btn-bonus:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(67, 233, 123, 0.4);
}

.btn-play {
    background: var(--gradient-1);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.btn-play:hover {
    transform: scale(1.1);
}

/* ===== Header & Navigation ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(15, 15, 30, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-md);
    border-bottom: 2px solid rgba(102, 126, 234, 0.3);
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 900;
    cursor: pointer;
}

.logo i {
    font-size: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-text {
    color: white;
}

.logo .highlight {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: white;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
}

.nav-buttons .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
}

.mobile-toggle {
    display: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding-top: 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at top, rgba(102, 126, 234, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at bottom right, rgba(245, 87, 108, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at bottom left, rgba(67, 233, 123, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: var(--gradient-1);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: var(--gradient-2);
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.3;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(50px, -50px) rotate(120deg); }
    66% { transform: translate(-50px, 50px) rotate(240deg); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 4rem 0;
}

.hero-title {
    margin-bottom: 1.5rem;
    text-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-secondary);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(102, 126, 234, 0.1);
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(102, 126, 234, 0.3);
    backdrop-filter: blur(10px);
}

.feature-badge i {
    font-size: 1.5rem;
    color: var(--accent-gold);
}

.feature-badge span {
    font-weight: 600;
    color: white;
}

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

.hero-stats {
    position: relative;
    z-index: 1;
    background: rgba(26, 26, 46, 0.8);
    backdrop-filter: blur(10px);
    border-top: 2px solid rgba(102, 126, 234, 0.3);
    padding: 3rem 0;
}

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

.stat-item {
    text-align: center;
    padding: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Section Styles ===== */
section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* ===== About Section ===== */
.about-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
}

.about-content {
    display: grid;
    gap: 3rem;
}

.about-text h3 {
    color: var(--primary-light);
    margin: 2rem 0 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-align: justify;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: var(--dark-tertiary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid transparent;
    transition: var(--transition-normal);
    text-align: center;
}

.feature-card:nth-child(1) { border-color: rgba(102, 126, 234, 0.3); }
.feature-card:nth-child(2) { border-color: rgba(245, 87, 108, 0.3); }
.feature-card:nth-child(3) { border-color: rgba(67, 233, 123, 0.3); }
.feature-card:nth-child(4) { border-color: rgba(255, 215, 0, 0.3); }

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-card:nth-child(1):hover { box-shadow: 0 10px 40px rgba(102, 126, 234, 0.4); }
.feature-card:nth-child(2):hover { box-shadow: 0 10px 40px rgba(245, 87, 108, 0.4); }
.feature-card:nth-child(3):hover { box-shadow: 0 10px 40px rgba(67, 233, 123, 0.4); }
.feature-card:nth-child(4):hover { box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4); }

.feature-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card:nth-child(1) i { color: var(--primary-color); }
.feature-card:nth-child(2) i { color: var(--secondary-color); }
.feature-card:nth-child(3) i { color: var(--accent-green); }
.feature-card:nth-child(4) i { color: var(--accent-gold); }

.feature-card h4 {
    margin-bottom: 1rem;
    color: white;
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-muted);
}

/* ===== Games Section ===== */
.games-section {
    background: var(--dark-secondary);
}

.games-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.8rem 1.5rem;
    background: var(--dark-tertiary);
    color: var(--text-secondary);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    font-weight: 600;
    transition: var(--transition-normal);
}

.category-btn:hover,
.category-btn.active {
    background: var(--gradient-1);
    color: white;
    border-color: var(--primary-light);
    transform: translateY(-3px);
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.game-card {
    background: var(--dark-tertiary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition-normal);
    border: 2px solid transparent;
}

.game-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.game-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.game-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
}

.slot-bg { background: var(--gradient-1); }
.slot-bg2 { background: var(--gradient-5); }
.live-bg { background: var(--gradient-2); }
.live-bg2 { background: var(--gradient-6); }
.table-bg { background: var(--gradient-3); }
.table-bg2 { background: var(--gradient-4); }
.jackpot-bg { background: linear-gradient(135deg, #ffd700 0%, #ff8c00 100%); }
.sports-bg { background: linear-gradient(135deg, #00c853 0%, #00e676 100%); }

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
}

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

.game-info {
    padding: 1.5rem;
}

.game-info h4 {
    color: white;
    margin-bottom: 0.5rem;
}

.game-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== Table Styles ===== */
.table-container {
    margin-top: 4rem;
    overflow-x: auto;
}

.table-title {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-light);
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--dark-tertiary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.info-table thead {
    background: var(--gradient-1);
}

.info-table th {
    padding: 1.2rem;
    text-align: left;
    font-weight: 700;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.info-table td {
    padding: 1.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-secondary);
}

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

.info-table tbody tr:hover {
    background: rgba(102, 126, 234, 0.1);
}

.info-table tbody tr:last-child td {
    border-bottom: none;
}

.info-table td strong {
    color: white;
    font-weight: 600;
}

/* ===== Bonuses Section ===== */
.bonuses-section {
    background: linear-gradient(180deg, var(--dark-secondary) 0%, var(--dark-bg) 100%);
}

.bonus-content {
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.bonus-content h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.bonus-content p {
    text-align: justify;
    margin-bottom: 1.5rem;
}

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

.bonus-card {
    background: var(--dark-tertiary);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    border: 2px solid rgba(102, 126, 234, 0.2);
    transition: var(--transition-normal);
}

.bonus-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.3);
    border-color: var(--primary-color);
}

.bonus-card.featured {
    border: 3px solid var(--accent-gold);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, var(--dark-tertiary) 100%);
}

.bonus-card.featured:hover {
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.4);
}

.bonus-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient-2);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
}

.bonus-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-card.featured .bonus-icon {
    background: var(--gradient-5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-card h3 {
    margin-bottom: 1rem;
    color: white;
}

.bonus-amount {
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.bonus-card.featured .bonus-amount {
    background: var(--gradient-5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bonus-card > p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.bonus-features {
    text-align: left;
    margin: 1.5rem 0;
}

.bonus-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===== VIP Section ===== */
.vip-section {
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.vip-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -25%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
}

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

.vip-content h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
}

.vip-content p {
    text-align: justify;
    margin-bottom: 1.5rem;
}

.vip-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.vip-tier {
    background: var(--dark-tertiary);
    padding: 2rem;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 3px solid;
    transition: var(--transition-normal);
    position: relative;
}

.vip-tier:hover {
    transform: translateY(-15px) scale(1.05);
}

.bronze { border-color: #cd7f32; }
.silver { border-color: #c0c0c0; }
.gold { border-color: #ffd700; }
.platinum { border-color: #e5e4e2; }
.diamond { border-color: #b9f2ff; }
.elite { border-color: #9d00ff; }

.bronze:hover { box-shadow: 0 15px 50px rgba(205, 127, 50, 0.4); }
.silver:hover { box-shadow: 0 15px 50px rgba(192, 192, 192, 0.4); }
.gold:hover { box-shadow: 0 15px 50px rgba(255, 215, 0, 0.4); }
.platinum:hover { box-shadow: 0 15px 50px rgba(229, 228, 226, 0.4); }
.diamond:hover { box-shadow: 0 15px 50px rgba(185, 242, 255, 0.4); }
.elite:hover { box-shadow: 0 15px 50px rgba(157, 0, 255, 0.4); }

.tier-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.vip-tier h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.tier-requirement {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.vip-tier ul {
    text-align: left;
}

.vip-tier li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===== Payment Section ===== */
.payment-section {
    background: var(--dark-secondary);
}

.payment-content {
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.payment-content h3 {
    color: var(--accent-cyan);
    margin-bottom: 1rem;
}

.payment-content p {
    text-align: justify;
    margin-bottom: 1.5rem;
}

.payment-methods {
    margin-top: 3rem;
}

.payment-title {
    text-align: center;
    margin: 3rem 0 2rem;
    color: var(--primary-light);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.payment-item {
    background: var(--dark-tertiary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid rgba(102, 126, 234, 0.2);
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.payment-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.payment-item i {
    font-size: 2.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.payment-item span {
    font-weight: 600;
    color: white;
}

/* ===== FAQ Section ===== */
.faq-section {
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
}

.faq-intro {
    max-width: 1000px;
    margin: 0 auto 3rem;
    text-align: center;
}

.faq-intro p {
    font-size: 1.1rem;
}

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

.faq-item {
    background: var(--dark-tertiary);
    margin-bottom: 1.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 2px solid transparent;
    transition: var(--transition-normal);
}

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

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
    color: white;
}

.faq-question i {
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: var(--transition-normal);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

.faq-answer p {
    padding: 0 2rem 2rem;
    margin: 0;
    text-align: justify;
    line-height: 1.8;
}

/* ===== Security Section ===== */
.security-section {
    background: var(--dark-bg);
}

.security-content {
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.security-content h3 {
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.security-content p {
    text-align: justify;
    margin-bottom: 1.5rem;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.security-card {
    background: var(--dark-tertiary);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid rgba(67, 233, 123, 0.3);
    transition: var(--transition-normal);
}

.security-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(67, 233, 123, 0.3);
    border-color: var(--accent-green);
}

.security-card i {
    font-size: 3rem;
    color: var(--accent-green);
    margin-bottom: 1rem;
}

.security-card h4 {
    color: white;
    margin-bottom: 1rem;
}

.security-card p {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark-secondary);
    border-top: 2px solid rgba(102, 126, 234, 0.3);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-family: 'Orbitron', sans-serif;
}

.footer-section p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

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

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-tertiary);
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.social-links a:hover {
    background: var(--gradient-1);
    transform: translateY(-5px);
}

.footer-licenses {
    background: rgba(102, 126, 234, 0.05);
    padding: 2rem;
    border-radius: var(--radius-md);
    margin-bottom: 2rem;
}

.footer-licenses p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    max-width: 900px;
    margin: 1rem auto 0;
    font-style: italic;
}

/* ===== Scroll to Top Button ===== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
}

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

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(15, 15, 30, 0.98);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-buttons {
        position: absolute;
        bottom: 2rem;
        left: 2rem;
        right: 2rem;
    }

    .nav-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero {
        min-height: 80vh;
        padding-top: 80px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

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

    .hero-cta .btn {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .games-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }

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

    .vip-tiers {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .table-container {
        overflow-x: scroll;
    }

    .info-table {
        min-width: 800px;
    }

    .faq-question h3 {
        font-size: 1rem;
    }

    .faq-answer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 1rem;
    }

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

    .stat-number {
        font-size: 2rem;
    }

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

    .payment-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

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

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

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

/* Utility Classes */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in {
    animation: slideIn 0.6s ease-out;
}

/* Loading State */
.loading {
    pointer-events: none;
    opacity: 0.6;
}

/* Print Styles */
@media print {
    .header,
    .hero,
    .scroll-top,
    .nav-buttons {
        display: none;
    }
}