/* Reset and Base Styles */
html {
    width: 100%;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #FFD700;
    --secondary-gold: #FFA500;
    --dark-purple: #1a0b2e;
    --medium-purple: #2d1b4e;
    --light-purple: #4a2c7a;
    --accent-gold: #B8860B;
    --text-light: #ffffff;
    --text-dark: #333333;
    --shadow-gold: 0 0 20px rgba(255, 215, 0, 0.5);
    --shadow-purple: 0 0 20px rgba(74, 44, 122, 0.5);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 11, 46, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--primary-gold);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
    border-radius: 50%;
}

.logo-text {
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-gold);
}

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Menu */
@media (max-width: 768px) {
    .header {
        width: 100%;
        left: 0;
        right: 0;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--dark-purple);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        border-top: 2px solid var(--primary-gold);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .nav-link {
        font-size: 1.2rem;
        padding: 15px 20px;
        display: block;
        border-radius: 10px;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background: var(--medium-purple);
        transform: translateX(10px);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Adjust hero section for fixed header */
.hero {
    margin-top: 70px;
    padding-top: 50px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--medium-purple) 100%);
    min-height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-gold);
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
    color: var(--secondary-gold);
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-gold);
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    color: var(--dark-purple);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.7);
    background: linear-gradient(45deg, var(--secondary-gold), var(--primary-gold));
}

.btn-primary::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.5s;
}

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

.btn-secondary {
    background: linear-gradient(45deg, var(--light-purple), var(--medium-purple));
    color: var(--text-light);
    border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-purple);
    background: linear-gradient(45deg, var(--medium-purple), var(--light-purple));
}

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

.btn-outline:hover {
    background: var(--primary-gold);
    color: var(--dark-purple);
    transform: translateY(-3px);
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--medium-purple) 50%, var(--light-purple) 100%);
    position: relative;
    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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23FFD700" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text h1 {
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text h2 {
    font-size: 2.5rem;
    color: var(--secondary-gold);
    margin-bottom: 1.5rem;
    text-align: left;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.disclaimer {
    background: rgba(255, 215, 0, 0.1);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-gold);
  
}



/* Section Styles */
.about-game,
.features,
.how-to-play,
.testimonials,
.cta,
.newsletter {
    padding: 80px 0;
}

.about-game {
    background: var(--medium-purple);
}

.features {
    background: var(--dark-purple);
}

.how-to-play {
    background: var(--medium-purple);
}

.testimonials {
    background: var(--dark-purple);
}

.cta {
    background: var(--medium-purple);
}

.newsletter {
    background: var(--dark-purple);
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.text-content h2 {
    text-align: left;
    margin-bottom: 2rem;
}

.image-content img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-purple);
    transition: transform 0.3s ease;
}

.image-content img:hover {
    transform: scale(1.05);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

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

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

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

.features-image {
    text-align: center;
}

.features-image img {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-purple);
}

/* How to Play Steps */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.step {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--primary-gold);
    color: var(--dark-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.how-to-play-image {
    text-align: center;
}

.how-to-play-image img {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-purple);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
}

.testimonial-author strong {
    color: var(--primary-gold);
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 0.9rem;
}

.testimonials-image {
    text-align: center;
}

.testimonials-image img {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-purple);
}

/* Call to Action */
.cta-content {
    text-align: center;
}

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

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-image {
    text-align: center;
    margin-top: 30px;
}

.cta-image img {
    max-width: 600px;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-gold);
}

/* Newsletter Form */
.newsletter {
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 1rem;
}

.newsletter p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input[type="email"] {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input[type="email"]:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.form-group input[type="email"]::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.checkbox-group {
    text-align: left;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
    accent-color: var(--primary-gold);
}

.checkbox-label a {
    color: var(--primary-gold);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

/* Footer */
.footer {
    background: var(--dark-purple);
    padding: 60px 0 30px;
    border-top: 3px solid var(--primary-gold);
}

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

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

.footer-logo img,
.footer-logo-img {
    width: 150px;
    height: auto;
    margin-bottom: 1rem;
    opacity: 1 !important;
    transition: none !important;
}

.footer-banners img {
    opacity: 1 !important;
    transition: none !important;
}

.footer-text {
    color: var(--text-light);
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-gold);
}

.social-links a {
    color: var(--primary-gold);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--secondary-gold);
    transform: scale(1.2);
}

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

