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

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0a0a23 0%, #1a1a3e 25%, #2d1b69 50%, #1a1a3e 75%, #0a0a23 100%);
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

/* Animated Casino Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 85%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 85% 15%, rgba(255, 69, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.1) 0%, transparent 50%);
    animation: casinoGlow 25s ease-in-out infinite;
    z-index: -2;
}

@keyframes casinoGlow {
    0%, 100% { transform: translateX(0) translateY(0) rotate(0deg); }
    25% { transform: translateX(-30px) translateY(-20px) rotate(1deg); }
    50% { transform: translateX(30px) translateY(20px) rotate(-1deg); }
    75% { transform: translateX(-20px) translateY(30px) rotate(0.5deg); }
}

/* Floating casino elements */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(4px 4px at 25px 35px, rgba(255, 215, 0, 0.6), transparent),
        radial-gradient(3px 3px at 50px 80px, rgba(255, 69, 0, 0.4), transparent),
        radial-gradient(3px 3px at 100px 50px, rgba(138, 43, 226, 0.5), transparent),
        radial-gradient(2px 2px at 150px 90px, rgba(255, 215, 0, 0.4), transparent);
    background-repeat: repeat;
    background-size: 250px 250px;
    animation: casinoFloat 20s linear infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes casinoFloat {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-250px) rotate(360deg); }
}

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

/* Enhanced Header with Gaming Style */
.header {
    background: linear-gradient(135deg, rgba(10, 10, 35, 0.95), rgba(45, 27, 105, 0.95));
    backdrop-filter: blur(25px);
    box-shadow: 0 8px 40px rgba(255, 215, 0, 0.3), 0 0 100px rgba(138, 43, 226, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, #ffd700, #ff4500, #8a2be2, #ffd700) 1;
    transition: all 0.4s ease;
    min-height: 90px;
}

.header.scrolled {
    background: linear-gradient(135deg, rgba(10, 10, 35, 0.98), rgba(45, 27, 105, 0.98));
    box-shadow: 0 12px 50px rgba(255, 215, 0, 0.4), 0 0 120px rgba(138, 43, 226, 0.3);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 20px;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    position: relative;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(255, 69, 0, 0.2), rgba(138, 43, 226, 0.2));
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.logo-container:hover::before {
    opacity: 1;
}

.logo-icon {
    font-size: 3rem;
    background: linear-gradient(45deg, #ffd700, #ff4500, #8a2be2, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    animation: logoSpin 6s ease-in-out infinite;
    background-size: 300% 300%;
}

@keyframes logoSpin {
    0%, 100% { 
        transform: rotateY(0deg) scale(1); 
        background-position: 0% 50%;
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    }
    25% { 
        background-position: 100% 50%;
        filter: drop-shadow(0 0 25px rgba(255, 69, 0, 0.8));
    }
    50% { 
        transform: rotateY(180deg) scale(1.1); 
        background-position: 50% 100%;
        filter: drop-shadow(0 0 30px rgba(138, 43, 226, 0.8));
    }
    75% { 
        background-position: 0% 100%;
        filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.8));
    }
}

.logo-text h1 {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.8px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 215, 0, 0.5);
    margin-bottom: 0.3rem;
    background: linear-gradient(45deg, #ffffff, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline {
    color: #ffd700;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Enhanced Navigation */
.nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    flex-wrap: wrap;
    background: rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(15px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.nav a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s ease;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    border: 2px solid transparent;
    position: relative;
    white-space: nowrap;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    overflow: hidden;
}

.nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.nav a::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #ffd700, #ff4500, #8a2be2);
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.nav a:hover::before {
    left: 100%;
}

.nav a:hover::after {
    opacity: 0.3;
}

.nav a:hover {
    color: #ffffff;
    transform: translateY(-3px) scale(1.05);
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.8);
    border-color: #ffd700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

/* Age Warning with Casino Style */
.age-warning {
    background: linear-gradient(45deg, #dc2626, #ef4444, #f87171);
    color: white;
    text-align: center;
    padding: 1.2rem 0;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.4);
    border-bottom: 3px solid #fca5a5;
    position: relative;
    overflow: hidden;
}

.age-warning::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: warningShine 3s ease-in-out infinite;
}

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

