@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;600;700&family=Nunito:wght@300;400;600;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ice-blue: #5dade2;
    --frost: #aed6f1;
    --deep-ice: #2980b9;
    --snow: #ecf0f1;
    --winter-dark: #34495e;
    --crystal: #d6eaf8;
    --glacier: #1b4f72;
}

body {
    font-family: 'Nunito', sans-serif;
    background: linear-gradient(135deg, var(--crystal) 0%, var(--snow) 50%, var(--frost) 100%);
    color: var(--winter-dark);
    line-height: 1.7;
    min-height: 100vh;
}

/* Split header design */
.header-wrapper {
    background: linear-gradient(90deg, var(--glacier), var(--deep-ice));
    padding: 0;
    box-shadow: 0 5px 20px rgba(41, 128, 185, 0.3);
}

.header-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    align-items: center;
}

.logo-area {
    background: var(--glacier);
    padding: 2rem;
    text-align: center;
}

.site-logo {
    font-family: 'Quicksand', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    display: block;
    text-shadow: 0 2px 10px rgba(93, 173, 226, 0.5);
}

.logo-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 0.5rem;
}

.menu-area {
    padding: 1.5rem;
}

.main-nav {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    transition: all 0.3s;
    background: rgba(255, 255, 255, 0.1);
}

.main-nav a:hover {
    background: var(--ice-blue);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    background: var(--ice-blue);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    margin: 1rem auto;
}

/* Content Styles */
.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

h1, h2, h3 {
    font-family: 'Quicksand', sans-serif;
    color: var(--deep-ice);
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--glacier);
    text-shadow: 2px 2px 4px rgba(93, 173, 226, 0.3);
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.8rem;
    margin: 1.5rem 0 1rem;
    font-weight: 600;
}

.frost-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 0 8px 30px rgba(93, 173, 226, 0.2);
    border: 1px solid var(--frost);
}

.ice-alert {
    background: linear-gradient(135deg, var(--deep-ice), var(--ice-blue));
    color: white;
    padding: 3rem;
    border-radius: 20px;
    margin: 2rem 0;
    box-shadow: 0 10px 40px rgba(41, 128, 185, 0.4);
}

.ice-alert h3 {
    color: white;
}

.ice-alert ul {
    list-style: none;
    margin-top: 1.5rem;
}

.ice-alert li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.ice-alert li::before {
    content: '❄️';
    position: absolute;
    left: 0;
}

.game-zone {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
    box-shadow: 0 10px 40px rgba(93, 173, 226, 0.25);
    border: 2px solid var(--ice-blue);
}

.game-zone iframe {
    border: none;
    border-radius: 15px;
    max-width: 100%;
    box-shadow: 0 5px 25px rgba(41, 128, 185, 0.3);
}

.text-block {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 0 8px 30px rgba(93, 173, 226, 0.2);
}

.text-block p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
}

.text-block ul, .text-block ol {
    margin-left: 2.5rem;
    margin-bottom: 1.5rem;
}

.text-block li {
    margin: 0.8rem 0;
}

.ice-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ice-blue), transparent);
    margin: 2rem 0;
}

/* Footer */
.footer-section {
    background: var(--glacier);
    color: white;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-flex {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-group h4 {
    font-family: 'Quicksand', sans-serif;
    color: var(--frost);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.footer-list {
    list-style: none;
}

.footer-list a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 0.4rem 0;
    transition: color 0.3s;
}

.footer-list a:hover {
    color: var(--frost);
}

.footer-end {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--frost);
}

/* Age Gate */
.age-gate {
    display: none;
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 79, 114, 0.97), rgba(41, 128, 185, 0.97));
    z-index: 5000;
}

.age-gate.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-gate-box {
    background: white;
    border-radius: 25px;
    padding: 3rem;
    max-width: 550px;
    margin: 1rem;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.age-gate-box h2 {
    color: var(--deep-ice);
    margin-bottom: 1rem;
}

.age-gate-box p {
    color: var(--winter-dark);
    margin-bottom: 1.5rem;
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}

.age-btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 25px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.age-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.btn-yes {
    background: var(--ice-blue);
    color: white;
}

.btn-no {
    background: var(--winter-dark);
    color: white;
}

/* Responsive */
@media (max-width: 968px) {
    .header-grid {
        grid-template-columns: 1fr;
    }

    .logo-area {
        padding: 1.5rem;
    }

    .site-logo {
        font-size: 2rem;
    }

    .mobile-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        gap: 0;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        border-radius: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .frost-card, .text-block, .game-zone {
        padding: 2rem 1.5rem;
    }
}
