/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d, #000000);
    background-attachment: fixed;
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}




/* Main content */
.main-content {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    text-align: center;
}

/* Header styles */
.header {
    margin-bottom: 0rem;
}

.title {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #FFD700, #FBC02D, #FF1744, #00C853);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation:
        casino-shimmer 4s ease-in-out infinite,
        text-shimmer 3s ease-in-out infinite,
        pulse-glow 2s ease-in-out infinite;
    margin-bottom: 0rem;
    text-shadow: 0 0 40px rgba(255, 215, 0, 0.7);
    position: relative;
}

.subtitle {
    font-size: 1.3rem;
    color: #FFD700;
    font-weight: 600;
    letter-spacing: 2px;
    /* Disabled text-shadow for better performance */
    /* Disabled animation for better performance */
    position: relative;
}

/* Enhanced casino shimmer animations */
@keyframes casino-shimmer {
    0%, 100% {
        background-position: 0% 50%;
        filter: brightness(1) contrast(1);
    }
    25% {
        background-position: 100% 0%;
        filter: brightness(1.1) contrast(1.05);
    }
    50% {
        background-position: 100% 100%;
        filter: brightness(1.2) contrast(1.1);
    }
    75% {
        background-position: 0% 100%;
        filter: brightness(1.1) contrast(1.05);
    }
}

@keyframes text-shimmer {
    0%, 100% {
        text-shadow:
            0 0 5px rgba(255, 215, 0, 0.5),
            0 0 10px rgba(255, 215, 0, 0.3),
            0 0 20px rgba(255, 215, 0, 0.2);
    }
    50% {
        text-shadow:
            0 0 10px rgba(255, 215, 0, 0.8),
            0 0 20px rgba(255, 215, 0, 0.6),
            0 0 30px rgba(255, 215, 0, 0.4),
            0 0 40px rgba(255, 215, 0, 0.2);
    }
}

@keyframes button-shine {
    0%, 100% {
        box-shadow:
            0 8px 32px rgba(255, 215, 0, 0.4),
            0 4px 16px rgba(251, 192, 45, 0.3),
            inset 0 1px 2px rgba(255, 255, 255, 0.6),
            inset 0 -1px 2px rgba(0, 0, 0, 0.2);
    }
    50% {
        box-shadow:
            0 12px 40px rgba(255, 215, 0, 0.6),
            0 6px 20px rgba(251, 192, 45, 0.4),
            inset 0 2px 4px rgba(255, 255, 255, 0.8),
            inset 0 -2px 4px rgba(0, 0, 0, 0.3);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.02);
        filter: brightness(1.05);
    }
}

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

/* Hero section with attention effects */
.hero-section {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    padding: 2rem;
    border-radius: 20px;
    /* Disabled heavy gradient for better performance */
    /* Disabled heavy box-shadow for better performance */
    /* Disabled animation for better performance */
}

@keyframes section-glow {
    0%, 100% {
        box-shadow:
            0 0 50px rgba(255, 215, 0, 0.1),
            inset 0 0 50px rgba(255, 215, 0, 0.05);
    }
    50% {
        box-shadow:
            0 0 80px rgba(255, 215, 0, 0.15),
            inset 0 0 80px rgba(255, 215, 0, 0.08);
    }
}

/* Sparkle effects for hero section */
.hero-section::before {
    content: '✨';
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 24px;
    /* Disabled sparkle animation for performance */
    opacity: 0.8;
}

.hero-section::after {
    content: '⭐';
    position: absolute;
    top: -10px;
    right: -10px;
    font-size: 20px;
    /* Disabled sparkle animation for performance */
    opacity: 0.8;
}

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

.hero-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.hero-section p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* Casino CTA Button */
.cta-button {
    background: linear-gradient(45deg, #00C853, #28A745, #FFD700, #FBC02D);
    background-size: 400% 400%;
    border: 2px solid #FFD700;
    color: #000000;
    font-size: 1.3rem;
    font-weight: 900;
    padding: 1rem 3rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 3px;
    /* Disabled box-shadow for performance */
    /* Disabled casino-gradient animation for performance */
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    /* Disabled hover box-shadow for performance */
    animation-duration: 2s;
    border-color: #FBC02D;
}

.cta-button:active {
    transform: translateY(-2px) scale(1.02);
}

@keyframes casino-gradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    25% {
        background-position: 100% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0% 100%;
    }
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .title {
        font-size: 2.5rem;
    }
    
    .hero-section h2 {
        font-size: 2rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
    
    .cta-button {
        font-size: 1.1rem;
        padding: 0.9rem 2.5rem;
    }
    
    .main-content {
        padding: 1rem;
    }
}

/* Special bonus image styling */
.bonus-image {
    width: 40em;
    height: 40em;
    border-radius: 1em;
    object-fit: cover;
    border: 2px solid #ffd700;
    /* Disabled box-shadow for performance */
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.bonus-image:hover {
    transform: scale(1.05);
    /* Disabled hover box-shadow for performance */
}

/* Image section */
.image-section {
    margin-top: 0;
    text-align: center;
}

@media (max-width: 480px) {
    .title {
        font-size: 2rem;
    }
    
    .subtitle {
        font-size: 1.1rem;
    }
    
    .hero-section h2 {
        font-size: 1.8rem;
    }
    
    .hero-section p {
        font-size: 1rem;
    }
    
    .bonus-image {
        width: 150px;
        height: 150px;
    }
} 