/* Enhanced Hero Section */
.hero {
    background: 
        linear-gradient(135deg, rgba(10, 10, 35, 0.8), rgba(45, 27, 105, 0.8), rgba(138, 43, 226, 0.6)),
        radial-gradient(circle at 30% 70%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 69, 0, 0.2) 0%, transparent 50%);
    color: white;
    padding: 10rem 0;
    text-align: center;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><defs><radialGradient id="casino-bg"><stop offset="0%" stop-color="rgba(255,215,0,0.1)"/><stop offset="100%" stop-color="transparent"/></radialGradient></defs><rect width="1000" height="1000" fill="url(%23casino-bg)"/><circle cx="200" cy="200" r="6" fill="rgba(255,215,0,0.6)"/><circle cx="800" cy="300" r="4" fill="rgba(255,69,0,0.5)"/><circle cx="400" cy="600" r="5" fill="rgba(138,43,226,0.6)"/><circle cx="700" cy="800" r="6" fill="rgba(255,215,0,0.4)"/></svg>'),
        radial-gradient(circle at center, transparent 0%, rgba(10, 10, 35, 0.4) 100%);
    animation: heroBackground 30s ease-in-out infinite;
}

@keyframes heroBackground {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(2deg); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h2 {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 215, 0, 0.5);
    font-weight: 900;
    background: linear-gradient(45deg, #ffffff, #ffd700, #ff4500, #8a2be2, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 400% 400%;
    animation: heroTextGlow 8s ease-in-out infinite;
}

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

.hero-description {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    color: #e5e7eb;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Enhanced Game Preview */
.game-preview {
    margin: 4rem 0;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.casino-machine {
    background: linear-gradient(145deg, #2d1b69, #4c1d95, #6b21a8);
    border-radius: 30px;
    padding: 3rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 100px rgba(255, 215, 0, 0.3),
        inset 0 2px 10px rgba(255, 255, 255, 0.1);
    border: 4px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    animation: machineFloat 6s ease-in-out infinite;
}

@keyframes machineFloat {
    0%, 100% { transform: translateY(0) rotateX(0deg); }
    50% { transform: translateY(-10px) rotateX(2deg); }
}

.casino-machine::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, #ffd700, #ff4500, #8a2be2, #ffd700);
    border-radius: 30px;
    z-index: -1;
    animation: machineBorder 4s linear infinite;
}

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

.casino-machine::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 25px;
    animation: machineGlow 3s ease-in-out infinite alternate;
}

@keyframes machineGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.casino-reels {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.casino-reel {
    background: linear-gradient(145deg, #ffd700, #ffc107, #ff8f00);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    border-radius: 50%;
    box-shadow: 
        inset 0 4px 20px rgba(0, 0, 0, 0.3),
        0 8px 30px rgba(255, 215, 0, 0.4);
    animation: reelSpin 4s infinite ease-in-out;
    border: 4px solid #ffed4e;
    color: #1f2937;
    position: relative;
    overflow: hidden;
}

.casino-reel::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 30%;
    height: 30%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    animation: reelShine 2s ease-in-out infinite;
}

@keyframes reelShine {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

.casino-reel:nth-child(2) {
    animation-delay: 0.7s;
}

.casino-reel:nth-child(3) {
    animation-delay: 1.4s;
}

@keyframes reelSpin {
    0%, 70%, 100% { transform: rotateY(0deg) scale(1); }
    35% { transform: rotateY(180deg) scale(1.15); }
}

.casino-display {
    background: linear-gradient(145deg, #000000, #1a1a1a);
    color: #ffd700;
    padding: 1rem 2rem;
    border-radius: 20px;
    font-weight: bold;
    text-align: center;
    font-size: 1.3rem;
    border: 3px solid #ffd700;
    text-shadow: 0 0 15px #ffd700;
    box-shadow: 
        inset 0 2px 10px rgba(255, 215, 0, 0.2),
        0 5px 20px rgba(0, 0, 0, 0.5);
    animation: displayGlow 2s ease-in-out infinite alternate;
}

@keyframes displayGlow {
    0% { box-shadow: inset 0 2px 10px rgba(255, 215, 0, 0.2), 0 5px 20px rgba(0, 0, 0, 0.5); }
    100% { box-shadow: inset 0 2px 10px rgba(255, 215, 0, 0.4), 0 5px 30px rgba(255, 215, 0, 0.3); }
}

/* Enhanced CTA Button */
.cta-button {
    background: linear-gradient(45deg, #ffd700, #ff4500, #8a2be2, #ffd700);
    background-size: 300% 300%;
    color: #1f2937;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 1.6rem;
    font-weight: 900;
    border-radius: 60px;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 
        0 10px 30px rgba(255, 215, 0, 0.6),
        0 0 50px rgba(255, 69, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    animation: ctaGlow 3s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { 
        background-position: 0% 50%;
        box-shadow: 0 10px 30px rgba(255, 215, 0, 0.6), 0 0 50px rgba(255, 69, 0, 0.3);
    }
    50% { 
        background-position: 100% 50%;
        box-shadow: 0 15px 40px rgba(255, 69, 0, 0.7), 0 0 60px rgba(138, 43, 226, 0.4);
    }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 50px rgba(255, 215, 0, 0.8),
        0 0 80px rgba(255, 69, 0, 0.5);
    animation-duration: 1s;
}

/* Enhanced Main Content */
.main {
    background: transparent;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    border: none;
}

/* Enhanced Features Section */
.features {
    padding: 6rem 0;
    background: 
        linear-gradient(135deg, rgba(10, 10, 35, 0.6), rgba(45, 27, 105, 0.6)),
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    backdrop-filter: blur(15px);
    margin: 3rem 0;
    border-radius: 30px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="casino-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,215,0,0.1)"/><circle cx="5" cy="15" r="0.5" fill="rgba(255,69,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23casino-pattern)"/></svg>');
    opacity: 0.3;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(20px) translateY(20px); }
}

.features h3 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 4rem;
    color: #ffffff;
    font-weight: 900;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 215, 0, 0.5);
    background: linear-gradient(45deg, #ffffff, #ffd700, #ff4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 2;
}

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

.feature-card {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.15), rgba(255, 69, 0, 0.1), rgba(138, 43, 226, 0.1));
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.3),
        0 0 50px rgba(255, 215, 0, 0.2);
    transition: all 0.5s ease;
    border: 2px solid rgba(255, 215, 0, 0.4);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(255, 69, 0, 0.2), rgba(138, 43, 226, 0.2));
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 25px;
}

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

.feature-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    box-shadow: 
        0 25px 60px rgba(255, 215, 0, 0.4),
        0 0 80px rgba(255, 69, 0, 0.3);
    border-color: #ffd700;
}

