@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ocean-blue: #006994;
    --teal: #00a8a8;
    --aqua: #00d4d4;
    --deep-sea: #003d5c;
    --sand: #f4e4c1;
    --wave: #66d9ef;
    --text-dark: #1a3a52;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(180deg, #e0f7fa 0%, #b2ebf2 50%, #80deea 100%);
    color: var(--text-dark);
    line-height: 1.7;
    min-height: 100vh;
}

/* Header Styles */
header {
    background: linear-gradient(90deg, var(--ocean-blue) 0%, var(--teal) 100%);
    padding: 0;
    box-shadow: 0 6px 30px rgba(0, 105, 148, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-bar {
    background: var(--deep-sea);
    padding: 0.5rem 2rem;
    text-align: center;
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
}

.header-main {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
    margin: 0 auto;
}

.logo {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--aqua) 0%, var(--wave) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transform: rotate(-5deg);
    box-shadow: 0 4px 20px rgba(0, 212, 212, 0.3);
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 1rem 1.8rem;
    display: block;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 1px;
    border-bottom: 3px solid transparent;
}

nav a:hover {
    background: rgba(255, 255, 255, 0.15);
    border-bottom: 3px solid var(--aqua);
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Main Content */
.main-wrapper {
    max-width: 1600px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--teal) 50%, var(--aqua) 100%);
    color: white;
    padding: 5rem 3rem;
    border-radius: 0;
    margin: -3rem -2rem 3rem -2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-banner::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 1200 120"><path d="M0,60 Q300,90 600,60 T1200,60 L1200,120 L0,120 Z" fill="rgba(255,255,255,0.1)"/></svg>') repeat-x bottom;
    background-size: 1200px 60px;
    opacity: 0.5;
}

.hero-banner h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    z-index: 1;
}

.hero-banner p {
    font-size: 1.3rem;
    opacity: 0.95;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Content Boxes */
.content-box {
    background: white;
    padding: 3rem;
    border-radius: 0;
    margin-bottom: 2rem;
    box-shadow: 0 8px 30px rgba(0, 105, 148, 0.15);
    border-left: 8px solid var(--teal);
}

.content-box h2 {
    color: var(--ocean-blue);
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.content-box h3 {
    color: var(--teal);
    font-size: 1.6rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

/* Alert Cards */
.alert-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2.5rem 0;
}

.alert-card {
    background: linear-gradient(135deg, #ffffff 0%, #e0f7fa 100%);
    padding: 2.5rem;
    border-radius: 0;
    border-top: 6px solid var(--ocean-blue);
    box-shadow: 0 6px 25px rgba(0, 105, 148, 0.12);
    transition: all 0.3s ease;
}

.alert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 105, 148, 0.2);
}

.alert-card h3 {
    margin-top: 0;
    font-size: 1.4rem;
    color: var(--ocean-blue);
}

.alert-card p {
    margin: 0;
    font-size: 1rem;
}

/* Game Section */
.game-section {
    background: white;
    padding: 3rem;
    margin: 3rem 0;
    box-shadow: 0 8px 30px rgba(0, 105, 148, 0.15);
    text-align: center;
}

.game-section h2 {
    color: var(--ocean-blue);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.game-section iframe {
    width: 100%;
    max-width: 1100px;
    height: 750px;
    border: 8px solid var(--ocean-blue);
    box-shadow: 0 10px 40px rgba(0, 105, 148, 0.2);
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--deep-sea) 0%, var(--ocean-blue) 100%);
    color: white;
    padding: 4rem 2rem 2rem;
    margin-top: 5rem;
}

.footer-wrap {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
}

.footer-wrap h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.resource-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 2rem 0 3rem;
    flex-wrap: wrap;
}

.resource-links a {
    color: var(--aqua);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border: 2px solid var(--aqua);
    border-radius: 5px;
}

.resource-links a:hover {
    background: var(--aqua);
    color: var(--deep-sea);
}

/* Age Modal */
.age-verification {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 61, 92, 0.95);
    z-index: 99999;
    justify-content: center;
    align-items: center;
}

.age-verification.show {
    display: flex;
}

.age-box {
    background: white;
    padding: 4rem 3rem;
    border-radius: 0;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 15px 60px rgba(0, 0, 0, 0.5);
    border-top: 10px solid var(--teal);
}

.age-box h2 {
    color: var(--ocean-blue);
    margin-bottom: 1.5rem;
    font-size: 2rem;
    text-transform: uppercase;
}

.age-box p {
    margin: 1rem 0;
}

.age-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.age-actions button {
    flex: 1;
    padding: 1.2rem 2rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-confirm {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--teal) 100%);
    color: white;
}

.btn-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 105, 148, 0.4);
}

.btn-decline {
    background: #e0e0e0;
    color: #666;
}

.btn-decline:hover {
    background: #d0d0d0;
}

/* Lists */
ul {
    padding-left: 2.5rem;
    margin: 1.5rem 0;
}

li {
    margin: 0.8rem 0;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--teal) 100%);
        padding: 6rem 0 2rem;
        transition: right 0.3s ease;
        z-index: 9999;
        overflow-y: auto;
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
    }

    nav a {
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hero-banner h1 {
        font-size: 2.2rem;
    }

    .hero-banner p {
        font-size: 1.1rem;
    }

    .content-box {
        padding: 2rem;
    }

    .alert-row {
        grid-template-columns: 1fr;
    }

    .game-section iframe {
        height: 550px;
    }

    .resource-links {
        flex-direction: column;
        gap: 1rem;
    }
}
