/* CSS Reset and Base Styles */
:root {
    --primary-gold: #D4AF37;
    --desert-sand: #C19A6B;
    --mystic-purple: #8B4F9F;
    --night-blue: #1A1A2E;
    --warm-orange: #FF8C42;
    --deep-brown: #4A3B2A;
    --light-sand: #F4E4BC;
    --glow-color: #FFD700;
    
    --font-primary: 'Cinzel', serif;
    --font-secondary: 'Poppins', sans-serif;
}

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

body {
    font-family: var(--font-secondary);
    background: linear-gradient(135deg, var(--night-blue) 0%, var(--deep-brown) 100%);
    color: var(--light-sand);
    overflow-x: hidden;
}

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

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

.navbar::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"><circle cx="50" cy="50" r="1" fill="%23FFD700" opacity="0.3"><animate attributeName="opacity" values="0.3;1;0.3" dur="2s" repeatCount="indefinite"/></circle></svg>');
    animation: fireflies 4s infinite linear;
    pointer-events: none;
}

@keyframes fireflies {
    0% { transform: translateX(-100px); }
    100% { transform: translateX(calc(100vw + 100px)); }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-logo {
    position: relative;
}

.logo-text {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-gold);
    text-shadow: 0 0 20px var(--glow-color);
    animation: glow-pulse 2s infinite ease-in-out;
}

@keyframes glow-pulse {
    0%, 100% { text-shadow: 0 0 20px var(--glow-color); }
    50% { text-shadow: 0 0 30px var(--glow-color), 0 0 40px var(--primary-gold); }
}

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

.nav-link {
    color: var(--light-sand);
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, var(--primary-gold) 0%, transparent 70%);
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    width: 100px;
    height: 100px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--night-blue);
    transform: translateY(-2px);
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        var(--night-blue) 0%, 
        var(--mystic-purple) 25%, 
        var(--deep-brown) 50%, 
        var(--desert-sand) 75%, 
        var(--primary-gold) 100%);
    background-size: 400% 400%;
    animation: desert-winds 8s ease-in-out infinite;
}

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

.desert-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, var(--primary-gold), transparent),
        radial-gradient(2px 2px at 40px 70px, var(--warm-orange), transparent),
        radial-gradient(1px 1px at 90px 40px, var(--light-sand), transparent);
    background-repeat: repeat;
    background-size: 100px 100px;
    animation: particle-float 6s linear infinite;
}

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

.mirage-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, 
        rgba(212, 175, 55, 0.3) 0%, 
        transparent 100%);
    animation: mirage-shimmer 3s ease-in-out infinite;
}

@keyframes mirage-shimmer {
    0%, 100% { opacity: 0.3; transform: scaleY(1); }
    50% { opacity: 0.6; transform: scaleY(1.1); }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    padding: 2rem;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.title-word {
    display: inline-block;
    margin: 0 0.2em;
    animation: word-glow 3s ease-in-out infinite;
}

.title-word.magical {
    color: var(--primary-gold);
    text-shadow: 0 0 30px var(--glow-color);
    animation: magical-pulse 2s ease-in-out infinite;
}

@keyframes magical-pulse {
    0%, 100% { 
        transform: scale(1);
        text-shadow: 0 0 30px var(--glow-color);
    }
    50% { 
        transform: scale(1.05);
        text-shadow: 0 0 50px var(--glow-color), 0 0 80px var(--primary-gold);
    }
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: var(--light-sand);
    line-height: 1.6;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-gold), var(--warm-orange));
    color: var(--night-blue);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

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

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.5s ease;
    transform: translate(-50%, -50%);
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.floating-lanterns {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.lantern {
    position: absolute;
    width: 20px;
    height: 30px;
    background: linear-gradient(to bottom, var(--primary-gold), var(--warm-orange));
    border-radius: 10px 10px 5px 5px;
    box-shadow: 0 0 20px var(--glow-color);
    animation: lantern-float 8s ease-in-out infinite;
}

.lantern-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.lantern-2 {
    top: 40%;
    right: 15%;
    animation-delay: 2s;
}

.lantern-3 {
    top: 60%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes lantern-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    33% { transform: translateY(-20px) rotate(5deg); }
    66% { transform: translateY(-10px) rotate(-5deg); }
}

/* Games Section */
.games-section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-family: var(--font-primary);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-gold);
    text-shadow: 0 0 20px var(--glow-color);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: var(--light-sand);
    opacity: 0.9;
}