.feature-icon {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    animation: iconFloat 4s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

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

.feature-card h4 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.feature-card p {
    color: #e5e7eb;
    line-height: 1.7;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

/* Enhanced Games Grid */
.games-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 5rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.game-card {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.15), rgba(255, 69, 0, 0.1), rgba(138, 43, 226, 0.1));
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(255, 215, 0, 0.2);
    transition: all 0.5s ease;
    border: 3px solid rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    transform-style: preserve-3d;
}

.game-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, #ffd700, #ff4500, #8a2be2, #ffd700);
    border-radius: 30px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
    animation: cardBorder 4s linear infinite;
}

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

.game-card:hover::before {
    opacity: 0.6;
}

.game-card:hover {
    transform: translateY(-15px) scale(1.03) rotateX(5deg);
    box-shadow: 
        0 30px 70px rgba(255, 215, 0, 0.5),
        0 0 100px rgba(255, 69, 0, 0.4);
}

.game-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    display: block;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.4));
    animation: gameIconSpin 6s ease-in-out infinite;
}

@keyframes gameIconSpin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(10deg) scale(1.1); }
}

.game-card h3 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}

.game-card p {
    color: #e5e7eb;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.play-button {
    background: linear-gradient(45deg, #ffd700, #ff4500, #8a2be2);
    background-size: 200% 200%;
    color: #1f2937;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 40px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
    font-size: 1.2rem;
    border: 3px solid #ffed4e;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: buttonGlow 3s ease-in-out infinite;
}

@keyframes buttonGlow {
    0%, 100% { 
        background-position: 0% 50%;
        box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    }
    50% { 
        background-position: 100% 50%;
        box-shadow: 0 8px 30px rgba(255, 69, 0, 0.5);
    }
}

.play-button:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.6);
    animation-duration: 1s;
}

/* Enhanced VIP Club Section */
.vip-club {
    background: linear-gradient(135deg, #1f2937, #374151, #4b5563);
    padding: 6rem 0;
    margin: 5rem 0;
    border-radius: 30px;
    border: 4px solid transparent;
    background-clip: padding-box;
    position: relative;
    overflow: hidden;
}

.vip-club::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, #ffd700, #ff4500, #8a2be2, #ffd700);
    border-radius: 30px;
    z-index: -1;
    animation: vipBorder 6s linear infinite;
}

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

.vip-club::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.15) 0%, transparent 70%);
    animation: vipGlow 4s ease-in-out infinite alternate;
}

@keyframes vipGlow {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.vip-club .container {
    position: relative;
    z-index: 2;
}

.vip-club h3 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 2.5rem;
    color: #ffd700;
    font-weight: 900;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7), 0 0 30px rgba(255, 215, 0, 0.6);
}

.vip-icon {
    text-align: center;
    font-size: 5rem;
    margin-bottom: 2.5rem;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
    animation: vipIconFloat 5s ease-in-out infinite;
}

@keyframes vipIconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-15px) rotate(5deg) scale(1.1); }
}

.vip-benefits {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.vip-benefits ul {
    list-style: none;
    padding: 0;
    margin: 3rem 0;
}

.vip-benefits li {
    padding: 1.2rem 0;
    color: #e5e7eb;
    font-size: 1.2rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.vip-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ff4500);
    transition: width 0.3s ease;
    transform: translateY(-50%);
}

