* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ocean-blue: #0EA5E9;
    --ocean-deep: #0284C7;
    --ocean-dark: #0C4A6E;
    --ocean-light: #7DD3FC;
    --teal: #14B8A6;
    --coral: #FB923C;
    --sand: #FEF3C7;
    --white: #FFFFFF;
    --cream: #FFFBEB;
    --gray-light: #F1F5F9;
    --gray-medium: #94A3B8;
    --gray-dark: #334155;
    --text-dark: #1E293B;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #F0F9FF 0%, #E0F2FE 100%);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.95) 0%, rgba(20, 184, 166, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.age-gate-overlay.active {
    opacity: 1;
    visibility: visible;
}

.age-gate-container {
    background: var(--white);
    border-radius: 24px;
    padding: 48px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.wave-circle {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3);
}

.age-text {
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
}

.ocean-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
}

.age-description {
    font-size: 16px;
    color: var(--gray-dark);
    margin-bottom: 32px;
}

.age-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 24px;
}

.ocean-btn {
    padding: 14px 32px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.ocean-btn.confirm {
    background: linear-gradient(135deg, var(--ocean-blue), var(--teal));
    color: var(--white);
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.4);
}

.ocean-btn.confirm:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(14, 165, 233, 0.5);
}

.ocean-btn.deny {
    background: var(--gray-light);
    color: var(--gray-dark);
}

.ocean-btn.deny:hover {
    background: #E2E8F0;
}

.age-footer {
    font-size: 14px;
    color: var(--gray-medium);
}

.main-content {
    opacity: 1;
    transition: opacity 0.4s ease;
}

.main-content.hidden {
    opacity: 0;
    pointer-events: none;
}

.ocean-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.ocean-navbar.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-wave {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.logo-text {
    font-size: 20px;
    font-weight: 700;
    color: var(--ocean-dark);
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: var(--gray-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 0.5px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--ocean-blue), var(--teal));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--ocean-blue);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-hamburger span {
    width: 26px;
    height: 3px;
    background: var(--ocean-blue);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero-section {
    position: relative;
    padding: 120px 0 80px;
    text-align: center;
    overflow: hidden;
}

.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%230EA5E9" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
    background-repeat: repeat-x;
    background-position: bottom;
    animation: wave 15s linear infinite;
}

@keyframes wave {
    0% { background-position-x: 0; }
    100% { background-position-x: 1440px; }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.subtitle {
    font-size: 18px;
    font-weight: 500;
    color: var(--ocean-blue);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.main-title {
    font-size: 56px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--ocean-blue), var(--teal));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Montserrat', sans-serif;
}

.hero-text {
    font-size: 18px;
    color: var(--gray-dark);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--teal));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3);
    font-family: 'Poppins', sans-serif;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(14, 165, 233, 0.4);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translateX(4px);
}

.overview-section {
    padding: 80px 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.image-border {
    position: absolute;
    inset: 0;
    border: 3px solid var(--ocean-light);
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-wrapper:hover .image-border {
    opacity: 1;
}

.section-title {
    font-size: 40px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.section-description {
    font-size: 18px;
    color: var(--gray-dark);
    line-height: 1.8;
}

.features-section {
    padding: 80px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--gray-light);
    padding: 40px 32px;
    border-radius: 16px;
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(14, 165, 233, 0.15);
}

.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--white);
}

.feature-title {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.feature-text {
    font-size: 15px;
    color: var(--gray-dark);
    line-height: 1.7;
}

.preview-section {
    padding: 80px 0;
}

.preview-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.preview-screen {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.preview-screen img {
    width: 100%;
    height: auto;
    display: block;
}

.preview-overlay {
    position: absolute;
    inset: 0;
    background: rgba(14, 165, 233, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.preview-screen:hover .preview-overlay {
    opacity: 1;
}

.play-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    background: transparent;
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-icon-circle {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ocean-blue);
}

.play-button span {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

.about-section {
    padding: 80px 0;
    background: var(--cream);
}

.about-grid {
    display: grid;
    gap: 32px;
}

.about-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.card-top {
    margin-bottom: 20px;
}

.card-top h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

.card-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--ocean-blue), var(--teal));
    border-radius: 2px;
}

.about-card p {
    font-size: 16px;
    color: var(--gray-dark);
    line-height: 1.8;
}

.email-link {
    color: var(--ocean-blue);
    text-decoration: none;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.email-link:hover {
    border-bottom-color: var(--ocean-blue);
}

.disclaimer-section {
    padding: 80px 0;
}

.disclaimer-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.disclaimer-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.item-marker {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--teal));
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.disclaimer-item p {
    font-size: 16px;
    color: var(--gray-dark);
    line-height: 1.8;
}

.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background: var(--gray-light);
    padding: 48px;
    border-radius: 20px;
}

.form-heading {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 32px;
    font-family: 'Montserrat', sans-serif;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group.full {
    grid-column: 1 / -1;
}

.input-group label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-dark);
}

.input-group input,
.input-group textarea {
    padding: 14px 16px;
    border: 2px solid transparent;
    border-radius: 10px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    background: var(--white);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--ocean-blue);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

.input-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-button {
    grid-column: 1 / -1;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--ocean-blue), var(--teal));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.3);
    font-family: 'Poppins', sans-serif;
    margin-top: 8px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(14, 165, 233, 0.4);
}

.badges-section {
    padding: 60px 0;
}

.badges-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.badge-item {
    display: block;
    transition: transform 0.3s ease;
}

.badge-item:hover {
    transform: scale(1.05);
}

.badge-item img {
    height: 60px;
    width: auto;
}

.ocean-footer {
    background: linear-gradient(135deg, var(--ocean-dark), var(--ocean-deep));
    color: var(--white);
    padding: 60px 0 24px;
    position: relative;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.1" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,165.3C1248,171,1344,149,1392,138.7L1440,128L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>');
    background-repeat: repeat-x;
    background-position: top;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-description p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-subscribe h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}

.subscribe-form {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
}

.subscribe-form input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
}

.subscribe-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.subscribe-form input:focus {
    outline: none;
    border-color: var(--ocean-light);
    background: rgba(255, 255, 255, 0.15);
}

.subscribe-btn {
    padding: 12px 24px;
    background: var(--white);
    color: var(--ocean-blue);
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.subscribe-btn:hover {
    background: var(--ocean-light);
    color: var(--ocean-dark);
}

.footer-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--white);
}

.footer-copyright {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-copyright p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 72px;
        right: -100%;
        width: 280px;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        box-shadow: -4px 0 16px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        height: calc(100vh - 72px);
        align-items: flex-start;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .nav-hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .main-title {
        font-size: 40px;
    }

    .overview-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .age-gate-container {
        padding: 32px 24px;
    }

    .wave-circle {
        width: 100px;
        height: 100px;
    }

    .age-text {
        font-size: 40px;
    }

    .ocean-title {
        font-size: 26px;
    }

    .main-title {
        font-size: 32px;
    }

    .hero-text {
        font-size: 16px;
    }

    .section-title {
        font-size: 32px;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .subscribe-form {
        flex-direction: column;
    }

    .badges-wrapper {
        gap: 24px;
    }

    .badge-item img {
        height: 50px;
    }
}


  .content {
    padding: 40px 10%;
   
}

.content-block {}

.content-block h2 {
    color: #0095da;
}

.content-block p,
ul {
    color: rgba(8, 8, 8, 0.548);
}

.play-ground-area {
    position: relative;
    padding: 2rem;
    background: black;
}

.play-game {
    position: relative;
    max-width: 940px;
    margin: 0 auto;
}