.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.game-card {
    background: linear-gradient(145deg, rgba(74, 59, 42, 0.8), rgba(26, 26, 46, 0.8));
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    backdrop-filter: blur(10px);
}

.game-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary-gold), var(--mystic-purple), var(--warm-orange));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    padding: 2px;
    border-radius: 20px;
}

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

.game-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.3);
}

.game-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.game-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.game-card:hover .game-image img {
    transform: scale(1.1);
}

.game-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.game-card:hover .game-overlay {
    opacity: 1;
}

.floating-coins {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, var(--primary-gold) 3px, transparent 3px),
        radial-gradient(circle, var(--warm-orange) 2px, transparent 2px);
    background-size: 40px 40px, 60px 60px;
    animation: coins-float 3s linear infinite;
}

@keyframes coins-float {
    0% { transform: translateY(100%) rotate(0deg); }
    100% { transform: translateY(-100%) rotate(360deg); }
}

.magical-runes {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle, var(--mystic-purple) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: runes-glow 2s ease-in-out infinite;
}

@keyframes runes-glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.game-info {
    padding: 1.5rem;
}

.game-info h3 {
    font-family: var(--font-primary);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--primary-gold);
}

.game-info p {
    margin-bottom: 1rem;
    color: var(--light-sand);
    opacity: 0.9;
    line-height: 1.6;
}

.btn-play {
    background: linear-gradient(45deg, var(--primary-gold), var(--warm-orange));
    color: var(--night-blue);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-play::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 ease;
}

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

.btn-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Stats Section */
.stats-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(139, 79, 159, 0.1), rgba(212, 175, 55, 0.1));
}

.stats-box {
    background: linear-gradient(145deg, rgba(74, 59, 42, 0.9), rgba(26, 26, 46, 0.9));
    border-radius: 30px;
    padding: 3rem;
    text-align: center;
    border: 2px solid var(--primary-gold);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.stats-box h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-gold);
    text-shadow: 0 0 20px var(--glow-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 15px var(--glow-color);
}

.stat-label {
    font-size: 1rem;
    color: var(--light-sand);
    opacity: 0.9;
}

/* About Preview Section */
.about-preview {
    padding: 6rem 0;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
    text-shadow: 0 0 20px var(--glow-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--light-sand);
    opacity: 0.9;
}

.about-animation {
    height: 300px;
    position: relative;
    overflow: hidden;
}

.camel-caravan {
    position: absolute;
    width: 100%;
    height: 100%;
}

.camel {
    position: absolute;
    width: 60px;
    height: 40px;
    background: var(--desert-sand);
    border-radius: 50% 50% 20% 20%;
    animation: camel-walk 8s linear infinite;
}

.camel-1 {
    top: 30%;
    animation-delay: 0s;
}

.camel-2 {
    top: 50%;
    animation-delay: 2s;
}

.camel-3 {
    top: 70%;
    animation-delay: 4s;
}

@keyframes camel-walk {
    0% { left: -80px; }
    100% { left: calc(100% + 80px); }
}

/* Disclaimer Section */
.disclaimer {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(139, 79, 159, 0.2), rgba(74, 59, 42, 0.2));
}

.disclaimer-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 20px;
    border: 2px solid var(--primary-gold);
    backdrop-filter: blur(10px);
}

.disclaimer-content h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-gold);
    text-shadow: 0 0 15px var(--glow-color);
}

.disclaimer-content p {
    line-height: 1.8;
    color: var(--light-sand);
    opacity: 0.9;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--night-blue), var(--deep-brown));
    padding: 4rem 0 2rem;
    border-top: 2px solid var(--primary-gold);
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-primary);
    color: var(--primary-gold);
    margin-bottom: 1rem;
    text-shadow: 0 0 10px var(--glow-color);
}

.footer-section p {
    color: var(--light-sand);
    opacity: 0.9;
    line-height: 1.6;
}

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

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

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

.footer-section ul li a:hover {
    color: var(--primary-gold);
}

.torch {
    position: absolute;
    width: 15px;
    height: 40px;
    background: linear-gradient(to top, var(--deep-brown), var(--warm-orange));
    border-radius: 5px;
    box-shadow: 0 0 15px var(--warm-orange);
    animation: torch-flicker 2s ease-in-out infinite;
}

.torch-1 {
    top: 20px;
    right: 20px;
}

.torch-2 {
    bottom: 20px;
    left: 20px;
}

