* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --sky-blue: #4A90E2;
    --cloud-white: #F0F4F8;
    --jet-black: #1A1A2E;
    --sunset-orange: #FF6B35;
    --altitude-gray: #6C757D;
    --vapor-trail: #E8F1F5;
    --runway-dark: #0F1419;
    --cockpit-red: #DC3545;
}

body {
    font-family: 'Saira', sans-serif;
    background: linear-gradient(180deg, #87CEEB 0%, #4A90E2 100%);
    color: var(--jet-black);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
}

.content-box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
}

/* Age Gate */
.age-gate {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.95) 0%, rgba(26, 26, 46, 0.95) 100%);
    backdrop-filter: blur(15px);
}

.age-gate-content {
    background: white;
    margin: 8% auto;
    padding: 50px;
    border-radius: 25px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 4px solid var(--sky-blue);
}

.cockpit-icon {
    font-size: 80px;
    margin-bottom: 25px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.age-gate-content h2 {
    color: var(--jet-black);
    margin-bottom: 20px;
    font-size: 36px;
}

.age-gate-content p {
    color: var(--altitude-gray);
    margin-bottom: 15px;
    font-size: 18px;
}

.age-question {
    font-size: 22px !important;
    font-weight: 600 !important;
    color: var(--jet-black) !important;
    margin-top: 25px !important;
}

.age-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 35px;
}

.btn-confirm, .btn-deny {
    padding: 18px 35px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
}

.btn-confirm {
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    color: white;
}

.btn-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(74, 144, 226, 0.4);
}

.btn-deny {
    background: white;
    color: var(--cockpit-red);
    border: 2px solid var(--cockpit-red);
}

.btn-deny:hover {
    background: var(--cockpit-red);
    color: white;
}

/* Navigation */
.main-nav {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--sky-blue);
    font-size: 28px;
    font-weight: 700;
    font-family: 'Rajdhani', sans-serif;
}

.plane-icon {
    font-size: 32px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 28px;
    height: 3px;
    background: var(--sky-blue);
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: var(--jet-black);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--sky-blue);
    transition: width 0.3s ease;
}

.nav-links a:hover::before,
.nav-links a.active::before {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--sky-blue);
}

/* Hero Banner */
.hero-banner {
    position: relative;
    min-height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(180deg, #87CEEB 0%, #4A90E2 100%);
    overflow: hidden;
}

.clouds {
    position: absolute;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 300"><ellipse cx="200" cy="100" rx="150" ry="50" fill="rgba(255,255,255,0.3)"/><ellipse cx="500" cy="150" rx="200" ry="60" fill="rgba(255,255,255,0.2)"/><ellipse cx="800" cy="80" rx="180" ry="55" fill="rgba(255,255,255,0.25)"/></svg>') repeat-x;
    animation: drift 60s linear infinite;
}

@keyframes drift {
    from { background-position: 0 0; }
    to { background-position: 1000px 0; }
}

.hero-text {
    position: relative;
    z-index: 2;
    max-width: 850px;
    padding: 50px 30px;
}

.main-heading {
    font-size: 64px;
    color: white;
    margin-bottom: 25px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.tagline {
    font-size: 22px;
    color: var(--cloud-white);
    margin-bottom: 35px;
    font-weight: 400;
}

.flight-button {
    display: inline-block;
    padding: 20px 50px;
    background: var(--sunset-orange);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.4);
    font-family: 'Rajdhani', sans-serif;
}

.flight-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.6);
}

/* Introduction Section */
.intro-section {
    padding: 90px 0;
    background: white;
}