.vip-benefits li:hover::before {
    width: 100%;
}

.vip-benefits li:hover {
    color: #ffd700;
    transform: translateX(10px);
}

.vip-benefits li:last-child {
    border-bottom: none;
}

.vip-cta {
    margin-top: 3rem;
}

/* Enhanced About Section */
.about-section {
    background: linear-gradient(135deg, rgba(10, 10, 35, 0.4), rgba(45, 27, 105, 0.4));
    backdrop-filter: blur(15px);
    padding: 4rem;
    border-radius: 30px;
    margin: 5rem 0;
    border: 2px solid rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 69, 0, 0.1) 0%, transparent 50%);
    animation: aboutGlow 8s ease-in-out infinite;
}

@keyframes aboutGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-features {
    background: rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 3rem 0;
    border: 2px solid rgba(255, 215, 0, 0.4);
}

.pricing-section {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.15), rgba(255, 69, 0, 0.1));
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 25px;
    margin: 4rem 0;
    border: 3px solid #ffd700;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.pricing-section h4 {
    color: #ffd700;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 800;
}

.price-list {
    display: grid;
    gap: 1.5rem;
    margin: 3rem 0;
}

.price-item {
    background: rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 15px;
    border-left: 6px solid #ffd700;
    color: #e5e7eb;
    font-weight: 600;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.price-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.6s;
}

.price-item:hover::before {
    left: 100%;
}

.price-item:hover {
    transform: translateX(10px) scale(1.02);
    background: rgba(255, 215, 0, 0.2);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.3);
}

.payment-security {
    background: linear-gradient(145deg, rgba(34, 197, 94, 0.15), rgba(16, 185, 129, 0.1));
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid #22c55e;
    color: #e5e7eb;
    font-weight: 600;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.2);
}

/* Enhanced Disclaimers */
.disclaimers {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 248, 220, 0.08), rgba(255, 215, 0, 0.05));
    backdrop-filter: blur(15px);
    border-radius: 30px;
    margin: 5rem 0;
    border: 2px solid rgba(255, 215, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.disclaimers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="warning-pattern" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="1" fill="rgba(255,215,0,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23warning-pattern)"/></svg>');
    opacity: 0.3;
}

.disclaimer-box {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.15), rgba(255, 193, 7, 0.1));
    padding: 3rem;
    border-radius: 25px;
    border-left: 8px solid #ffd700;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
}

.disclaimer-box h4 {
    color: #ffd700;
    margin-bottom: 2rem;
    font-size: 1.6rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.disclaimer-list {
    list-style: none;
}

.disclaimer-list li {
    padding: 1.2rem 0;
    font-size: 1.1rem;
    color: #e5e7eb;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    line-height: 1.7;
    transition: all 0.3s ease;
    position: relative;
}

.disclaimer-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ff4500);
    transition: width 0.3s ease;
    transform: translateY(-50%);
}

.disclaimer-list li:hover::before {
    width: 50px;
}

.disclaimer-list li:hover {
    color: #ffd700;
    transform: translateX(10px);
}

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

/* Enhanced Responsible Gaming */
.responsible-gaming {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(16, 185, 129, 0.1));
    backdrop-filter: blur(15px);
    text-align: center;
    border-radius: 30px;
    margin: 5rem 0;
    border: 3px solid rgba(34, 197, 94, 0.4);
    position: relative;
    overflow: hidden;
}

.responsible-gaming::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
    animation: responsibleGlow 6s ease-in-out infinite;
}

@keyframes responsibleGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.responsible-gaming h3 {
    color: #22c55e;
    margin-bottom: 3rem;
    font-size: 2.8rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.responsible-gaming p {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.3rem;
    color: #e5e7eb;
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

.help-resources {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.15), rgba(255, 193, 7, 0.1));
    padding: 3rem;
    border-radius: 25px;
    margin: 3rem auto;
    max-width: 700px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid #22c55e;
    backdrop-filter: blur(15px);
    position: relative;
    z-index: 2;
}

