* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ocean-blue: #0077BE;
    --deep-blue: #005A8F;
    --teal: #00A7A0;
    --light-teal: #00CCC0;
    --sky: #87CEEB;
    --cream: #F5F9FA;
    --white: #FFFFFF;
    --text-dark: #2C3E50;
    --text-gray: #546E7A;
}

body {
    font-family: 'Nunito', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.7;
}

.content-wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.brand-logo {
    width: 50px;
    height: 50px;
}

.brand-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--ocean-blue);
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-item {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 3px solid transparent;
    transition: all 0.3s;
}

.nav-item:hover,
.nav-item.active {
    color: var(--ocean-blue);
    border-bottom-color: var(--ocean-blue);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 28px;
    height: 3px;
    background: var(--ocean-blue);
    border-radius: 2px;
    transition: 0.3s;
}

/* Wave Divider */
.wave-divider {
    color: var(--ocean-blue);
    background: var(--white);
}

.wave-divider svg {
    display: block;
    width: 100%;
    height: 60px;
}

/* Welcome Section */
.welcome-section {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--teal) 100%);
    padding: 5rem 0;
    text-align: center;
    color: var(--white);
}

.welcome-section h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.welcome-intro {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* About Section */
.about-section {
    padding: 4rem 0;
}

.section-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ocean-blue);
    margin-bottom: 2rem;
    text-align: center;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-gray);
    font-size: 1.05rem;
}

.about-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    font-size: 8rem;
    color: var(--teal);
}

/* Keypoints Section */
.keypoints-section {
    padding: 4rem 0;
    background: var(--white);
}

.keypoint-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.keypoint-card {
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.keypoint-card.blue {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--deep-blue) 100%);
    color: var(--white);
}

.keypoint-card.teal {
    background: linear-gradient(135deg, var(--teal) 0%, var(--light-teal) 100%);
    color: var(--white);
}

.keypoint-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.keypoint-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.keypoint-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Game Section */
.game-section {
    padding: 4rem 0;
}

.section-subtext {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.game-wrapper {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 119, 190, 0.15);
    margin-bottom: 2rem;
}

.game-embed {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
}

.game-tips {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-left: 5px solid var(--teal);
}

.game-tips h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--ocean-blue);
    margin-bottom: 1rem;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    background: var(--cream);
    border-radius: 12px;
    transition: transform 0.3s;
}

.benefit-item:hover {
    transform: translateY(-3px);
}

.benefit-num {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--teal) 100%);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: var(--ocean-blue);
    margin-bottom: 0.75rem;
}

/* Responsible Gaming */
.responsible-gaming {
    padding: 4rem 0;
}

.responsible-content {
    max-width: 900px;
    margin: 0 auto;
}

.responsible-content p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.responsible-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.responsible-list li {
    padding: 1rem;
    margin: 1rem 0;
    background: var(--white);
    border-left: 4px solid var(--teal);
    border-radius: 5px;
    color: var(--text-gray);
}

/* Play Page */
.play-page-section {
    padding: 4rem 0;
}

.play-page-section h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    color: var(--ocean-blue);
    text-align: center;
    margin-bottom: 1rem;
}

.play-intro {
    text-align: center;
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.play-game-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 119, 190, 0.15);
    margin-bottom: 3rem;
}

.play-game-embed {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
}

.play-info h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: var(--ocean-blue);
    text-align: center;
    margin-bottom: 2rem;
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.info-box {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.info-box h3 {
    font-family: 'Poppins', sans-serif;
    color: var(--ocean-blue);
    margin-bottom: 1rem;
}

.info-box p {
    color: var(--text-gray);
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
    min-height: 60vh;
}

.legal-page h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    color: var(--ocean-blue);
    margin-bottom: 0.5rem;
}

.legal-date {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.legal-text {
    background: var(--white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.legal-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    color: var(--ocean-blue);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text p {
    margin-bottom: 1rem;
    color: var(--text-gray);
    line-height: 1.9;
}

.legal-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-text li {
    margin: 0.5rem 0;
    color: var(--text-gray);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--deep-blue) 100%);
    color: var(--white);
    margin-top: 4rem;
    position: relative;
}

.footer-wave {
    color: var(--cream);
    position: relative;
    top: -1px;
}

.footer-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

.footer-content {
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.footer-col h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin: 0.75rem 0;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    max-width: 1100px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* Age Verification */
.age-verify {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 90, 143, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.age-verify.hidden {
    display: none;
}

.verify-card {
    background: var(--white);
    max-width: 550px;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.verify-logo {
    margin-bottom: 1.5rem;
}

.verify-logo img {
    width: 80px;
    height: 80px;
}

.verify-card h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: var(--ocean-blue);
    margin-bottom: 1.5rem;
}

.verify-card p {
    color: var(--text-gray);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.verify-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-verify,
.btn-decline {
    font-family: 'Poppins', sans-serif;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-verify {
    background: linear-gradient(135deg, var(--ocean-blue) 0%, var(--teal) 100%);
    color: var(--white);
}

.btn-verify:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 119, 190, 0.4);
}

.btn-decline {
    background: #E0E0E0;
    color: var(--text-dark);
}

.btn-decline:hover {
    background: #D0D0D0;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        gap: 0;
        display: none;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav.active {
        display: flex;
    }

    .nav-item {
        padding: 1rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .welcome-section h1 {
        font-size: 2.5rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .game-embed {
        height: 400px;
    }

    .play-game-embed {
        height: 500px;
    }

    .verify-card {
        margin: 1rem;
        padding: 2rem;
    }

    .verify-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .welcome-section h1 {
        font-size: 2rem;
    }

    .game-embed {
        height: 300px;
    }

    .play-game-embed {
        height: 400px;
    }
}
