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

:root {
    --primary-color: #144884;
    --secondary-color: #b6a672;
    --theme-color: #0a1929;
    --background-dark: #051932;
    --background-light: #1a365d;
    --text-primary: #ffffff;
    --text-secondary: #e2e8f0;
    --text-muted: #94a3b8;
    --menu-text: #b6a672;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, #1e5799 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, #d4c085 100%);
    --gradient-dark: linear-gradient(135deg, var(--theme-color) 0%, var(--background-light) 100%);
    --gradient-background: linear-gradient(135deg, #144884 0%, #0a1929 100%);
    --gradient-mesh: conic-gradient(from 45deg, var(--primary-color), var(--secondary-color), var(--primary-color), #1e5799);
    --gradient-animated: linear-gradient(-45deg, #144884, #b6a672, #1e5799, #144884);
    --glass-bg: rgba(20, 72, 132, 0.1);
    --glass-border: rgba(182, 166, 114, 0.2);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.5);
    --shadow-glass: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(20, 72, 132, 0.4);
    --shadow-gold: 0 0 20px rgba(182, 166, 114, 0.4);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

html {
    scroll-behavior: smooth;
}

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

/* Particle Background */
#particles-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    opacity: 0.6;
    pointer-events: none;
    mix-blend-mode: screen;
}

/* Animated background gradient */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 400%;
    height: 400%;
    background: var(--gradient-animated);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    opacity: 0.05;
    z-index: -2;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Icons */
i {
    color: #ffffff;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-spring);
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease-out;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transition: all 0.4s ease-out;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 0;
}

.btn:hover::before {
    left: 100%;
}

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

.btn:hover {
    transform: translateY(-2px) scale(1.02);
}

.btn:active {
    transform: translateY(0) scale(0.98);
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid var(--menu-text);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--theme-color);
}

.btn-hero {
    background: var(--gradient-primary);
    color: #ffffff;
    padding: 16px 32px;
    font-size: 1.125rem;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
}

.btn-hero:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(182, 166, 114, 0.4), var(--shadow-glow);
    filter: brightness(1.1);
}

.btn-bonus {
    background: var(--gradient-primary);
    color: var(--theme-color);
    width: 100%;
    justify-content: center;
    padding: 14px 28px;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--background-light);
    width: 100%;
    justify-content: center;
}

.btn-outline:hover {
    background: var(--background-light);
    border-color: var(--secondary-color);
}

.btn-cta {
    background: var(--gradient-primary);
    color: #fff;
    padding: 18px 36px;
    font-size: 1.25rem;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
}

.btn-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(182, 166, 114, 0.5), var(--shadow-glow);
    filter: brightness(1.15) saturate(1.2);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow-glass);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10, 25, 41, 0.98);
    backdrop-filter: blur(25px);
    box-shadow: var(--shadow-lg);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 40px;
    width: auto;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--secondary-color);
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--theme-color) 0%, var(--background-dark) 100%);
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(20, 72, 132, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(182, 166, 114, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(20, 72, 132, 0.05) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="0.5" fill="rgba(20,72,132,0.3)"/><circle cx="25" cy="25" r="0.3" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="0.4" fill="rgba(182,166,114,0.2)"/></svg>') repeat;
    background-size: 80px 80px;
    animation: starField 30s linear infinite;
    opacity: 0.6;
}

/* Gates of Olympus Character - Centered Background */
.hero-character {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 600px;
    background: url('https://i.pinimg.com/originals/14/ab/ef/14abef908b6cbc9e037916d20880e367.gif') no-repeat center center;
    background-size: contain;
    opacity: 0.15;
    animation: characterFloat 6s ease-in-out infinite;
    z-index: 1;
    filter: blur(1px) brightness(1.2) contrast(1.1);
    will-change: transform;
    pointer-events: none;
    mix-blend-mode: screen;
}

.hero-character::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -30%;
    width: 160%;
    height: 160%;
    background: radial-gradient(circle, rgba(20, 72, 132, 0.05) 0%, transparent 70%);
    animation: characterGlow 8s ease-in-out infinite alternate;
    z-index: -1;
    will-change: transform, opacity;
}

@keyframes characterFloat {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.15;
    }
    50% { 
        transform: translate(-50%, -52%) scale(1.03);
        opacity: 0.2;
    }
}

@keyframes characterGlow {
    0% { 
        opacity: 0.1;
        transform: scale(1);
    }
    100% { 
        opacity: 0.2;
        transform: scale(1.05);
    }
}

@keyframes starField {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(-100px) translateY(-100px); }
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 70%, rgba(182, 166, 114, 0.1) 0%, transparent 50%);
}

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

.hero-title {
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight {
    color: var(--secondary-color);
    text-shadow: 0 0 20px rgba(182, 166, 114, 0.5);
}

.hero-description {
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--text-secondary);
}

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

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 1rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
}

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

/* Section Styles */
section {
    padding: 6rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

/* Features Section */
.features {
    background: var(--background-dark);
}

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

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition-spring);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(20, 72, 132, 0.2), transparent);
    transition: left 0.8s ease-out;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-mesh);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
    border-radius: 50%;
    filter: blur(40px);
}

.feature-card:hover::before {
    left: 100%;
}

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

.feature-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: var(--shadow-glass), var(--shadow-glow);
    border-color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.15);
}

.feature-card:nth-child(even):hover {
    transform: translateY(-10px) rotateX(-5deg) rotateY(-5deg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--theme-color);
}

