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

:root {
    --caribbean-blue: #0077be;
    --ocean-deep: #004d7a;
    --sand-light: #f4e4c1;
    --sand-dark: #d4b896;
    --treasure-gold: #ffd700;
    --wood-brown: #5c4033;
    --text-dark: #2c1810;
    --text-light: #ffffff;
    --coral-accent: #ff6b6b;
    --sea-foam: #85d4d4;
}

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

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

.hidden {
    display: none !important;
}

/* Age Gate */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--caribbean-blue) 0%, var(--ocean-deep) 100%);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-gate-overlay.active {
    display: flex;
}

.age-gate-container {
    background: var(--sand-light);
    padding: 48px;
    border-radius: 16px;
    text-align: center;
    max-width: 450px;
    border: 4px solid var(--wood-brown);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.treasure-chest {
    width: 100px;
    height: 80px;
    background: var(--wood-brown);
    border-radius: 8px;
    margin: 0 auto 24px;
    position: relative;
    border: 3px solid #8b6f47;
    display: flex;
    align-items: center;
    justify-content: center;
}

.treasure-chest::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--treasure-gold);
}

.chest-lock {
    font-size: 24px;
    font-weight: bold;
    color: var(--treasure-gold);
    z-index: 1;
}

.age-gate-title {
    font-family: 'Pirata One', cursive;
    font-size: 32px;
    color: var(--ocean-deep);
    margin-bottom: 16px;
}

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

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

.btn-confirm,
.btn-deny {
    padding: 12px 32px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm {
    background: var(--treasure-gold);
    color: var(--text-dark);
    border: 2px solid var(--wood-brown);
}

.btn-confirm:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-deny {
    background: var(--sand-dark);
    color: var(--text-dark);
    border: 2px solid var(--wood-brown);
}

.btn-deny:hover {
    background: #c4a886;
}

.age-footer-text {
    font-size: 13px;
    color: #666;
}

/* Navigation */
.navbar {
    background: var(--wood-brown);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

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

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

.logo-icon {
    color: var(--treasure-gold);
}

.logo-text {
    font-family: 'Pirata One', cursive;
    font-size: 24px;
    color: var(--sand-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo-text:hover {
    color: var(--treasure-gold);
}

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

.nav-link {
    color: var(--sand-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--treasure-gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--treasure-gold);
}

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

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--sand-light);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--caribbean-blue) 0%, var(--ocean-deep) 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.wave-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path fill="%23f4e4c1" d="M0,50 Q300,100 600,50 T1200,50 L1200,120 L0,120 Z"/></svg>') repeat-x;
    background-size: 1200px 80px;
    animation: wave 10s linear infinite;
}

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

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    position: relative;
    z-index: 1;
}

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

.hero-subtitle {
    font-size: 18px;
    color: var(--sand-light);
    font-weight: 400;
    letter-spacing: 3px;
}

.hero-main {
    font-family: 'Pirata One', cursive;
    font-size: 64px;
    color: var(--treasure-gold);
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

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

.cta-button {
    background: var(--treasure-gold);
    color: var(--text-dark);
    border: 3px solid var(--wood-brown);
    padding: 16px 48px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.btn-icon {
    stroke: var(--text-dark);
}

/* Overview Section */
.overview {
    padding: 80px 0;
    background: var(--sand-light);
}

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

.overview-image {
    position: relative;
}

.image-frame {
    border: 6px solid var(--wood-brown);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transform: rotate(-2deg);
    transition: transform 0.3s ease;
}

.image-frame:hover {
    transform: rotate(0deg);
}

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

.overview-content {
    padding: 24px;
}

.section-title {
    font-family: 'Pirata One', cursive;
    font-size: 42px;
    color: var(--ocean-deep);
    margin-bottom: 24px;
}

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

/* Features Section */
.features {
    padding: 80px 0;
    background: linear-gradient(135deg, #d0e8f0 0%, #b8dce8 100%);
}

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

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

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 119, 190, 0.2);
}

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

.feature-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--ocean-deep);
    margin-bottom: 16px;
}

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

/* Game Preview */
.game-preview {
    padding: 80px 0;
    background: var(--sand-light);
}

.game-screen-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border: 8px solid var(--wood-brown);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

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

.play-button-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.game-screen-wrapper:hover .play-button-overlay {
    opacity: 1;
}

