/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #FFFFFF;
    background: linear-gradient(135deg, #311B92 0%, #FFB300 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

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

/* ===== CONTAINER & LAYOUT ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 15px 30px;
    border: none;
    border-radius: 14px;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD54F 0%, #FFB300 100%);
    color: #311B92;
    box-shadow: 0 8px 25px rgba(255, 213, 79, 0.4);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 213, 79, 0.6);
}

.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: rgba(0, 172, 193, 0.2);
    color: #FFFFFF;
    border: 2px solid #00ACC1;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(0, 172, 193, 0.4);
    transform: scale(1.05);
}

.btn-spin {
    font-size: 24px;
    padding: 20px 40px;
    background: linear-gradient(135deg, #FFD54F 0%, #FFB300 100%);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(49, 27, 146, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(255, 213, 79, 0.3);
    transition: all 0.3s ease;
}

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

.logo a {
    text-decoration: none;
    color: #FFD54F;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    text-shadow: 0 0 20px rgba(255, 213, 79, 0.5);
}

.nav-desktop ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-desktop a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"] {
    color: #FFD54F;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD54F;
    transition: width 0.3s ease;
}

.nav-desktop a:hover::after,
.nav-desktop a[aria-current="page"]::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #FFD54F;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(49, 27, 146, 0.98);
    backdrop-filter: blur(20px);
    z-index: 999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu nav ul {
    list-style: none;
    text-align: center;
}

.mobile-menu nav li {
    margin: 2rem 0;
}

.mobile-menu nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.mobile-menu nav a:hover {
    color: #FFD54F;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.2);
}

.hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(49, 27, 146, 0.8) 0%, rgba(255, 179, 0, 0.6) 100%);
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 213, 79, 0.2);
    border: 2px solid #FFD54F;
    border-radius: 25px;
    padding: 10px 20px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge span {
    color: #FFD54F;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(255, 213, 79, 0.5);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 30px rgba(255, 213, 79, 0.5); }
    to { text-shadow: 0 0 40px rgba(255, 213, 79, 0.8), 0 0 60px rgba(255, 213, 79, 0.3); }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #E0E0E0;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-disclaimer {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 1rem;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}

.hero-disclaimer p {
    font-size: 14px;
    color: #E0E0E0;
    margin: 0;
}

.hero-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

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

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

/* ===== FEATURES SECTION ===== */
.features {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #1A237E 0%, #311B92 100%);
}

.features-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.features-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.section-title {
    text-align: center;
    color: #FFD54F;
    margin-bottom: 3rem;
    text-shadow: 0 0 20px rgba(255, 213, 79, 0.3);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 213, 79, 0.1), transparent);
    transition: left 0.5s;
}

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

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 213, 79, 0.5);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: linear-gradient(135deg, #FFD54F 0%, #FFB300 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(255, 213, 79, 0.3);
}

.feature-icon img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

.feature-card h3 {
    color: #FFD54F;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #E0E0E0;
    font-size: 16px;
}

