@import url('https://fonts.googleapis.com/css2?family=Aref+Ruqaa:wght@400;700&family=Amiri:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --desert-gold: #D97706;
    --sand: #F59E0B;
    --dark-sand: #92400E;
    --cream: #FEF3C7;
    --deep-blue: #1E40AF;
    --sky: #DBEAFE;
    --text-dark: #451A03;
    --oasis-green: #059669;
}

body {
    font-family: 'Amiri', serif;
    background: linear-gradient(to bottom, #FDE68A 0%, #FEF3C7 50%, #FCD34D 100%);
    background-attachment: fixed;
    color: var(--text-dark);
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to top, rgba(146, 64, 14, 0.3), transparent);
    pointer-events: none;
    z-index: 0;
}

/* Centered Navigation Bar */
.desert-nav {
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.95), rgba(245, 158, 11, 0.95));
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    box-shadow: 0 6px 25px rgba(146, 64, 14, 0.3);
    border-bottom: 4px solid var(--dark-sand);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.camel-brand {
    font-family: 'Aref Ruqaa', serif;
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.camel-icon {
    font-size: 3.5rem;
}

.nav-menu-list {
    display: flex;
    gap: 1rem;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-menu-list a {
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    padding: 0.75rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-menu-list a:hover,
.nav-menu-list a.active {
    background: white;
    color: var(--desert-gold);
    border-color: var(--dark-sand);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Mobile Menu Button */
.mobile-toggle {
    display: none;
    background: var(--dark-sand);
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Page Content */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    position: relative;
    z-index: 1;
}

/* Hero Banner */
.oasis-banner {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(254, 243, 199, 0.9));
    border: 4px solid var(--desert-gold);
    border-radius: 30px;
    padding: 4rem 3rem;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 15px 50px rgba(217, 119, 6, 0.3);
    position: relative;
    overflow: hidden;
}

.oasis-banner::before {
    content: '🌴';
    position: absolute;
    top: 1rem;
    left: 2rem;
    font-size: 3rem;
    opacity: 0.3;
}

.oasis-banner::after {
    content: '🌴';
    position: absolute;
    bottom: 1rem;
    right: 2rem;
    font-size: 3rem;
    opacity: 0.3;
}

.oasis-banner h1 {
    font-family: 'Aref Ruqaa', serif;
    font-size: 4.5rem;
    color: var(--desert-gold);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(146, 64, 14, 0.2);
}

.oasis-banner p {
    font-size: 1.5rem;
    color: var(--dark-sand);
    font-weight: 700;
}

/* Content Cards */
.dune-card {
    background: linear-gradient(to bottom, white, var(--cream));
    border: 3px solid var(--sand);
    border-radius: 25px;
    padding: 3rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 10px 35px rgba(217, 119, 6, 0.2);
}

.dune-card h2 {
    font-family: 'Aref Ruqaa', serif;
    font-size: 3rem;
    color: var(--desert-gold);
    margin-bottom: 2rem;
    border-bottom: 3px solid var(--sand);
    padding-bottom: 1rem;
}

.dune-card h3 {
    font-family: 'Aref Ruqaa', serif;
    font-size: 2rem;
    color: var(--dark-sand);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.dune-card p {
    font-size: 1.2rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.dune-card ul {
    list-style: none;
    padding: 0;
}

.dune-card ul li {
    padding: 1.2rem;
    padding-left: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--cream), white);
    border-left: 5px solid var(--desert-gold);
    border-radius: 15px;
    position: relative;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.dune-card ul li::before {
    content: '🐪';
    position: absolute;
    left: 1rem;
    font-size: 1.5rem;
}

/* Warning Box */
.desert-warning {
    background: linear-gradient(135deg, #FEE2E2, #FEF3C7);
    border: 4px solid #DC2626;
    border-radius: 20px;
    padding: 2.5rem;
    margin: 2.5rem 0;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.2);
}

.desert-warning h3 {
    font-family: 'Aref Ruqaa', serif;
    color: #991B1B;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.desert-warning p {
    color: #7C2D12;
    font-weight: 700;
    font-size: 1.15rem;
    line-height: 1.8;
}

/* Game Container */
.game-oasis {
    background: linear-gradient(135deg, var(--sky), var(--cream));
    border: 5px solid var(--deep-blue);
    border-radius: 30px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 15px 50px rgba(30, 64, 175, 0.3);
}

.game-oasis iframe {
    border: 3px solid var(--desert-gold);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Footer */
.desert-footer {
    background: linear-gradient(135deg, var(--dark-sand), var(--desert-gold));
    border-top: 5px solid var(--sand);
    padding: 3rem 2rem;
    margin-top: 4rem;
    color: white;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.desert-footer h3 {
    font-family: 'Aref Ruqaa', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.support-links {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.support-links a {
    color: white;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.support-links a:hover {
    background: white;
    color: var(--desert-gold);
    transform: scale(1.05);
}

.footer-disclaimer {
    margin-top: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Age Verification */
.age-checkpoint {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.age-checkpoint.active {
    display: flex;
}

.checkpoint-box {
    background: linear-gradient(135deg, var(--cream), white);
    border: 5px solid var(--desert-gold);
    border-radius: 30px;
    padding: 3rem;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 25px 70px rgba(217, 119, 6, 0.5);
}

.checkpoint-box h2 {
    font-family: 'Aref Ruqaa', serif;
    font-size: 3.5rem;
    color: var(--desert-gold);
    margin-bottom: 1rem;
}

.checkpoint-camel {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.checkpoint-box p {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.7;
    font-weight: 600;
}

.checkpoint-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.checkpoint-btn {
    font-family: 'Amiri', serif;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 1.2rem 3rem;
    border: 3px solid var(--desert-gold);
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm {
    background: var(--desert-gold);
    color: white;
}

.btn-confirm:hover {
    background: var(--dark-sand);
    transform: scale(1.05);
}

.btn-decline {
    background: #EF4444;
    color: white;
    border-color: #DC2626;
}

.btn-decline:hover {
    background: #DC2626;
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu-list {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0.5rem;
    }

    .nav-menu-list.show {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .camel-brand {
        font-size: 2rem;
    }

    .camel-icon {
        font-size: 2.5rem;
    }

    .oasis-banner {
        padding: 2.5rem 2rem;
    }

    .oasis-banner h1 {
        font-size: 2.8rem;
    }

    .oasis-banner p {
        font-size: 1.2rem;
    }

    .dune-card {
        padding: 2rem 1.5rem;
    }

    .dune-card h2 {
        font-size: 2.2rem;
    }

    .checkpoint-box {
        margin: 1rem;
        padding: 2rem;
    }

    .checkpoint-box h2 {
        font-size: 2.5rem;
    }

    .checkpoint-actions {
        flex-direction: column;
    }

    .checkpoint-btn {
        width: 100%;
    }

    .support-links {
        flex-direction: column;
        gap: 1rem;
    }
}