.play-button {
    background: var(--treasure-gold);
    border: 3px solid var(--text-light);
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: bold;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

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

.play-icon {
    fill: var(--text-dark);
}

/* About Section */
.about {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--caribbean-blue) 0%, var(--ocean-deep) 100%);
}

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

.about-card {
    background: var(--sand-light);
    padding: 40px 32px;
    border-radius: 12px;
    border: 4px solid var(--wood-brown);
    position: relative;
    transition: transform 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
}

.card-decoration {
    width: 50px;
    height: 4px;
    background: var(--treasure-gold);
    margin-bottom: 20px;
}

.card-title {
    font-family: 'Pirata One', cursive;
    font-size: 28px;
    color: var(--ocean-deep);
    margin-bottom: 16px;
}

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

.email-link {
    color: var(--caribbean-blue);
    text-decoration: underline;
    font-weight: bold;
}

.email-link:hover {
    color: var(--ocean-deep);
}

/* Disclaimer Section */
.disclaimer {
    padding: 80px 0;
    background: var(--sand-light);
}

.disclaimer-title {
    font-family: 'Pirata One', cursive;
    font-size: 42px;
    color: var(--ocean-deep);
    text-align: center;
    margin-bottom: 48px;
}

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

.disclaimer-item {
    background: var(--text-light);
    padding: 32px;
    border-radius: 12px;
    border: 3px solid var(--caribbean-blue);
    text-align: center;
}

.disclaimer-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.disclaimer-item p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #d0e8f0 0%, #b8dce8 100%);
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--text-light);
    padding: 48px;
    border-radius: 16px;
    border: 4px solid var(--wood-brown);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.contact-title {
    font-family: 'Pirata One', cursive;
    font-size: 36px;
    color: var(--ocean-deep);
    text-align: center;
    margin-bottom: 32px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field.full-width {
    grid-column: 1 / -1;
}

.form-field label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-field input,
.form-field textarea {
    padding: 12px 16px;
    border: 2px solid var(--sand-dark);
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--caribbean-blue);
}

.submit-button {
    grid-column: 1 / -1;
    background: var(--treasure-gold);
    color: var(--text-dark);
    border: 3px solid var(--wood-brown);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: #ffed4e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Badges Section */
.badges {
    padding: 60px 0;
    background: var(--sand-light);
}

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

.badge {
    transition: transform 0.3s ease;
}

.badge:hover {
    transform: scale(1.1);
}

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

/* Footer */
.footer {
    background: var(--wood-brown);
    padding: 60px 0 24px;
    position: relative;
    overflow: hidden;
}

.footer-waves {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path fill="%235c4033" d="M0,50 Q300,0 600,50 T1200,50 L1200,0 L0,0 Z"/></svg>') repeat-x;
    background-size: 1200px 60px;
    transform: rotate(180deg);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 64px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.footer-logo .logo-text {
    font-family: 'Pirata One', cursive;
    font-size: 28px;
    color: var(--sand-light);
}

.footer-description {
    color: var(--sand-light);
    font-size: 14px;
    line-height: 1.8;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.newsletter-title {
    font-family: 'Pirata One', cursive;
    font-size: 22px;
    color: var(--treasure-gold);
    margin-bottom: 12px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-input {
    flex: 1;
    padding: 10px 16px;
    border: 2px solid var(--sand-dark);
    border-radius: 8px;
    font-family: 'Lato', sans-serif;
    font-size: 14px;
}

.newsletter-button {
    background: var(--treasure-gold);
    color: var(--text-dark);
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-button:hover {
    background: #ffed4e;
}

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

.footer-links a {
    color: var(--sand-light);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--treasure-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 2px solid rgba(244, 228, 193, 0.2);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: var(--sand-light);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--wood-brown);
        flex-direction: column;
        padding: 24px;
        gap: 16px;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-main {
        font-size: 48px;
    }

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

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

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

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

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

@media (max-width: 640px) {
    .hero-main {
        font-size: 36px;
    }

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

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

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

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

    .age-gate-container {
        padding: 32px 24px;
        margin: 16px;
    }

    .age-buttons {
        flex-direction: column;
    }

    .btn-confirm,
    .btn-deny {
        width: 100%;
    }
}


  .content {
    padding: 40px 10%;
   
}

.content-block {}

.content-block h2 {
    color: #024072;
}

.content-block p,
ul {
    color: rgba(1, 49, 71, 0.7);
}

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

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