.intro-card {
    background: linear-gradient(135deg, #F0F4F8 0%, #E8F1F5 100%);
    padding: 45px;
    border-radius: 20px;
    margin-bottom: 50px;
    border-left: 5px solid var(--sky-blue);
}

.intro-card h2 {
    color: var(--sky-blue);
    margin-bottom: 25px;
    font-size: 38px;
}

.intro-card p {
    color: var(--altitude-gray);
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 1.8;
}

.safety-briefing {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 45px;
}

.briefing-card {
    background: white;
    padding: 35px;
    border-radius: 18px;
    text-align: center;
    border: 3px solid;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.briefing-card.green-theme {
    border-color: #28A745;
}

.briefing-card.red-theme {
    border-color: var(--cockpit-red);
}

.briefing-card.yellow-theme {
    border-color: #FFC107;
}

.briefing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.briefing-icon {
    font-size: 55px;
    margin-bottom: 20px;
}

.briefing-card h3 {
    margin-bottom: 18px;
    font-size: 24px;
    color: var(--jet-black);
}

.briefing-card p {
    color: var(--altitude-gray);
    font-size: 16px;
    line-height: 1.7;
}

/* Game Zone */
.game-zone {
    padding: 90px 0;
    background: linear-gradient(180deg, #E8F1F5 0%, #D1E7F5 100%);
}

.section-heading {
    text-align: center;
    font-size: 44px;
    margin-bottom: 55px;
    color: var(--sky-blue);
}

.game-layout {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 45px;
    align-items: start;
}

.game-display {
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.game-window iframe {
    width: 100%;
    height: 650px;
    border-radius: 12px;
    border: 2px solid var(--sky-blue);
}

.game-details {
    background: white;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.game-details h3 {
    color: var(--sky-blue);
    margin-bottom: 18px;
    font-size: 26px;
}

.game-details p {
    color: var(--altitude-gray);
    margin-bottom: 25px;
    line-height: 1.7;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature {
    color: var(--altitude-gray);
    font-size: 15px;
    padding: 8px 0;
    border-left: 3px solid var(--sky-blue);
    padding-left: 15px;
}

/* Why Choose */
.why-choose {
    padding: 90px 0;
    background: white;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    margin-top: 45px;
}

.reason-box {
    background: linear-gradient(135deg, #F0F4F8 0%, #E8F1F5 100%);
    padding: 35px;
    border-radius: 18px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.reason-box:hover {
    transform: translateY(-8px);
    border-color: var(--sky-blue);
    box-shadow: 0 12px 30px rgba(74, 144, 226, 0.2);
}

.reason-icon {
    font-size: 55px;
    margin-bottom: 20px;
}

.reason-box h3 {
    color: var(--sky-blue);
    margin-bottom: 15px;
    font-size: 22px;
}

.reason-box p {
    color: var(--altitude-gray);
    font-size: 16px;
}

/* Responsible Gaming */
.responsible-gaming {
    padding: 70px 0;
    background: linear-gradient(135deg, #4A90E2 0%, #357ABD 100%);
    text-align: center;
}

.responsible-gaming h2 {
    color: white;
    margin-bottom: 25px;
    font-size: 38px;
}

.responsible-gaming p {
    color: var(--cloud-white);
    max-width: 850px;
    margin: 0 auto 22px;
    font-size: 18px;
    line-height: 1.8;
}

/* Play Area */
.play-area {
    padding: 70px 0;
    min-height: 100vh;
    background: linear-gradient(180deg, #E8F1F5 0%, #D1E7F5 100%);
}

.page-heading {
    text-align: center;
    font-size: 52px;
    margin-bottom: 18px;
    color: var(--sky-blue);
}

.page-description {
    text-align: center;
    color: var(--altitude-gray);
    font-size: 20px;
    margin-bottom: 45px;
}

.full-game-container {
    background: white;
    padding: 25px;
    border-radius: 20px;
    margin-bottom: 55px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.full-game-container iframe {
    width: 100%;
    height: 750px;
    border-radius: 12px;
    border: 2px solid var(--sky-blue);
}

.flight-instructions h2 {
    color: var(--sky-blue);
    margin-bottom: 35px;
    font-size: 36px;
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 28px;
}

.instruction-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-top: 4px solid var(--sky-blue);
}

.instruction-card h3 {
    color: var(--sky-blue);
    margin-bottom: 15px;
    font-size: 22px;
}

.instruction-card p {
    color: var(--altitude-gray);
    font-size: 16px;
    line-height: 1.7;
}

/* Legal Pages */
.legal-page {
    padding: 70px 0;
    min-height: 100vh;
    background: white;
}

.last-updated {
    text-align: center;
    color: var(--altitude-gray);
    font-style: italic;
    margin-bottom: 45px;
    font-size: 16px;
}

.legal-document {
    background: linear-gradient(135deg, #F0F4F8 0%, #E8F1F5 100%);
    padding: 55px;
    border-radius: 20px;
    max-width: 950px;
    margin: 0 auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.legal-document h2 {
    color: var(--sky-blue);
    margin-top: 35px;
    margin-bottom: 18px;
    font-size: 28px;
}

.legal-document h2:first-of-type {
    margin-top: 0;
}

.legal-document p {
    color: var(--altitude-gray);
    margin-bottom: 18px;
    line-height: 1.9;
    font-size: 16px;
}

.legal-document ul {
    color: var(--altitude-gray);
    margin-left: 30px;
    margin-bottom: 18px;
}

.legal-document ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.important-reminder {
    background: white;
    border-left: 5px solid var(--sky-blue);
    padding: 25px;
    margin-top: 35px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.important-reminder p {
    color: var(--jet-black);
    font-weight: 600;
    margin-bottom: 0;
}

.critical-notice {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
    border: 3px solid var(--cockpit-red);
    padding: 35px;
    border-radius: 18px;
    margin-bottom: 35px;
}

.critical-notice h2 {
    color: var(--cockpit-red);
    margin-top: 0;
}

.summary-points {
    list-style: none;
    margin: 25px 0;
}

.summary-points li {
    padding: 12px 0;
    font-size: 17px;
    color: var(--jet-black);
    font-weight: 600;
}

.final-warning {
    margin-top: 25px;
    font-weight: 700;
    color: var(--cockpit-red);
    font-size: 18px;
}

/* Footer */
.main-footer {
    background: var(--runway-dark);
    padding: 55px 0 25px;
    color: var(--cloud-white);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 45px;
    margin-bottom: 35px;
}

.footer-section h4 {
    color: var(--sky-blue);
    margin-bottom: 18px;
    font-size: 20px;
}

.footer-section p {
    color: var(--cloud-white);
    font-size: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--cloud-white);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: all 0.3s ease;
    font-size: 15px;
}

.footer-section a:hover {
    color: var(--sky-blue);
    padding-left: 8px;
}

.footer-base {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(240, 244, 248, 0.2);
    color: var(--altitude-gray);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 35px 0;
        gap: 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 18px 0;
    }

    .main-heading {
        font-size: 40px;
    }

    .tagline {
        font-size: 18px;
    }

    .game-layout {
        grid-template-columns: 1fr;
    }

    .game-window iframe {
        height: 450px;
    }

    .full-game-container iframe {
        height: 550px;
    }

    .age-gate-content {
        margin: 15% auto;
        padding: 35px 25px;
    }

    .age-gate-content h2 {
        font-size: 28px;
    }

    .legal-document {
        padding: 35px 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
}

@media (max-width: 480px) {
    .main-heading {
        font-size: 32px;
    }

    .section-heading {
        font-size: 32px;
    }

    .page-heading {
        font-size: 36px;
    }
}