.age-badge,
.responsible-badge {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.age-badge:hover,
.responsible-badge:hover {
    transform: scale(1.1);
}

.responsible-gaming {
    display: flex;
    gap: 20px;
}

.footer-banners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    margin-top: 20px;
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.footer-banner {
    height: 60px;
    width: auto;
    border-radius: 8px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
    padding: 5px;
    object-fit: contain;
    max-width: 200px;
    min-height: 40px;
}

.footer-banner:hover {
    transform: scale(1.1);
    border-color: var(--primary-gold);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

/* Fallback for images that fail to load */
.footer-banner:not([src]), 
.footer-banner[src=""],
.footer-banner[src*="undefined"] {
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    color: var(--dark-purple);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.8rem;
    text-align: center;
    min-width: 120px;
}

/* Popup Styles */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.popup-content {
    background: var(--medium-purple);
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    border: 3px solid var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.popup-header {
    background: var(--dark-purple);
    padding: 20px;
    border-radius: 17px 17px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid var(--primary-gold);
}

.popup-header h3 {
    color: var(--primary-gold);
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: var(--primary-gold);
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-btn:hover {
    background: var(--primary-gold);
    color: var(--dark-purple);
}

.popup-body {
    padding: 30px;
}

/* Enhanced Slot Machine Demo */
.slot-machine {
    text-align: center;
    background: var(--dark-purple);
    padding: 30px;
    border-radius: 20px;
    border: 3px solid var(--primary-gold);
    box-shadow: var(--shadow-gold);
}

.game-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
    background: var(--medium-purple);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid var(--primary-gold);
}

.stat-item {
    text-align: center;
}

.stat-label {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.stat-value {
    display: block;
    color: var(--primary-gold);
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.reels-container {
    position: relative;
    margin-bottom: 30px;
}

.reels {
    display: flex;
    justify-content: center;
    gap: 15px;
    perspective: 1000px;
}

.reel {
    width: 80px;
    height: 300px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-gold);
    transform-style: preserve-3d;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #2a1a3a 0%, #1a0f2e 100%);
    border: 2px solid var(--primary-gold);
    border-radius: 10px;
    margin: 0 5px;
}

.reel.spinning {
    /* Remove the translateY animation that makes columns jump */
}

.reel.spinning .symbol {
    /* Add individual symbol animation for rotation effect */
    animation: symbolSpin 0.1s linear infinite;
}

.reel.spinning .symbol:nth-child(1) { animation-delay: 0s; }
.reel.spinning .symbol:nth-child(2) { animation-delay: 0.02s; }
.reel.spinning .symbol:nth-child(3) { animation-delay: 0.04s; }
.reel.spinning .symbol:nth-child(4) { animation-delay: 0.06s; }
.reel.spinning .symbol:nth-child(5) { animation-delay: 0.08s; }
.reel.spinning .symbol:nth-child(6) { animation-delay: 0.1s; }
.reel.spinning .symbol:nth-child(7) { animation-delay: 0.12s; }
.reel.spinning .symbol:nth-child(8) { animation-delay: 0.14s; }

@keyframes symbolSpin {
    0% { 
        transform: translateY(0px) scale(1) rotateY(0deg); 
        opacity: 1;
    }
    25% { 
        transform: translateY(-15px) scale(1.05) rotateY(90deg); 
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-30px) scale(1.1) rotateY(180deg); 
        opacity: 0.6;
    }
    75% { 
        transform: translateY(-45px) scale(1.05) rotateY(270deg); 
        opacity: 0.8;
    }
    100% { 
        transform: translateY(-60px) scale(1) rotateY(360deg); 
        opacity: 1;
    }
}

.symbol {
    font-size: 2.5rem;
    margin: 8px 0;
    transition: all 0.3s ease;
    filter: drop-shadow(0 0 5px var(--primary-gold));
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.symbol.winning {
    animation: winningSymbol 0.5s ease-in-out infinite alternate;
    filter: drop-shadow(0 0 15px var(--primary-gold)) brightness(1.5);
}

@keyframes winningSymbol {
    0% { transform: scale(1) rotate(0deg); }
    100% { transform: scale(1.2) rotate(5deg); }
}

@keyframes symbolGlow {
    from { filter: brightness(1) drop-shadow(0 0 5px var(--primary-gold)); }
    to { filter: brightness(1.5) drop-shadow(0 0 15px var(--primary-gold)); }
}

.win-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    transform: translateY(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

/* Add visual indicators for the win line position */
.reel::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 60px;
    border: 2px dashed rgba(255, 215, 0, 0.3);
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 5;
}

.win-line.show {
    opacity: 1;
    animation: winLineGlow 1s ease-in-out infinite alternate;
}

@keyframes winLineGlow {
    from { box-shadow: 0 0 10px var(--primary-gold); }
    to { box-shadow: 0 0 20px var(--primary-gold), 0 0 30px var(--primary-gold); }
}

.slot-controls {
    margin-bottom: 30px;
}

.control-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.control-row .btn {
    min-width: 120px;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.win-display {
    background: linear-gradient(145deg, var(--primary-gold), var(--secondary-gold));
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    border: 3px solid var(--dark-purple);
    box-shadow: var(--shadow-gold);
    display: none;
}

.win-display.show {
    display: block;
    animation: winDisplayShow 0.5s ease-out;
}

@keyframes winDisplayShow {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.win-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-purple);
    margin-bottom: 5px;
}

.win-multiplier {
    font-size: 1.2rem;
    color: var(--dark-purple);
    font-weight: 600;
}

.demo-note {
    background: rgba(255, 215, 0, 0.1);
    padding: 15px;
    border-radius: 10px;
    border-left: 4px solid var(--primary-gold);
    font-size: 0.9rem;
    text-align: left;
    color: var(--text-light);
}

/* Age Verification and Cookie Consent */
.age-popup-overlay,
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.age-popup-content,
.cookie-content {
    background: var(--medium-purple);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 3px solid var(--primary-gold);
    box-shadow: var(--shadow-gold);
    max-width: 500px;
    width: 90%;
}

.cookie-consent {
    bottom: 20px;
    top: auto;
    height: auto;
    background: transparent;
}

.cookie-content {
    background: var(--dark-purple);
    border: 2px solid var(--primary-gold);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
    }
    
    .hero-content,
    .section-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 60px 0;
        width: 100%;
    }
    
    .about-game,
    .features,
    .how-to-play,
    .testimonials,
    .cta,
    .newsletter {
        padding: 60px 0;
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer {
        width: 100%;
        left: 0;
        right: 0;
    }
    
    .footer-banners {
        width: 100%;
        margin: 20px 0;
        padding: 15px;
    }
    
    .popup-content {
        width: 95%;
        margin: 20px;
    }
    
    .reels {
        flex-direction: column;
        gap: 10px;
    }
    
    .reel {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
        width: 100%;
        max-width: 100%;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 1rem;
    }
    
    .popup-body {
        padding: 20px;
    }
    
    .age-popup-content,
    .cookie-content {
        padding: 30px 20px;
    }
    
    .hero,
    .about-game,
    .features,
    .how-to-play,
    .testimonials,
    .cta,
    .newsletter {
        width: 100%;
        padding: 40px 0;
    }
    
    .header,
    .footer {
        width: 100%;
        left: 0;
        right: 0;
    }
    
    .footer-banners {
        width: 100%;
        margin: 15px 0;
        padding: 10px;
    }
}

/* Win Message Animations */
@keyframes winMessageShow {
    from { 
        transform: translate(-50%, -50%) scale(0.8); 
        opacity: 0; 
    }
    to { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 1; 
    }
}

@keyframes winMessageHide {
    from { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 1; 
    }
    to { 
        transform: translate(-50%, -50%) scale(0.8); 
        opacity: 0; 
    }
}

/* Responsive Game Styles */
@media (max-width: 768px) {
    .game-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-item {
        padding: 10px;
    }
    
    .reels {
        gap: 10px;
    }
    
    .reel {
        min-width: 60px;
        height: 150px;
        padding: 10px 5px;
    }
    
    .symbol {
        font-size: 1.8rem;
        margin: 10px 0;
    }
    
    .control-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .control-row .btn {
        min-width: 100%;
        padding: 15px 20px;
        font-size: 1rem;
    }
    
    .win-display {
        padding: 15px;
    }
    
    .win-amount {
        font-size: 1.5rem;
    }
    
    .win-multiplier {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .reels {
        gap: 8px;
    }
    
    .reel {
        min-width: 50px;
        height: 120px;
        padding: 8px 3px;
    }
    
    .symbol {
        font-size: 1.5rem;
        margin: 8px 0;
    }
    
    .game-stats {
        padding: 15px;
    }
    
    .stat-value {
        font-size: 1.2rem;
    }
}