.help-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.help-links a {
    background: linear-gradient(45deg, #22c55e, #16a34a);
    color: white;
    padding: 1.2rem 2rem;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 700;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.help-links a:hover {
    background: linear-gradient(45deg, #16a34a, #15803d);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.6);
}

.responsible-link {
    color: #22c55e;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.responsible-link:hover {
    color: #16a34a;
    text-decoration: underline;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, #1f2937, #374151, #4b5563);
    color: #e5e7eb;
    padding: 5rem 0 2rem;
    border-top: 4px solid transparent;
    border-image: linear-gradient(90deg, #ffd700, #ff4500, #8a2be2, #ffd700) 1;
    margin-top: 5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 69, 0, 0.1) 0%, transparent 50%);
    animation: footerGlow 15s ease-in-out infinite;
}

@keyframes footerGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-section h4 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.footer-section ul li {
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(5px);
}

.footer-section a {
    color: #fbbf24;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
}

.footer-section a:hover {
    color: #ffd700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.footer-bottom {
    border-top: 2px solid rgba(255, 215, 0, 0.4);
    padding-top: 2.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.final-disclaimer {
    margin-top: 1.5rem;
    font-weight: bold;
    color: #ffd700;
    font-size: 1.1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

/* Enhanced Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(10, 10, 35, 0.98), rgba(45, 27, 105, 0.98));
    backdrop-filter: blur(25px);
    color: #e5e7eb;
    padding: 1.5rem 0;
    z-index: 1000;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.4s ease-in-out;
    border-top: 3px solid transparent;
    border-image: linear-gradient(90deg, #ffd700, #ff4500, #8a2be2, #ffd700) 1;
}

.cookie-banner.show {
    transform: translateY(0);
}
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 2rem;
    align-items: center;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;

.cookie-text {
    min-width: 0; /* Allow text to shrink */
}

.cookie-text p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
    font-weight: 600;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-shrink: 0;
}

.cookie-accept {
    background: linear-gradient(45deg, #22c55e, #16a34a);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-accept:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.5);
}

.cookie-decline {
    background: transparent;
    color: #fbbf24;
    border: 2px solid #fbbf24;
    padding: 1rem 2rem;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-decline:hover {
    background: #fbbf24;
    color: #1f2937;
    transform: translateY(-3px) scale(1.05);
}

.cookie-manage {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
    padding: 1rem 2rem;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-manage:hover {
    background: #ffd700;
    color: #1f2937;
    transform: translateY(-3px) scale(1.05);
}

.cookie-policy, .cookie-settings {
    color: #ffd700;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-policy:hover, .cookie-settings:hover {
    color: #ffed4e;
    text-decoration: underline;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Page-specific styles with gaming enhancement */
.page-header {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.95), rgba(255, 69, 0, 0.9), rgba(138, 43, 226, 0.85));
    color: #1f2937;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="header-coins" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><circle cx="12.5" cy="12.5" r="3" fill="rgba(31,41,55,0.2)"/><circle cx="6" cy="6" r="1" fill="rgba(31,41,55,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23header-coins)"/></svg>');
    opacity: 0.4;
    animation: headerPattern 20s linear infinite;
}

@keyframes headerPattern {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(25px) translateY(25px); }
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: #1f2937;
    text-shadow: 3px 3px 6px rgba(255, 255, 255, 0.4);
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.page-header p {
    color: #374151;
    font-size: 1.3rem;
    font-weight: 600;
}

.page-content {
    padding: 5rem 0;
}

/* Enhanced content sections */
.content-section {
    margin: 4rem 0;
    position: relative;
}

.section-title {
    color: #ffd700;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 800;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    background: linear-gradient(45deg, #ffd700, #ff4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    color: #e5e7eb;
    font-size: 1.3rem;
    line-height: 1.8;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 3rem;
    font-weight: 500;
}

.subsection-title {
    color: #fbbf24;
    font-size: 1.6rem;
    margin: 3rem 0 1.5rem;
    font-weight: 700;
}

/* Enhanced info boxes */
.info-box {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.15), rgba(255, 69, 0, 0.1));
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    margin: 3rem 0;
    border: 2px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);
    animation: infoGlow 6s ease-in-out infinite;
}

@keyframes infoGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.info-box h3, .info-box h4 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.info-box p {
    color: #e5e7eb;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
}

.info-box p:last-child {
    margin-bottom: 0;
}

/* Enhanced feature lists */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 1rem 0;
    color: #e5e7eb;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    line-height: 1.7;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ff4500);
    transition: width 0.3s ease;
    transform: translateY(-50%);
}

.feature-list li:hover::before {
    width: 60px;
}

.feature-list li:hover {
    color: #ffd700;
    transform: translateX(15px);
}

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

/* Enhanced warning lists */
.warning-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.warning-list li {
    padding: 1rem 0;
    color: #e5e7eb;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    line-height: 1.7;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.warning-list li::before {
    content: '⚠️';
    position: absolute;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.warning-list li:hover::before {
    opacity: 1;
}

.warning-list li:hover {
    color: #ffd700;
    transform: translateX(15px);
}

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

/* Enhanced VIP specific styles */
.vip-benefits-section {
    background: linear-gradient(135deg, rgba(10, 10, 35, 0.7), rgba(45, 27, 105, 0.7));
    backdrop-filter: blur(15px);
    padding: 4rem;
    border-radius: 30px;
    border: 3px solid #ffd700;
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.3);
}