.feature-icon i {
    color: #fff;
}

.feature-card h3 {
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-card p {
    margin-bottom: 1.5rem;
}

.feature-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

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

/* Bonuses Section */
.bonuses {
    background: var(--theme-color);
}

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

.bonus-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition-spring);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.bonus-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mesh);
    opacity: 0;
    transition: var(--transition);
    z-index: -1;
    filter: blur(30px);
}

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

.bonus-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-glass), var(--shadow-glow);
    background: rgba(255, 255, 255, 0.15);
}

.bonus-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-glass), var(--shadow-glow);
    background: rgba(226, 210, 99, 0.1);
    animation: pulse-glow 3s ease-in-out infinite;
    opacity: 1 !important;
    z-index: 1;
    visibility: visible !important;
}

.bonus-card.featured:hover {
    transform: translateY(-8px) scale(1.08);
}

@keyframes pulse-glow {
    0%, 100% { 
        box-shadow: var(--shadow-glass), 0 0 30px rgba(226, 210, 99, 0.3);
        opacity: 1;
    }
    50% { 
        box-shadow: var(--shadow-glass), 0 0 40px rgba(226, 210, 99, 0.5);
        opacity: 1;
    }
}

.bonus-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--theme-color);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.bonus-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
}

.bonus-icon i {
    color: #fff;
}

.bonus-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.bonus-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.bonus-features li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bonus-features i {
    color: var(--success-color);
}

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

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

.game-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition-spring);
    border: 1px solid var(--glass-border);
    position: relative;
    transform-style: preserve-3d;
    cursor: pointer;
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
    z-index: 1;
}

.game-card:hover::before {
    transform: translateX(100%);
}

.game-card:hover {
    transform: translateY(-8px) rotateY(10deg) rotateX(5deg);
    box-shadow: var(--shadow-glass), var(--shadow-glow);
}

.game-card:nth-child(even):hover {
    transform: translateY(-8px) rotateY(-10deg) rotateX(5deg);
}

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

.game-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-color);
    background: var(--gradient-dark);
}

.sweet-bonanza { background: linear-gradient(135deg, #ff6b6b, #ffa500); }
.gates-olympus { background: linear-gradient(135deg, #4ecdc4, #44a08d); }
.crazy-time { background: linear-gradient(135deg, #667eea, #764ba2); }
.blackjack { background: linear-gradient(135deg, #2c3e50, #34495e); }
.roulette { background: linear-gradient(135deg, #e23c3c, #b71c1c); }
.baccarat { background: linear-gradient(135deg, #8e24aa, #5e35b1); }

.game-info {
    padding: 1rem;
    text-align: center;
}

.game-info h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

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

/* CTA Section */
.cta {
    background: var(--gradient-dark);
    text-align: center;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.cta-security {
    display: flex;
    gap: 2rem;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.security-item i {
    color: var(--success-color);
}

/* Footer */
.footer {
    background: var(--background-dark);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 40px;
    width: auto;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--secondary-color);
}

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

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--background-light);
    color: var(--text-secondary);
    border-radius: 50%;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--secondary-color);
    color: var(--theme-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }
    
    .nav-actions {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .hero-character {
        width: 350px;
        height: 420px;
        opacity: 0.12;
        filter: blur(1px) brightness(1.1);
    }
    
    .features-grid,
    .bonuses-grid {
        grid-template-columns: 1fr;
    }
    
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-security {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 4rem 0;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-actions {
        gap: 1.5rem;
    }
    
    .hero-stats {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-character {
        width: 250px;
        height: 300px;
        opacity: 0.1;
        filter: blur(1px) brightness(1.1);
        transform: translate(-50%, -50%);
    }
}

/* Advanced Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px) rotateX(10deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) rotateX(0deg);
    }
}

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

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8) rotateZ(-5deg);
    }
    to {
        opacity: 1;
        transform: scale(1) rotateZ(0deg);
    }
}

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

.feature-card,
.bonus-card,
.game-card {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}



.feature-card:nth-child(1) { animation: slideInLeft 0.8s ease-out forwards; animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation: fadeInUp 0.8s ease-out forwards; animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation: fadeInUp 0.8s ease-out forwards; animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation: slideInRight 0.8s ease-out forwards; animation-delay: 0.4s; }

.bonus-card:nth-child(1) { animation-delay: 0.2s; }
.bonus-card:nth-child(2) { animation-delay: 0.4s; }
.bonus-card:nth-child(3) { animation-delay: 0.6s; }

.game-card { animation: scaleIn 0.6s ease-out forwards; }
.game-card:nth-child(1) { animation-delay: 0.1s; }
.game-card:nth-child(2) { animation-delay: 0.2s; }
.game-card:nth-child(3) { animation-delay: 0.3s; }
.game-card:nth-child(4) { animation-delay: 0.4s; }
.game-card:nth-child(5) { animation-delay: 0.5s; }
.game-card:nth-child(6) { animation-delay: 0.6s; }

/* Floating animations for icons */
.feature-icon,
.bonus-icon {
    animation: floatUpDown 3s ease-in-out infinite;
}

.feature-icon:nth-child(1) { animation-delay: 0s; }
.bonus-icon:nth-child(1) { animation-delay: 1s; }

/* Smooth scroll offset for fixed header */
html {
    scroll-padding-top: 80px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--theme-color);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d4a574;
} 