/* ===== GAME PREVIEW SECTION ===== */
.game-preview {
    position: relative;
    padding: 5rem 0;
    background: linear-gradient(135deg, #311B92 0%, #1A237E 100%);
}

.game-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.game-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.game-demo {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.slot-machine {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 213, 79, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.slot-reels {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
}

.reel {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.symbol {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #f0f0f0, #c0c0c0);
    border: 2px solid #FFD54F;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 0; /* Hide text content */
}

.symbol::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
}

.symbol:hover::before {
    transform: translateX(100%);
}

.symbol.spinning {
    animation: spin 0.5s linear infinite;
}

@keyframes spin {
    from { transform: rotateY(0deg); }
    to { transform: rotateY(360deg); }
}

.slot-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.credits-display {
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 213, 79, 0.3);
    color: #FFD54F;
    font-weight: 700;
}

.sound-toggle {
    background: rgba(0, 172, 193, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #00ACC1;
}

.game-info {
    text-align: center;
}

.game-info h3 {
    color: #FFD54F;
    margin-bottom: 1rem;
}

.game-info p {
    color: #E0E0E0;
    font-size: 18px;
}

/* ===== HOW TO PLAY SECTION ===== */
.how-to-play {
    padding: 5rem 0;
    background: linear-gradient(135deg, #1A237E 0%, #311B92 100%);
}

.instructions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.instruction-step {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 2rem;
    border-left: 4px solid #FFD54F;
    transition: all 0.3s ease;
}

.instruction-step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.instruction-step h3 {
    color: #FFD54F;
    margin-bottom: 1rem;
}

.instruction-step p {
    color: #E0E0E0;
    font-size: 16px;
    line-height: 1.7;
}

/* ===== CONTACT SECTION ===== */
.contact {
    padding: 5rem 0;
    background: linear-gradient(135deg, #311B92 0%, #1A237E 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info h3 {
    color: #FFD54F;
    margin-bottom: 1rem;
}

.contact-info p {
    color: #E0E0E0;
    margin-bottom: 2rem;
}

.contact-details {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #E0E0E0;
}

.contact-icon {
    font-size: 24px;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 14px;
    padding: 2rem;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #FFD54F;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    font-family: 'Lato', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FFD54F;
    box-shadow: 0 0 20px rgba(255, 213, 79, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    color: #E0E0E0;
    font-size: 14px;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: #FFD54F;
    text-decoration: none;
}

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

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #1A237E 0%, #000000 100%);
    padding: 3rem 0 1rem;
    border-top: 2px solid rgba(255, 213, 79, 0.3);
}

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

.footer-section h3,
.footer-section h4 {
    color: #FFD54F;
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section li {
    color: #E0E0E0;
    margin-bottom: 0.5rem;
}

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

.footer-section a {
    color: #E0E0E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #FFD54F;
}

.footer-description {
    font-size: 14px;
    line-height: 1.6;
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(255, 213, 79, 0.2);
    transform: scale(1.1);
}

.social-links img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.footer-banners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.banner-icon {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.banner-icon:hover {
    transform: scale(1.1);
}

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

.footer-copyright p,
.footer-developer p {
    color: #E0E0E0;
    font-size: 14px;
    margin: 0;
}

.footer-developer a {
    color: #FFD54F;
    text-decoration: none;
}

.footer-developer a:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .game-demo {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .instructions {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-logos {
        flex-direction: column;
        gap: 1rem;
    }
    
    .slot-controls {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .slot-reels {
        padding: 15px;
        gap: 8px;
    }
    
    .symbol {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }
}

/* ===== ACCESSIBILITY ===== */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for keyboard navigation */
.btn:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 3px solid #FFD54F;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #FFD54F;
        color: #000000;
    }
    
    .btn-secondary {
        background: #00ACC1;
        color: #FFFFFF;
    }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

[data-aos="fade-up"] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

[data-aos="fade-up"].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ===== UTILITY CLASSES ===== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }

.hidden { display: none; }
.visible { display: block; }

/* ===== PRINT STYLES ===== */
@media print {
    .header,
    .mobile-menu-toggle,
    .btn,
    .slot-machine,
    .contact-form {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero,
    .features,
    .game-preview,
    .how-to-play,
    .contact {
        background: white;
        color: black;
    }
}

/* ===== THANKS PAGE SPECIFIC STYLES ===== */
.thanks-hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.success-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

.success-badge svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: 32px 0;
    flex-wrap: wrap;
}

.thanks-actions .btn {
    min-width: 160px;
}

.disclaimer-box {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    padding: 24px;
    margin-top: 32px;
    backdrop-filter: blur(10px);
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.disclaimer-box ul {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
}

.disclaimer-box li {
    padding: 8px 0;
    position: relative;
    padding-left: 24px;
}

.disclaimer-box li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4CAF50;
    font-weight: bold;
    font-size: 18px;
}

.quick-links-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.quick-links-section h2 {
    text-align: center;
    margin-bottom: 48px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.quick-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.quick-link-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.quick-link-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 215, 79, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 215, 79, 0.2);
}

.quick-link-icon {
    font-size: 48px;
    margin-bottom: 16px;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 79, 0.3));
}

.quick-link-card h3 {
    color: #FFD54F;
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.quick-link-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Responsive adjustments for thanks page */
@media (max-width: 768px) {
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thanks-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .disclaimer-box {
        margin: 24px 16px;
        padding: 20px;
    }
    
    .quick-links-grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .success-badge {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .disclaimer-box {
        padding: 16px;
        margin: 20px 12px;
    }
    
    .quick-link-card {
        padding: 24px 20px;
    }
}

/* ===== PRIVACY PAGE SPECIFIC STYLES ===== */
.privacy-hero,
.terms-hero,
.gdpr-hero,
.contact-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.last-updated {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 24px;
    display: inline-block;
}

.privacy-content {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 48px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.content-wrapper h2 {
    color: #FFD54F;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin: 2.5rem 0 1.5rem 0;
    border-bottom: 2px solid rgba(255, 213, 79, 0.3);
    padding-bottom: 0.5rem;
}

.content-wrapper h2:first-child {
    margin-top: 0;
}

.content-wrapper h3 {
    color: #FFD54F;
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    margin: 2rem 0 1rem 0;
}

.content-wrapper p {
    color: #E0E0E0;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 16px;
}

.content-wrapper ul {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.content-wrapper li {
    color: #E0E0E0;
    line-height: 1.8;
    margin-bottom: 0.8rem;
    font-size: 16px;
}

.content-wrapper strong {
    color: #FFD54F;
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 24px;
    margin: 24px 0;
}

.contact-info p {
    margin-bottom: 12px;
}

.contact-info a {
    color: #00ACC1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #FFD54F;
}

/* Responsive adjustments for privacy page */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 32px 24px;
        margin: 0 16px;
    }
    
    .privacy-content {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 24px 20px;
        margin: 0 12px;
    }
    
    .privacy-content {
        padding: 40px 0;
    }
    
    .content-wrapper h2 {
        font-size: 1.6rem;
    }
    
    .content-wrapper h3 {
        font-size: 1.3rem;
    }
}

/* ===== CONTACT PAGE SPECIFIC STYLES ===== */
.contact-badges {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 32px;
    flex-wrap: wrap;
}

.contact-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(255, 215, 79, 0.3));
}

.contact-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.1);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h2,
.contact-form-container h2 {
    color: #FFD54F;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin-bottom: 32px;
    text-align: center;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.info-icon {
    font-size: 24px;
    filter: drop-shadow(0 2px 8px rgba(255, 215, 79, 0.3));
    flex-shrink: 0;
}

.info-content h3 {
    color: #FFD54F;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.info-content p {
    color: #FFFFFF;
    margin-bottom: 4px;
    font-weight: 500;
}

.info-content small {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

.response-time {
    margin-top: 32px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.response-time h3 {
    color: #FFD54F;
    margin-bottom: 16px;
    font-size: 1.3rem;
}

.response-time ul {
    list-style: none;
    padding: 0;
}

.response-time li {
    color: #E0E0E0;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.response-time li::before {
    content: "⏱";
    position: absolute;
    left: 0;
    color: #00ACC1;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.faq-section h2 {
    text-align: center;
    color: #FFD54F;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 48px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 24px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 215, 79, 0.3);
    transform: translateY(-2px);
}

.faq-item h3 {
    color: #FFD54F;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #E0E0E0;
    line-height: 1.6;
}

.faq-item a {
    color: #00ACC1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-item a:hover {
    color: #FFD54F;
}

/* Responsive adjustments for contact page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 16px;
    }
    
    .contact-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-form-container {
        padding: 32px 24px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        padding: 0 16px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-form-container {
        padding: 24px 20px;
    }
    
    .info-item {
        padding: 16px;
    }
    
    .faq-item {
        padding: 20px;
    }
}

/* ===== ENHANCED GAME PREVIEW SECTION ===== */
.game-preview-section {
    background: linear-gradient(135deg, rgba(49, 27, 146, 0.9), rgba(255, 179, 0, 0.8));
    background-image: url('/images/i6.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.game-preview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(49, 27, 146, 0.8), rgba(255, 179, 0, 0.7));
    z-index: 1;
}

.game-preview-section .container {
    position: relative;
    z-index: 2;
    max-width: 100%;
    overflow: hidden;
}

.game-demo {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 213, 79, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    max-width: 100%;
    overflow: hidden;
}

/* ===== ENHANCED SLOT MACHINE ===== */
.slot-machine {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 20px;
    padding: 30px;
    border: 3px solid #FFD54F;
    box-shadow: 
        0 0 30px rgba(255, 213, 79, 0.3),
        inset 0 0 30px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    max-width: 100%;
    box-sizing: border-box;
}

.slot-machine::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 213, 79, 0.1) 50%, transparent 70%);
    animation: lightSweep 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes lightSweep {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

/* Slot Header */
.slot-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(255, 213, 79, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 213, 79, 0.3);
}

.game-info {
    display: flex;
    gap: 20px;
}

.credits-display,
.total-win {
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 10px;
    border: 1px solid #FFD54F;
    color: #FFD54F;
    font-weight: bold;
    font-size: 14px;
    min-width: 120px;
    text-align: center;
}

.bet-controls {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.5);
    padding: 8px 16px;
    border-radius: 10px;
    border: 1px solid #00ACC1;
}

.bet-down,
.bet-up {
    background: #00ACC1;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bet-down:hover,
.bet-up:hover {
    background: #FFD54F;
    color: #1a1a2e;
    transform: scale(1.1);
}

.bet-amount {
    color: #00ACC1;
    font-weight: bold;
    font-size: 18px;
    min-width: 40px;
    text-align: center;
}

/* Reels Container */
.reels-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin: 30px 0;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    border-radius: 15px;
    border: 2px solid rgba(255, 213, 79, 0.2);
    max-width: 100%;
    box-sizing: border-box;
}

.reel {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 15px;
    background: linear-gradient(180deg, #2c3e50, #34495e);
    border-radius: 12px;
    border: 2px solid rgba(255, 213, 79, 0.3);
    transition: all 0.3s ease;
}

.reel.spinning {
    animation: reelSpin 0.5s linear infinite;
}

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

/* Enhanced Symbols with Icons */
.symbol {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #f0f0f0, #c0c0c0);
    border: 2px solid #FFD54F;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 0; /* Hide text content */
}

.symbol::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
}

.symbol:hover::before {
    transform: translateX(100%);
}

.symbol-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    position: relative;
}

/* Book of Gods Icon */
.book-icon::before {
    content: "📖";
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: bookGlow 2s ease-in-out infinite alternate;
}

@keyframes bookGlow {
    0% { filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(1); }
    100% { filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(1.2) drop-shadow(0 0 10px rgba(255, 213, 79, 0.5)); }
}

/* Anubis Icon */
.anubis-icon::before {
    content: "🐺";
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: anubisShadow 3s ease-in-out infinite;
}

@keyframes anubisShadow {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-2px) scale(1.05); }
}

/* Ra (Sun God) Icon */
.ra-icon::before {
    content: "☀️";
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: raSun 4s linear infinite;
}

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

/* Isis Icon */
.isis-icon::before {
    content: "🌙";
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: isisMoon 3s ease-in-out infinite alternate;
}

@keyframes isisMoon {
    0% { filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(1); }
    100% { filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(1.3) drop-shadow(0 0 15px rgba(155, 89, 182, 0.6)); }
}

/* Osiris Icon */
.osiris-icon::before {
    content: "🌱";
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: osirisGrowth 2s ease-in-out infinite;
}

@keyframes osirisGrowth {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Scarab Icon */
.scarab-icon::before {
    content: "🪲";
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: scarabRoll 2s ease-in-out infinite;
}

@keyframes scarabRoll {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

/* Eye of Horus Icon */
.eye-icon::before {
    content: "👁️";
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: eyeBlink 3s ease-in-out infinite;
}

@keyframes eyeBlink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

/* Ankh Icon */
.ankh-icon::before {
    content: "☥";
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: ankhPulse 2s ease-in-out infinite;
}

@keyframes ankhPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Wild Symbol Icon */
.wild-icon::before {
    content: "⚡";
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: wildLightning 1s ease-in-out infinite alternate;
}

@keyframes wildLightning {
    0% { 
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(1);
        transform: scale(1);
    }
    100% { 
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(1.5) drop-shadow(0 0 20px rgba(255, 255, 0, 0.8));
        transform: scale(1.1);
    }
}

/* Scatter Symbol Icon */
.scatter-icon::before {
    content: "💎";
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: scatterSparkle 2s ease-in-out infinite;
}

@keyframes scatterSparkle {
    0%, 100% { 
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(1);
        transform: rotate(0deg);
    }
    50% { 
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(1.4) drop-shadow(0 0 25px rgba(0, 255, 255, 0.6));
        transform: rotate(180deg);
    }
}

/* Symbol Types with Enhanced Backgrounds */
.symbol.book { 
    background: linear-gradient(145deg, #8B4513, #A0522D);
    box-shadow: 0 4px 8px rgba(139, 69, 19, 0.4);
}

.symbol.anubis { 
    background: linear-gradient(145deg, #2C3E50, #34495E);
    box-shadow: 0 4px 8px rgba(44, 62, 80, 0.4);
}

.symbol.ra { 
    background: linear-gradient(145deg, #F39C12, #E67E22);
    box-shadow: 0 4px 8px rgba(243, 156, 18, 0.4);
}

.symbol.isis { 
    background: linear-gradient(145deg, #9B59B6, #8E44AD);
    box-shadow: 0 4px 8px rgba(155, 89, 182, 0.4);
}

.symbol.osiris { 
    background: linear-gradient(145deg, #27AE60, #2ECC71);
    box-shadow: 0 4px 8px rgba(39, 174, 96, 0.4);
}

.symbol.scarab { 
    background: linear-gradient(145deg, #E74C3C, #C0392B);
    box-shadow: 0 4px 8px rgba(231, 76, 60, 0.4);
}

.symbol.eye { 
    background: linear-gradient(145deg, #3498DB, #2980B9);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.4);
}

.symbol.ankh { 
    background: linear-gradient(145deg, #F1C40F, #F39C12);
    box-shadow: 0 4px 8px rgba(241, 196, 15, 0.4);
}

.symbol.wild { 
    background: linear-gradient(145deg, #FFD700, #FFC107);
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.4);
}

.symbol.scatter { 
    background: linear-gradient(145deg, #00FFFF, #00E0E0);
    box-shadow: 0 4px 8px rgba(0, 255, 255, 0.4);
}

/* Enhanced Symbol Hover Effects */
.symbol:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 16px rgba(255, 213, 79, 0.4);
    border-color: #FFB300;
}

.symbol:hover .symbol-icon::before {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.5)) brightness(1.2);
}

/* Symbol Enter Animation Enhancement */
.symbol-enter .symbol-icon::before {
    animation: symbolIconEnter 0.6s ease-out;
}

@keyframes symbolIconEnter {
    0% { 
        transform: scale(0) rotate(180deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(90deg);
        opacity: 0.8;
    }
    100% { 
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
}

/* Winning Symbol Effects */
.symbol.winning {
    animation: winningSymbol 0.5s ease-in-out infinite alternate;
    border-color: #FFB300;
    box-shadow: 0 0 20px rgba(255, 213, 79, 0.8);
}

@keyframes winningSymbol {
    0% { 
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 213, 79, 0.8);
    }
    100% { 
        transform: scale(1.1);
        box-shadow: 0 0 30px rgba(255, 213, 79, 1);
    }
}

/* Paytable Symbol Icons */
.paytable-symbol .symbol-icon::before {
    font-size: 48px;
}

/* Responsive Icon Sizes */
@media (max-width: 768px) {
    .symbol-icon::before {
        font-size: 24px;
    }
    
    .paytable-symbol .symbol-icon::before {
        font-size: 36px;
    }
}

@media (max-width: 480px) {
    .symbol-icon::before {
        font-size: 20px;
    }
    
    .paytable-symbol .symbol-icon::before {
        font-size: 28px;
    }
}

/* ===== SLOT CONTROLS ===== */
.slot-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.control-group {
    display: flex;
    gap: 15px;
}

.sound-toggle,
.paytable-btn {
    background: rgba(0, 172, 193, 0.2);
    border: 2px solid #00ACC1;
    color: #00ACC1;
    padding: 12px;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sound-toggle:hover,
.paytable-btn:hover {
    background: #00ACC1;
    color: white;
    transform: scale(1.1);
}

.sound-toggle.muted {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.5);
}

.btn-spin {
    font-size: 24px;
    padding: 20px 40px;
    border-radius: 50px;
    background: linear-gradient(145deg, #FFD54F, #FFB300);
    border: none;
    color: #1a1a2e;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

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

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

.btn-spin:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 213, 79, 0.4);
}

.btn-spin:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.btn-spin.spinning {
    animation: spinPulse 1s ease-in-out infinite;
}

@keyframes spinPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.win-display {
    font-size: 18px;
    color: #FFD54F;
    font-weight: bold;
    text-align: center;
    min-height: 27px;
}

.win-display.winning {
    animation: winGlow 0.5s ease-in-out;
}

@keyframes winGlow {
    0%, 100% { text-shadow: 0 0 10px #FFD54F; }
    50% { text-shadow: 0 0 20px #FFD54F, 0 0 30px #FFD54F; }
}

/* ===== GAME FEATURES ===== */
.game-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 213, 79, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 213, 79, 0.2);
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.feature-icon {
    font-size: 24px;
    filter: drop-shadow(0 0 5px rgba(255, 213, 79, 0.5));
}

.feature-text {
    font-size: 14px;
    color: #FFD54F;
    font-weight: 500;
}

/* ===== GAME DISCLAIMER ===== */
.game-disclaimer {
    margin-top: 30px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.game-disclaimer p {
    margin: 8px 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

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

.paytable-modal.show {
    display: flex;
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.paytable-content {
    background: linear-gradient(145deg, #1a1a2e, #16213e);
    border-radius: 20px;
    padding: 40px;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    border: 3px solid #FFD54F;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    position: relative;
    box-sizing: border-box;
}

.close-paytable {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: #FFD54F;
    font-size: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-paytable:hover {
    color: #FFB300;
    transform: scale(1.1);
}

.paytable-content h3 {
    color: #FFD54F;
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.paytable-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.paytable-symbol {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 213, 79, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.paytable-symbol:hover {
    background: rgba(255, 213, 79, 0.1);
    border-color: #FFD54F;
    transform: translateY(-5px);
}

.paytable-symbol .symbol {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    font-size: 40px;
}

.symbol-name {
    color: #FFD54F;
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 16px;
}

.symbol-payouts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.symbol-payouts span {
    color: white;
    font-size: 14px;
    background: rgba(0, 0, 0, 0.3);
    padding: 5px 10px;
    border-radius: 8px;
    border: 1px solid rgba(255, 213, 79, 0.2);
}

.paytable-info {
    background: rgba(255, 213, 79, 0.1);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 213, 79, 0.3);
}

.paytable-info p {
    color: white;
    margin: 10px 0;
    font-size: 14px;
}

/* ===== WINNING ANIMATIONS ===== */
.win-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: linear-gradient(145deg, #FFD54F, #FFB300);
    color: #1a1a2e;
    padding: 30px 50px;
    border-radius: 20px;
    text-align: center;
    z-index: 1001;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.win-popup.show {
    transform: translate(-50%, -50%) scale(1);
}

.win-amount {
    font-size: 48px;
    font-weight: bold;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.win-text {
    font-size: 18px;
    font-weight: 500;
}

.lose-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px 40px;
    border-radius: 15px;
    text-align: center;
    z-index: 1001;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.lose-popup.show {
    transform: translate(-50%, -50%) scale(1);
}

.bonus-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    background: linear-gradient(145deg, #9B59B6, #8E44AD);
    color: white;
    padding: 30px 50px;
    border-radius: 20px;
    text-align: center;
    z-index: 1001;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.bonus-popup.show {
    transform: translate(-50%, -50%) scale(1);
}

.bonus-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.bonus-text {
    font-size: 24px;
    font-weight: bold;
}

/* ===== CONFETTI EFFECTS ===== */
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background: #FFD54F;
    z-index: 1000;
    animation: confettiFall 4s linear forwards;
}

@keyframes confettiFall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

/* ===== SCREEN FLASH ===== */
.screen-flash {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 213, 79, 0.3);
    z-index: 999;
    animation: flash 0.5s ease-out;
    pointer-events: none;
}

@keyframes flash {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .game-preview-section {
        background-attachment: scroll;
        padding: 60px 0;
        min-height: auto;
    }
    
    .game-preview-section .section-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .game-preview-section .section-subtitle {
        font-size: clamp(1rem, 3vw, 1.2rem);
        margin-bottom: 2rem;
    }
    
    .game-demo {
        padding: 20px;
        margin: 0 10px;
    }
    
    .slot-machine {
        padding: 20px;
        margin: 0;
        border-width: 2px;
    }
    
    .slot-header {
        flex-direction: column;
        gap: 15px;
        padding: 12px;
    }
    
    .game-info {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .credits-display,
    .total-win {
        min-width: auto;
        width: 100%;
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .bet-controls {
        width: 100%;
        justify-content: center;
        padding: 6px 12px;
    }
    
    .reels-container {
        gap: 8px;
        padding: 12px;
        margin: 20px 0;
    }
    
    .reel {
        padding: 10px;
    }
    
    .symbol {
        width: 45px;
        height: 45px;
    }
    
    .symbol-icon::before {
        font-size: 20px;
    }
    
    .slot-controls {
        gap: 15px;
        margin-top: 20px;
    }
    
    .control-group {
        gap: 10px;
    }
    
    .sound-toggle,
    .paytable-btn {
        width: 40px;
        height: 40px;
        font-size: 16px;
        padding: 8px;
    }
    
    .btn-spin {
        font-size: 20px;
        padding: 15px 30px;
        min-width: 160px;
    }
    
    .game-features {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
        margin-top: 20px;
    }
    
    .feature-item {
        gap: 6px;
    }
    
    .feature-icon {
        font-size: 20px;
    }
    
    .feature-text {
        font-size: 12px;
    }
    
    .paytable-content {
        margin: 15px;
        padding: 25px;
        max-height: 80vh;
        overflow-y: auto;
    }
    
    .paytable-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .paytable-symbol {
        padding: 15px;
    }
    
    .paytable-symbol .symbol-icon::before {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .game-preview-section {
        background-attachment: scroll;
        padding: 40px 0;
    }
    
    .game-preview-section .section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 0.8rem;
    }
    
    .game-preview-section .section-subtitle {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
        margin-bottom: 1.5rem;
    }
    
    .game-demo {
        padding: 0px;
        margin: 0 0px;
    }
    
    .slot-machine {
        padding: 15px 5px;
        border-width: 1px;
    }
    
    .slot-header {
        padding: 10px;
        gap: 12px;
    }
    
    .credits-display,
    .total-win {
        font-size: 11px;
        padding: 5px 10px;
    }
    
    .bet-controls {
        padding: 5px 10px;
    }
    
    .bet-down,
    .bet-up {
        width: 25px;
        height: 25px;
        font-size: 14px;
    }
    
    .bet-amount {
        font-size: 16px;
        min-width: 30px;
    }
    
    .reels-container {
        gap: 6px;
        padding: 10px;
        margin: 15px 0;
    }
    
    .reel {
        padding: 5px;
    }
    
    .symbol {
        width: 35px;
        height: 35px;
    }
    
    .symbol-icon::before {
        font-size: 16px;
    }
    
    .slot-controls {
        gap: 12px;
        margin-top: 15px;
    }
    
    .control-group {
        gap: 8px;
    }
    
    .sound-toggle,
    .paytable-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
        padding: 6px;
    }
    
    .btn-spin {
        font-size: 18px;
        padding: 12px 25px;
        min-width: 140px;
    }
    
    .win-display {
        font-size: 16px;
        min-height: 24px;
    }
    
    .game-features {
        padding: 12px;
        margin-top: 15px;
        gap: 12px;
    }
    
    .feature-icon {
        font-size: 18px;
    }
    
    .feature-text {
        font-size: 11px;
    }
    
    .paytable-content {
        margin: 10px;
        padding: 20px;
        max-height: 85vh;
    }
    
    .paytable-symbol {
        padding: 12px;
    }
    
    .paytable-symbol .symbol-icon::before {
        font-size: 28px;
    }
    
    .win-amount {
        font-size: 32px;
    }
    
    .bonus-text {
        font-size: 18px;
    }
    .banner-icon{
        height: 40px;
        
    }
}

@media (max-width: 360px) {
    .game-preview-section {
        background-attachment: scroll;
        padding: 30px 0;
    }
    
    .game-preview-section .section-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
        margin-bottom: 0.6rem;
    }
    
    .game-preview-section .section-subtitle {
        font-size: clamp(0.8rem, 5vw, 1rem);
        margin-bottom: 1.2rem;
    }
    
    .game-demo {
        padding: 10px;
        margin: 0 2px;
    }
    
    .slot-machine {
        padding: 10px;
    }
    
    .slot-header {
        padding: 8px;
        gap: 10px;
    }
    
    .credits-display,
    .total-win {
        font-size: 10px;
        padding: 4px 8px;
    }
    
    .bet-controls {
        padding: 4px 8px;
    }
    
    .bet-down,
    .bet-up {
        width: 22px;
        height: 22px;
        font-size: 12px;
    }
    
    .bet-amount {
        font-size: 14px;
        min-width: 25px;
    }
    
    .reels-container {
        gap: 4px;
        padding: 8px;
        margin: 12px 0;
    }
    
    .reel {
        padding: 6px;
    }
    
    .symbol {
        width: 30px;
        height: 30px;
    }
    
    .symbol-icon::before {
        font-size: 14px;
    }
    
    .slot-controls {
        gap: 10px;
        margin-top: 12px;
    }
    
    .control-group {
        gap: 6px;
    }
    
    .sound-toggle,
    .paytable-btn {
        width: 30px;
        height: 30px;
        font-size: 12px;
        padding: 5px;
    }
    
    .btn-spin {
        font-size: 16px;
        padding: 10px 20px;
        min-width: 120px;
    }
    
    .win-display {
        font-size: 14px;
        min-height: 20px;
    }
    
    .game-features {
        padding: 10px;
        margin-top: 12px;
        gap: 10px;
    }
    
    .feature-icon {
        font-size: 16px;
    }
    
    .feature-text {
        font-size: 10px;
    }
    
    .paytable-content {
        margin: 8px;
        padding: 15px;
        max-height: 90vh;
    }
    
    .paytable-symbol {
        padding: 10px;
    }
    
    .paytable-symbol .symbol-icon::before {
        font-size: 24px;
    }
}

/* Additional responsive improvements for very small screens */
@media (max-width: 320px) {
    .game-preview-section {
        background-attachment: scroll;
        padding: 25px 0;
    }
    
    .game-preview-section .section-title {
        font-size: clamp(1.1rem, 7vw, 1.5rem);
        margin-bottom: 0.5rem;
    }
    
    .game-preview-section .section-subtitle {
        font-size: clamp(0.7rem, 6vw, 0.9rem);
        margin-bottom: 1rem;
    }
    
    .game-demo {
        padding: 8px;
        margin: 0 1px;
    }
    
    .slot-machine {
        padding: 8px;
        border-width: 1px;
    }
    
    .slot-header {
        padding: 6px;
        gap: 8px;
    }
    
    .credits-display,
    .total-win {
        font-size: 9px;
        padding: 3px 6px;
    }
    
    .bet-controls {
        padding: 3px 6px;
    }
    
    .bet-down,
    .bet-up {
        width: 20px;
        height: 20px;
        font-size: 11px;
    }
    
    .bet-amount {
        font-size: 13px;
        min-width: 20px;
    }
    
    .reels-container {
        gap: 3px;
        padding: 6px;
        margin: 10px 0;
    }
    
    .reel {
        padding: 4px;
    }
    
    .symbol {
        width: 25px;
        height: 25px;
    }
    
    .symbol-icon::before {
        font-size: 12px;
    }
    
    .slot-controls {
        gap: 8px;
        margin-top: 10px;
    }
    
    .control-group {
        gap: 5px;
    }
    
    .sound-toggle,
    .paytable-btn {
        width: 25px;
        height: 25px;
        font-size: 11px;
        padding: 4px;
    }
    
    .btn-spin {
        font-size: 14px;
        padding: 8px 16px;
        min-width: 100px;
    }
    
    .win-display {
        font-size: 12px;
        min-height: 18px;
    }
    
    .game-features {
        padding: 8px;
        margin-top: 10px;
        gap: 8px;
    }
    
    .feature-icon {
        font-size: 14px;
    }
    
    .feature-text {
        font-size: 9px;
    }
    
    .paytable-content {
        margin: 6px;
        padding: 12px;
        max-height: 95vh;
    }
    
    .paytable-symbol {
        padding: 8px;
    }
    
    .paytable-symbol .symbol-icon::before {
        font-size: 20px;
    }
}

/* ===== ANCIENT MYSTERIES SECTION ===== */
.ancient-mysteries {
    padding: 100px 0;
    background: linear-gradient(135deg, #1A237E 0%, #311B92 100%);
    position: relative;
    overflow: hidden;
}

.ancient-mysteries::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="mystery-pattern" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23mystery-pattern)"/></svg>');
    opacity: 0.3;
}

.ancient-mysteries .section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.ancient-mysteries .content-left {
    padding-right: 40px;
}

.ancient-mysteries .section-title {
    color: #FFD54F;
    margin-bottom: 20px;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.ancient-mysteries .section-subtitle {
    font-size: 20px;
    color: #E1F5FE;
    margin-bottom: 40px;
    line-height: 1.6;
}

.mysteries-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.mystery-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.mystery-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 213, 79, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.mystery-icon {
    font-size: 2.5rem;
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFD54F 0%, #FFB300 100%);
    border-radius: 50%;
    color: #311B92;
    box-shadow: 0 8px 25px rgba(255, 213, 79, 0.3);
}

.mystery-content h3 {
    color: #FFD54F;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.mystery-content p {
    color: #E1F5FE;
    font-size: 16px;
    line-height: 1.6;
}

.ancient-mysteries .btn-secondary {
    background: rgba(255, 213, 79, 0.1);
    border-color: #FFD54F;
    color: #FFD54F;
    font-size: 18px;
    padding: 18px 35px;
}

.ancient-mysteries .btn-secondary:hover {
    background: rgba(255, 213, 79, 0.2);
    transform: scale(1.05);
}

.ancient-mysteries .content-right {
    position: relative;
}

.mystery-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.mystery-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 213, 79, 0.1), transparent);
    pointer-events: none;
}

.floating-symbols {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-symbols .symbol {
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
    opacity: 0.8;
}

.floating-symbols .symbol:nth-child(2) {
    animation-delay: 1s;
}

.floating-symbols .symbol:nth-child(3) {
    animation-delay: 2s;
}

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

/* ===== DIVINE REWARDS SECTION ===== */
.divine-rewards {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFB300 0%, #FF8F00 100%);
    position: relative;
    overflow: hidden;
}

.divine-rewards::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="rewards-pattern" x="0" y="0" width="25" height="25" patternUnits="userSpaceOnUse"><polygon points="12.5,0 15.4,9.5 25,9.5 17.5,15.4 20.4,25 12.5,19.1 4.6,25 7.5,15.4 0,9.5 9.6,9.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23rewards-pattern)"/></svg>');
    opacity: 0.2;
}

.divine-rewards .section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.divine-rewards .content-left {
    order: 1;
}

.divine-rewards .content-right {
    order: 2;
    padding-left: 40px;
}

.divine-rewards .section-title {
    color: #311B92;
    margin-bottom: 20px;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.divine-rewards .section-subtitle {
    font-size: 20px;
    color: #311B92;
    margin-bottom: 40px;
    line-height: 1.6;
    opacity: 0.9;
}

.rewards-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.reward-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.reward-feature:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.25);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.feature-number {
    font-size: 2rem;
    font-weight: 900;
    color: #311B92;
    background: rgba(255, 255, 255, 0.9);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-content h3 {
    color: #311B92;
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.feature-content p {
    color: #311B92;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
}

.divine-rewards .btn-primary {
    background: linear-gradient(135deg, #311B92 0%, #1A237E 100%);
    color: #FFFFFF;
    font-size: 18px;
    padding: 18px 35px;
    box-shadow: 0 8px 25px rgba(49, 27, 146, 0.4);
}

.divine-rewards .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(49, 27, 146, 0.6);
}

.rewards-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.rewards-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

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

.floating-rewards {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-rewards .reward {
    font-size: 2rem;
    animation: float-rewards 3s ease-in-out infinite;
    opacity: 0.9;
}

.floating-rewards .reward:nth-child(2) {
    animation-delay: 1s;
}

.floating-rewards .reward:nth-child(3) {
    animation-delay: 2s;
}

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

/* ===== RESPONSIVE DESIGN FOR NEW SECTIONS ===== */
@media (max-width: 768px) {
    .ancient-mysteries,
    .divine-rewards {
        padding: 60px 0;
    }
    
    .ancient-mysteries .section-content,
    .divine-rewards .section-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .ancient-mysteries .content-left {
        padding-right: 0;
        order: 1;
    }
    
    .ancient-mysteries .content-right {
        order: 2;
    }
    
    .divine-rewards .content-left {
        order: 2;
    }
    
    .divine-rewards .content-right {
        order: 1;
        padding-left: 0;
    }
    
    .mystery-item,
    .reward-feature {
        padding: 20px;
        gap: 15px;
    }
    
    .mystery-icon,
    .feature-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .mystery-content h3,
    .feature-content h3 {
        font-size: 1.25rem;
    }
    
    .mystery-content p,
    .feature-content p {
        font-size: 14px;
    }
    
    .ancient-mysteries .btn-secondary,
    .divine-rewards .btn-primary {
        width: 100%;
        padding: 16px 30px;
        font-size: 16px;
    }
    
    .floating-symbols,
    .floating-rewards {
        top: 15px;
        right: 15px;
        left: 15px;
        gap: 10px;
    }
    
    .floating-symbols .symbol,
    .floating-rewards .reward {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .ancient-mysteries,
    .divine-rewards {
        padding: 40px 0;
    }
    
    .ancient-mysteries .section-title,
    .divine-rewards .section-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .ancient-mysteries .section-subtitle,
    .divine-rewards .section-subtitle {
        font-size: 16px;
    }
    
    .mysteries-list,
    .rewards-features {
        gap: 20px;
    }
    
    .mystery-item,
    .reward-feature {
        padding: 15px;
        gap: 12px;
    }
    
    .mystery-icon,
    .feature-number {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .mystery-content h3,
    .feature-content h3 {
        font-size: 1.1rem;
    }
    
    .mystery-content p,
    .feature-content p {
        font-size: 13px;
    }
}