.vip-join-section {
    background: linear-gradient(135deg, rgba(10, 10, 35, 0.7), rgba(45, 27, 105, 0.7));
    backdrop-filter: blur(15px);
    padding: 4rem;
    border-radius: 30px;
    border: 3px solid #ffd700;
    text-align: center;
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.3);
}

.benefits-list {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto;
}

.benefits-list li {
    padding: 1.2rem 0;
    color: #e5e7eb;
    font-size: 1.2rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    line-height: 1.7;
    transition: all 0.3s ease;
    position: relative;
}

.benefits-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ff4500);
    transition: width 0.3s ease;
    transform: translateY(-50%);
}

.benefits-list li:hover::before {
    width: 100%;
}

.benefits-list li:hover {
    color: #ffd700;
    transform: translateX(10px);
}

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

.tier-item {
    color: #e5e7eb;
    font-size: 1.3rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.tier-item:last-child {
    margin-bottom: 0;
}

.contact-email {
    color: #ffd700;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 2rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-section {
    margin-top: 3rem;
}

/* Enhanced support page styles */
.contact-section {
    background: linear-gradient(135deg, rgba(10, 10, 35, 0.4), rgba(45, 27, 105, 0.4));
    backdrop-filter: blur(15px);
    padding: 4rem 0;
    border-radius: 30px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.contact-card {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.15), rgba(255, 69, 0, 0.1));
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    border: 2px solid rgba(255, 215, 0, 0.4);
}

.contact-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #ffd700;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
    animation: contactIconFloat 4s ease-in-out infinite;
}

@keyframes contactIconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.faq-section {
    margin: 4rem 0;
}

.faq-item {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.15), rgba(255, 69, 0, 0.1));
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 20px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
}

.faq-question {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.25), rgba(255, 69, 0, 0.2));
    backdrop-filter: blur(15px);
    padding: 2rem;
    font-weight: bold;
    color: #ffd700;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    font-size: 1.2rem;
}

.faq-question:hover {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.35), rgba(255, 69, 0, 0.3));
    color: #ffed4e;
}

.faq-answer {
    padding: 2rem;
    color: #e5e7eb;
    line-height: 1.7;
    font-size: 1.1rem;
}

.additional-help {
    background: linear-gradient(135deg, rgba(10, 10, 35, 0.4), rgba(45, 27, 105, 0.4));
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.contact-details {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.15), rgba(255, 69, 0, 0.1));
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 15px;
    margin-top: 1.5rem;
    border: 3px solid #ffd700;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.contact-details p {
    color: #e5e7eb;
    margin: 0.8rem 0;
    font-size: 1.1rem;
}

/* Enhanced contact form styles */
.contact-form-section {
    background: linear-gradient(135deg, rgba(10, 10, 35, 0.4), rgba(45, 27, 105, 0.4));
    backdrop-filter: blur(15px);
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: 30px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.contact-form {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.15), rgba(255, 69, 0, 0.1));
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    margin: 0 auto;
    border: 2px solid rgba(255, 215, 0, 0.4);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: #ffd700;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 3px solid rgba(255, 215, 0, 0.4);
    border-radius: 12px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.1), rgba(255, 69, 0, 0.05));
    backdrop-filter: blur(15px);
    color: #e5e7eb;
    font-weight: 600;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.4);
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.15), rgba(255, 69, 0, 0.1));
}

.form-group textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    background: linear-gradient(45deg, #ffd700, #ff4500, #8a2be2);
    background-size: 200% 200%;
    color: #1f2937;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: submitGlow 3s ease-in-out infinite;
}

@keyframes submitGlow {
    0%, 100% { 
        background-position: 0% 50%;
        box-shadow: 0 8px 25px rgba(255, 215, 0, 0.5);
    }
    50% { 
        background-position: 100% 50%;
        box-shadow: 0 12px 35px rgba(255, 69, 0, 0.6);
    }
}

.submit-button:hover {
    transform: translateY(-3px) scale(1.02);
    animation-duration: 1s;
}

/* Enhanced quick links */
.quick-links {
    display: flex;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    min-width: 280px;
    margin-top: 2rem;
}

.quick-links .cta-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Enhanced help section */
.help-section {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(16, 185, 129, 0.1));
    backdrop-filter: blur(15px);
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: 30px;
    border: 2px solid rgba(34, 197, 94, 0.4);
}

/* Enhanced back to home */
.back-to-home {
    text-align: center;
    margin: 4rem 0;
}

/* Enhanced disclaimer highlight */
.disclaimer-highlight {
    color: #ffd700;
    font-size: 1.2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    font-weight: 700;
}