@keyframes torch-flicker {
    0%, 100% { 
        box-shadow: 0 0 15px var(--warm-orange);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 25px var(--warm-orange), 0 0 35px var(--primary-gold);
        transform: scale(1.1);
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--primary-gold);
    color: var(--light-sand);
    opacity: 0.8;
}

/* Page-specific Hero Sections */
.about-hero,
.why-choose-hero,
.games-hero,
.contact-hero,
.legal-hero {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, var(--night-blue) 0%, var(--mystic-purple) 50%, var(--deep-brown) 100%);
    position: relative;
    overflow: hidden;
}

.page-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    color: var(--primary-gold);
    text-shadow: 0 0 30px var(--glow-color);
    margin-bottom: 1rem;
    text-align: center;
}

.page-subtitle {
    font-size: 1.3rem;
    color: var(--light-sand);
    opacity: 0.9;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Page Styles */
.about-content-section {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px var(--glow-color);
}

.about-text h3 {
    font-family: var(--font-primary);
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin: 2rem 0 1rem;
}

.about-text p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--light-sand);
    opacity: 0.95;
}

.feature-list {
    list-style: none;
    margin: 1.5rem 0;
}

.feature-list li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--light-sand);
    opacity: 0.9;
}

.feature-list li::before {
    content: '✨';
    position: absolute;
    left: 0;
    color: var(--primary-gold);
}

.about-visual {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stats-showcase {
    background: linear-gradient(145deg, rgba(74, 59, 42, 0.8), rgba(26, 26, 46, 0.8));
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid var(--primary-gold);
    backdrop-filter: blur(10px);
}

.stats-showcase .stat-item {
    text-align: center;
    margin-bottom: 1.5rem;
}

.stats-showcase .stat-number {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.mission-box {
    background: linear-gradient(145deg, rgba(139, 79, 159, 0.2), rgba(255, 140, 66, 0.2));
    border: 2px solid var(--mystic-purple);
    border-radius: 20px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.mission-box h3 {
    font-family: var(--font-primary);
    color: var(--mystic-purple);
    margin-bottom: 1rem;
    text-shadow: 0 0 15px var(--mystic-purple);
}

.mission-box p {
    color: var(--light-sand);
    opacity: 0.9;
    line-height: 1.7;
}

/* Values Section */
.values-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(139, 79, 159, 0.1), rgba(212, 175, 55, 0.1));
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.value-card {
    background: linear-gradient(145deg, rgba(74, 59, 42, 0.8), rgba(26, 26, 46, 0.8));
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

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

.value-card h3 {
    font-family: var(--font-primary);
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.value-card p {
    color: var(--light-sand);
    opacity: 0.9;
    line-height: 1.6;
}

/* Why Choose Page Styles */
.why-choose-content {
    padding: 4rem 0;
}

.content-row {
    margin-bottom: 4rem;
}

.text-row .row-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.text-row h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    text-shadow: 0 0 20px var(--glow-color);
}

.text-row p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--light-sand);
    opacity: 0.95;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(145deg, rgba(74, 59, 42, 0.8), rgba(26, 26, 46, 0.8));
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

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

.feature-image {
    height: 200px;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.feature-content {
    padding: 1.5rem;
}

.feature-content h3 {
    font-family: var(--font-primary);
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-content p {
    color: var(--light-sand);
    opacity: 0.9;
    line-height: 1.6;
}

/* Advantages Section */
.advantages-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(139, 79, 159, 0.1), rgba(212, 175, 55, 0.1));
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.advantage-item {
    background: linear-gradient(145deg, rgba(74, 59, 42, 0.8), rgba(26, 26, 46, 0.8));
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.advantage-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

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

.advantage-item h3 {
    font-family: var(--font-primary);
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.advantage-item p {
    color: var(--light-sand);
    opacity: 0.9;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(139, 79, 159, 0.2), rgba(255, 140, 66, 0.2));
}

.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px var(--glow-color);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--light-sand);
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Games Page Styles */
.all-games-section {
    padding: 4rem 0;
}

.games-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.games-intro h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px var(--glow-color);
}

.games-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-sand);
    opacity: 0.95;
}

.game-card.featured {
    position: relative;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(45deg, var(--warm-orange), var(--mystic-purple));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(255, 140, 66, 0.3);
}

