:root {
    --primary-gradient: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --secondary-gradient: linear-gradient(135deg, #ec4899 0%, #ef4444 100%);
    --dark-bg: #0a0f1d;
    --dark-card: #151a2d;
    --dark-border: #252b47;
    --dark-text: #e2e8f0;
    --dark-text-secondary: #94a3b8;
    --glow-primary: rgba(79, 70, 229, 0.6);
    --glow-secondary: rgba(124, 58, 237, 0.4);
}
body {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--dark-text);
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

.glass-effect {
    backdrop-filter: blur(10px);
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8) 0%, rgba(21, 26, 45, 0.9) 100%);
    border: 1px solid rgba(51, 65, 85, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.gradient-card {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #1e293b 100%);
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
    position: relative;
    overflow: hidden;
}

.gradient-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
    animation: shimmer 6s linear infinite;
}

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

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.glow-effect {
    position: relative;
    transition: all 0.3s ease;
}

.glow-effect::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--glow-primary), var(--glow-secondary));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.glow-effect:hover::before {
    opacity: 1;
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.gradient-shadow {
    box-shadow: 0 10px 40px rgba(79, 70, 229, 0.2), 0 0 80px rgba(124, 58, 237, 0.1);
}

.gradient-shadow:hover {
    box-shadow: 0 15px 60px rgba(79, 70, 229, 0.3), 0 0 120px rgba(124, 58, 237, 0.2);
}

.shine-element {
    position: relative;
    overflow: hidden;
}

.shine-element::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.pulse-gradient {
    background: linear-gradient(135deg, #4f46e5, #7c3aed, #ec4899);
    background-size: 300% 300%;
    animation: pulseGradient 4s ease infinite;
}

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

.neon-border {
    border: 2px solid transparent;
    background: linear-gradient(var(--dark-card), var(--dark-card)) padding-box,
                linear-gradient(135deg, #4f46e5, #7c3aed, #ec4899) border-box;
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.5);
}

.neon-border:hover {
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.8);
    animation: neonFlicker 1.5s infinite alternate;
}

@keyframes neonFlicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.metallic-gradient {
    background: linear-gradient(
        135deg,
        #667eea 0%,
        #764ba2 25%,
        #667eea 50%,
        #764ba2 75%,
        #667eea 100%
    );
    background-size: 200% 200%;
    animation: metallicShift 5s ease infinite;
}

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

.gradient-button {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.gradient-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.gradient-button:hover::before {
    width: 300px;
    height: 300px;
}

.gradient-button:active {
    transform: scale(0.98);
}

.parallax-gradient {
    background: linear-gradient(135deg, #1e293b, #334155);
    background-attachment: fixed;
    background-size: cover;
    position: relative;
}

.parallax-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
    animation: parallaxFloat 20s ease-in-out infinite;
}

@keyframes parallaxFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}
.star-rating {
    position: relative;
    display: inline-block;
}

.star-rating::before {
    content: '★★★★★';
    color: #e2e8f0;
}

.star-rating span {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
}

.star-rating span::before {
    content: '★★★★★';
    color: #fbbf24;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

.star-rating::before {
    color: #334155;
}

.star-rating span::before {
    color: #fbbf24;
}

.glass-effect {
    backdrop-filter: blur(10px);
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(51, 65, 85, 0.5);
}

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(var(--dark-card), var(--dark-bg));
    border-radius: 5px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 5px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    animation: scrollbarGlow 1s ease-in-out infinite;
}

@keyframes scrollbarGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(124, 58, 237, 0.5); }
    50% { box-shadow: 0 0 15px rgba(124, 58, 237, 0.8); }
}

.hover-gradient {
    position: relative;
    transition: all 0.3s ease;
}

.hover-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hover-gradient:hover::before {
    opacity: 1;
}

.hover-gradient:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(79, 70, 229, 0.2);
}

.gradient-border {
    position: relative;
    background: var(--dark-card);
    border-radius: 1rem;
    overflow: hidden;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed, #ec4899, #4f46e5);
    background-size: 400% 400%;
    border-radius: inherit;
    animation: gradientRotate 3s linear infinite;
    z-index: -1;
}

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

.twinkle-gradient {
    position: relative;
    overflow: hidden;
}

.twinkle-gradient::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: twinkle 2s infinite;
}

@keyframes twinkle {
    0% { left: -100%; }
    100% { left: 100%; }
}

.animated-gradient-text {
    background: linear-gradient(135deg, #e2e8f0, #818cf8, #c084fc, #e2e8f0);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: textGradient 5s ease infinite;
}

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

.casino-card-hover:hover {
    transform: translateY(-5px);
    transition: transform 0.3s ease;
}

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

.faq-item {
    transition: all 0.3s ease;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-content.open {
    max-height: 200px;
}

#casinoModal .dark-card {
    background: linear-gradient(135deg, #151a2d 0%, #1e293b 50%, #151a2d 100%);
    border: 1px solid rgba(79, 70, 229, 0.4);
    box-shadow: 0 25px 50px rgba(79, 70, 229, 0.3);
}

#casinoModal .dark-text {
    color: var(--dark-text);
}

#casinoModal .dark-text-secondary {
    color: var(--dark-text-secondary);
}

#casinoModal .star-rating::before {
    color: #334155;
}

#casinoModal .star-rating span::before {
    color: #fbbf24;
}

#casinoModal .bg-blue-100 {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(124, 58, 237, 0.2));
    border: 1px solid rgba(79, 70, 229, 0.3);
    color: #c084fc;
}

#casinoModal .text-blue-800 {
    color: #c084fc;
}

#casinoModal .bg-gray-50 {
    background: linear-gradient(135deg, rgba(21, 26, 45, 0.8), rgba(37, 43, 71, 0.8));
    border: 1px solid rgba(79, 70, 229, 0.2);
    color: var(--dark-text);
}

#casinoModal .text-gray-500 {
    color: #64748b;
}

#casinoModal .text-gray-600 {
    color: #94a3b8;
}

#casinoModal .text-gray-700 {
    color: #cbd5e1;
}

#casinoModal .text-green-500 {
    color: #10b981;
}

#casinoModal .border-t {
    border-color: rgba(79, 70, 229, 0.3);
}

#casinoModal .w-full.bg-gradient-to-r {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #ec4899 100%);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    border: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#casinoModal .w-full.bg-gradient-to-r:hover {
    background-position: 100% 100%;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.5);
}

#casinoModal .w-full.bg-gradient-to-r:active {
    transform: translateY(-1px) scale(1);
}

#casinoModal .w-full.bg-gradient-to-r::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

#casinoModal .w-full.bg-gradient-to-r:hover::before {
    width: 400px;
    height: 400px;
}

#casinoModal .w-full.bg-gradient-to-r i {
    color: white;
}