/* Enhanced VIP Tier Cards */
.tier-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.tier-card {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.15), rgba(255, 69, 0, 0.1), rgba(138, 43, 226, 0.1));
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    border: 3px solid rgba(255, 215, 0, 0.4);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
}

.tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.2), rgba(255, 69, 0, 0.2), rgba(138, 43, 226, 0.2));
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 25px;
}

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

.tier-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.4);
    border-color: #ffd700;
}

.tier-card.silver {
    border-color: rgba(192, 192, 192, 0.6);
}

.tier-card.silver:hover {
    border-color: #c0c0c0;
    box-shadow: 0 25px 60px rgba(192, 192, 192, 0.4);
}

.tier-card.gold {
    border-color: rgba(255, 215, 0, 0.6);
}

.tier-card.gold:hover {
    border-color: #ffd700;
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.5);
}

.tier-card.diamond {
    border-color: rgba(147, 51, 234, 0.6);
}

.tier-card.diamond:hover {
    border-color: #9333ea;
    box-shadow: 0 25px 60px rgba(147, 51, 234, 0.5);
}

.tier-card.elite {
    border-color: rgba(255, 215, 0, 0.9);
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.25), rgba(255, 69, 0, 0.2), rgba(138, 43, 226, 0.15));
}

.tier-card.elite:hover {
    border-color: #ffd700;
    box-shadow: 0 25px 60px rgba(255, 215, 0, 0.7);
}

.tier-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    animation: tierIconFloat 5s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes tierIconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-10px) rotate(5deg) scale(1.1); }
}

.tier-card h3 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 800;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.tier-card p {
    color: #e5e7eb;
    line-height: 1.7;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

/* Enhanced VIP Contact Info */
.contact-info {
    margin-top: 2rem;
    color: #e5e7eb;
    font-size: 1.1rem;
    font-weight: 500;
}

.support-link {
    color: #ffd700;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.support-link:hover {
    color: #ffed4e;
    text-decoration: underline;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Enhanced contact methods styling */
.contact-methods {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.15), rgba(255, 69, 0, 0.1));
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    margin-top: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.contact-methods p {
    margin: 1rem 0;
    color: #e5e7eb;
    font-size: 1.1rem;
}

.contact-methods a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.contact-methods a:hover {
    color: #ffed4e;
    text-decoration: underline;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* Enhanced accessibility section */
.accessibility-section {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(16, 185, 129, 0.1));
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid rgba(34, 197, 94, 0.4);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.2);
}

/* Enhanced Privacy Policy Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.right-card {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.15), rgba(255, 69, 0, 0.1));
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.right-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.2), transparent);
    transition: left 0.6s;
}

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

.right-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    border-color: #ffd700;
}

.right-card h4 {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.right-card p {
    color: #e5e7eb;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

.contact-note {
    text-align: center;
    margin-top: 2.5rem;
    padding: 1.5rem;
    background: linear-gradient(145deg, rgba(34, 197, 94, 0.15), rgba(16, 185, 129, 0.1));
    border-radius: 12px;
    border: 2px solid rgba(34, 197, 94, 0.4);
    color: #e5e7eb;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.2);
}

/* Enhanced Cookie Types Grid */
.cookie-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.cookie-type-card {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.15), rgba(255, 69, 0, 0.1));
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    border: 3px solid rgba(255, 215, 0, 0.4);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cookie-type-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3);
}

.cookie-type-card.essential {
    border-color: rgba(34, 197, 94, 0.6);
}

.cookie-type-card.essential:hover {
    border-color: #22c55e;
    box-shadow: 0 20px 50px rgba(34, 197, 94, 0.4);
}

.cookie-type-card.analytics {
    border-color: rgba(59, 130, 246, 0.6);
}

.cookie-type-card.analytics:hover {
    border-color: #3b82f6;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.4);
}

.cookie-type-card.preference {
    border-color: rgba(147, 51, 234, 0.6);
}

.cookie-type-card.preference:hover {
    border-color: #9333ea;
    box-shadow: 0 20px 50px rgba(147, 51, 234, 0.4);
}

.cookie-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3));
    animation: cookieIconFloat 4s ease-in-out infinite;
}

@keyframes cookieIconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(5deg); }
}