.game-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(212, 175, 55, 0.2);
    color: var(--primary-gold);
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* Gaming Benefits */
.gaming-benefits {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(139, 79, 159, 0.1), rgba(212, 175, 55, 0.1));
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.benefit-item {
    background: linear-gradient(145deg, rgba(74, 59, 42, 0.8), rgba(26, 26, 46, 0.8));
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
}

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

.benefit-item h3 {
    font-family: var(--font-primary);
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.benefit-item p {
    color: var(--light-sand);
    opacity: 0.9;
    line-height: 1.6;
}

/* Legal Pages Styles */
.legal-content {
    padding: 4rem 0;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(145deg, rgba(74, 59, 42, 0.9), rgba(26, 26, 46, 0.9));
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid var(--primary-gold);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.document-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--primary-gold);
}

.document-header h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    text-shadow: 0 0 20px var(--glow-color);
}

.last-updated {
    color: var(--light-sand);
    opacity: 0.8;
    font-style: italic;
}

.document-body h3 {
    font-family: var(--font-primary);
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    text-shadow: 0 0 10px var(--glow-color);
}

.document-body p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--light-sand);
    opacity: 0.95;
    text-align: justify;
}

/* Contact Page Styles */
.contact-content {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h2 {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px var(--glow-color);
}

.contact-methods {
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(145deg, rgba(74, 59, 42, 0.8), rgba(26, 26, 46, 0.8));
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
}

.method-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.method-info h3 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.method-info a {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
}

.method-info a:hover {
    text-decoration: underline;
}

.response-time {
    background: linear-gradient(145deg, rgba(139, 79, 159, 0.2), rgba(255, 140, 66, 0.2));
    border: 2px solid var(--mystic-purple);
    border-radius: 15px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.response-time h3 {
    color: var(--mystic-purple);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

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

.response-time li {
    margin-bottom: 0.75rem;
    padding-left: 1rem;
    position: relative;
}

.response-time li::before {
    content: '⚡';
    position: absolute;
    left: 0;
    color: var(--warm-orange);
}

.form-container {
    background: linear-gradient(145deg, rgba(74, 59, 42, 0.9), rgba(26, 26, 46, 0.9));
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid var(--primary-gold);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.form-container h2 {
    font-family: var(--font-primary);
    font-size: 2rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    text-shadow: 0 0 15px var(--glow-color);
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, rgba(139, 79, 159, 0.1), rgba(212, 175, 55, 0.1));
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: linear-gradient(145deg, rgba(74, 59, 42, 0.8), rgba(26, 26, 46, 0.8));
    border-radius: 15px;
    padding: 2rem;
    border: 2px solid rgba(212, 175, 55, 0.3);
    backdrop-filter: blur(10px);
}

.faq-item h3 {
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.faq-item p {
    line-height: 1.6;
    color: var(--light-sand);
    opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(26, 26, 46, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .games-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .legal-document {
        padding: 2rem;
    }

    .form-container {
        padding: 1.5rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}
/* Overall Section */
.contact-form-section {
    padding: 60px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    color: #f0f0f0;
    font-family: 'Segoe UI', sans-serif;
  }
  
  /* Container */
  .form-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  /* Headings */
  .form-container h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #ffffff;
  }
  
  .form-container p {
    font-size: 1rem;
    line-height: 1.5;
    color: #ccc;
  }
  
  /* Form Styles */
  .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
  }
  
  .form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #e0e0e0;
  }
  
  input[type="text"],
  input[type="email"],
  select,
  textarea {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 16px;
    border-radius: 12px;
    color: #ffffff;
    font-size: 1rem;
    transition: border 0.3s ease;
  }
  
  input:focus,
  select:focus,
  textarea:focus {
    border-color: #00ffd0;
    outline: none;
  }
  
  /* Checkbox Styles */
  .checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #ddd;
  }
  
  .checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #00ffd0;
  }
  
  /* Links inside checkbox */
  .checkbox-label a {
    color: #00ffd0;
    text-decoration: underline;
  }
  
  /* Submit Button */
  .submit-btn {
    display: inline-block;
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: #000;
    background: linear-gradient(to right, #00ffd0, #00b4d8);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s ease,  0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .submit-btn:hover {
    transform: translateY(-2px);
    background: linear-gradient(to right, #00ffd0, #28cfd7);
  }
  
  .btn-loading {
    display: none;
  }
  
  /* For future dynamic toggle (optional) */
  .submit-btn.loading .btn-text {
    display: none;
  }
  .submit-btn.loading .btn-loading {
    display: inline-block;
    color: #000;
  }
  