.cookie-type-card h4 {
    color: #ffd700;
    margin-bottom: 1.2rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.cookie-type-card p {
    color: #e5e7eb;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.cookie-status {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
}

.cookie-status.required {
    background: linear-gradient(45deg, #22c55e, #16a34a);
    color: white;
    grid-column: 1 / -1; /* Full width */
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}

.cookie-status.optional {
    background: linear-gradient(45deg, #3b82f6, #1d4ed8);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.cookie-control-info {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.15), rgba(255, 69, 0, 0.1));
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    margin-top: 3rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cookie-control-info p {
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.cookie-control-info .feature-list li {
    color: #e5e7eb;
    font-size: 1rem;
}

.free-play-note {
    color: #fbbf24;
    font-size: 1rem;
    margin-top: 1.5rem;
    font-style: italic;
    text-align: center;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.package-disclaimer {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid #ffc107;
    padding: 1.5rem;
    border-radius: 12px;
    margin: 1.5rem 0;
    color: #ffc107;
    font-weight: 600;
    text-align: center;
}
.virtual-only-notice {
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    color: #1a0033;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
    text-align: center;
    font-weight: bold;
    border: 2px solid #ffc107;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.virtual-rewards-notice {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    margin: 1.5rem 0;
    text-align: center;
    font-weight: bold;
    border: 2px solid #15803d;
    box-shadow: 0 4px 15px rgba(34, 197, 94, 0.3);
}



/* Enhanced Hero Features Section */
.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-feature-box {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.15), rgba(255, 69, 0, 0.1), rgba(138, 43, 226, 0.1));
    backdrop-filter: blur(15px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(255, 215, 0, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hero-feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 215, 0, 0.1), rgba(255, 69, 0, 0.1), rgba(138, 43, 226, 0.1));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.hero-feature-box:hover::before {
    opacity: 1;
}

.hero-feature-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.3);
    border-color: #ffd700;
}

.hero-feature-box h4 {
    color: #ffd700;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 2;
}

.hero-feature-box p {
    color: #e5e7eb;
    font-size: 0.95rem;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

/* Enhanced Resource Grid and Cards */
.resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.resource-card {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.15), rgba(255, 69, 0, 0.1));
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-left: 6px solid #22c55e;
    backdrop-filter: blur(15px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.resource-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(34, 197, 94, 0.2), transparent);
    transition: left 0.6s;
}

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

.resource-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.3);
    border-left-color: #16a34a;
}

.resource-card h3 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.resource-card p {
    color: #e5e7eb;
    line-height: 1.6;
    font-size: 1.05rem;
    position: relative;
    z-index: 2;
}

.resource-card a {
    color: #22c55e;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.resource-card a:hover {
    text-decoration: underline;
    color: #16a34a;
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

/* Enhanced Warning Box */
.warning-box {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.15), rgba(255, 193, 7, 0.1));
    border: 3px solid #ffd700;
    padding: 2.5rem;
    border-radius: 20px;
    margin: 3rem 0;
    backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.warning-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    animation: warningGlow 4s ease-in-out infinite;
}

@keyframes warningGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.7; }
}

.warning-box h2,
.warning-box h3 {
    color: #ffd700;
    margin-bottom: 1.5rem;
    font-weight: 800;
    position: relative;
    z-index: 2;
}

.warning-box ul,
.warning-box p {
    color: #e5e7eb;
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    line-height: 1.7;
}

.vip-disclaimer {
    color: #c4b5fd;
    font-style: italic;
    margin-top: 1rem;
    text-align: center;
}

.refund-policy-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.refund-policy-box p {
    margin: 0.8rem 0;
}

.cookie-technical-note {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1rem;
    border-left: 4px solid #28a745;
}

/* Responsive Design Enhancements */
@media (max-width: 768px) {
    .header .container {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
    
    .nav {
        justify-content: center;
        gap: 0.3rem;
        width: 100%;
        padding: 0.6rem 1rem;
    }
    
    .nav a {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero {
        padding: 6rem 0;
        min-height: 70vh;
    }
    
    .hero-content h2 {
        font-size: 2.8rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .casino-reels {
        gap: 1rem;
    }
    
    .casino-reel {
        width: 80px;
        height: 80px;
        font-size: 2.8rem;
    }
    
    .features h3,
    .vip-club h3 {
        font-size: 2.8rem;
    }
    
    .games-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .help-links {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-content {
        flex-direction: column;
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .cookie-buttons {
        flex-wrap: wrap;
        grid-template-columns: 1fr;
        min-width: auto;
        width: 100%;
    }
    
    .cookie-accept {
        grid-column: 1;
    }
        gap: 1rem;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tier-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cookie-types-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

@media (max-width: 1024px) {
    .nav {
        gap: 0.8rem;
    }
    
    .nav a {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .hero-content h2 {
        font-size: 3.8rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .header .container {
        padding: 1rem 15px;
    }
    
    .nav {
        gap: 0.3rem;
        padding: 0.5rem 0.8rem;
    }
    
    .nav a {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero-content h2 {
        font-size: 2.2rem;
    }
    
    .cta-button {
        padding: 1.2rem 2rem;
        font-size: 1.4rem;
    }
    
    .features,
    .vip-club,
    .disclaimers,
    .responsible-gaming {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .casino-machine {
        padding: 2rem;
    }
    
    .casino-reel {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }
}