* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #064e3b 0%, #065f46 50%, #047857 100%);
    color: #f3f4f6;
    line-height: 1.7;
    min-height: 100vh;
}

.age-check-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(6px);
}

.age-check-modal.hidden {
    display: none;
}

.age-check-card {
    background: linear-gradient(to bottom, #065f46 0%, #047857 100%);
    border-radius: 20px;
    padding: 3rem;
    max-width: 520px;
    text-align: center;
    border: 3px solid #10b981;
    box-shadow: 0 25px 100px rgba(16, 185, 129, 0.4);
}

.age-check-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.age-check-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.age-check-message {
    font-size: 1.15rem;
    margin-bottom: 1rem;
    color: #e5e7eb;
}

.age-check-note {
    font-size: 1rem;
    color: #d1d5db;
    margin-bottom: 2rem;
}

.age-check-actions {
    display: flex;
    gap: 1rem;
}

.age-btn {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.confirm-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
}

.confirm-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.5);
}

.reject-btn {
    background: #6b7280;
    color: #f3f4f6;
}

.reject-btn:hover {
    background: #9ca3af;
}

.site-header {
    background: rgba(6, 78, 59, 0.85);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #10b981;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 100%;
    padding: 1.2rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-text {
    font-family: 'Satisfy', cursive;
    font-size: 2rem;
    color: #fbbf24;
    font-weight: 400;
}

.menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-line {
    width: 28px;
    height: 3px;
    background: #fbbf24;
    border-radius: 2px;
    transition: all 0.3s;
}

.primary-nav {
    display: flex;
    gap: 2rem;
}

.nav-item {
    color: #d1d5db;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #10b981;
    transition: width 0.3s;
}

.nav-item:hover,
.nav-item.active {
    color: #fbbf24;
}

.nav-item:hover::after,
.nav-item.active::after {
    width: 100%;
}

.hero-area {
    padding: 5rem 2.5rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border-bottom: 2px solid rgba(16, 185, 129, 0.4);
}

.hero-text-block {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fbbf24;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    font-size: 1.6rem;
    color: #e5e7eb;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-pills {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.pill {
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
}

.pill.green {
    background: rgba(16, 185, 129, 0.3);
    border: 2px solid #10b981;
}

.pill.gold {
    background: rgba(251, 191, 36, 0.3);
    border: 2px solid #fbbf24;
}

.hero-action-btn {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #064e3b;
    padding: 1.1rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-action-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(251, 191, 36, 0.4);
}

.section-container {
    max-width: 100%;
    padding: 4rem 2.5rem;
    margin: 0 auto;
}

.section-h2 {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fbbf24;
    text-align: center;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.welcome-section {
    background: rgba(6, 78, 59, 0.4);
    border-top: 1px solid rgba(16, 185, 129, 0.3);
    border-bottom: 1px solid rgba(16, 185, 129, 0.3);
}

.welcome-text p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.vital-info {
    background: linear-gradient(180deg, #065f46 0%, #047857 100%);
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s;
}

.info-card.style-a {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.25) 0%, rgba(5, 150, 105, 0.25) 100%);
    border: 2px solid #10b981;
}

.info-card.style-b {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.25) 0%, rgba(245, 158, 11, 0.25) 100%);
    border: 2px solid #fbbf24;
}

.info-card:hover {
    transform: translateY(-8px);
}

.card-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.5rem;
    color: #fbbf24;
    margin-bottom: 1rem;
    font-weight: 700;
}

.info-card p {
    font-size: 1rem;
    line-height: 1.7;
}

.game-display {
    background: rgba(6, 78, 59, 0.4);
    border-top: 1px solid rgba(16, 185, 129, 0.3);
    border-bottom: 1px solid rgba(16, 185, 129, 0.3);
}

.game-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #d1d5db;
    margin-bottom: 2.5rem;
}

.game-wrapper {
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    border: 3px solid #10b981;
    box-shadow: 0 20px 60px rgba(16, 185, 129, 0.3);
    margin-bottom: 2rem;
}

.game-iframe {
    width: 100%;
    height: 650px;
    border: none;
}

.game-notes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.note-item {
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.4);
    padding: 1.2rem;
    border-radius: 10px;
}

.features-display {
    background: linear-gradient(180deg, #047857 0%, #065f46 100%);
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: rgba(6, 78, 59, 0.6);
    border: 1px solid rgba(16, 185, 129, 0.5);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s;
}

.feature-item:hover {
    border-color: #10b981;
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(16, 185, 129, 0.3);
}

.feature-emoji {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-size: 1.4rem;
    color: #fbbf24;
    margin-bottom: 1rem;
    font-weight: 700;
}

.feature-item p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.closing-cta {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(5, 150, 105, 0.2) 100%);
    border-top: 2px solid #10b981;
    border-bottom: 2px solid #10b981;
}

.cta-box {
    text-align: center;
    padding: 3rem;
    background: rgba(6, 78, 59, 0.5);
    border-radius: 20px;
    border: 2px solid #10b981;
}

.cta-title {
    font-size: 2.5rem;
    color: #fbbf24;
    margin-bottom: 1rem;
    font-weight: 900;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 1.2rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(16, 185, 129, 0.5);
}

.site-footer {
    background: rgba(6, 78, 59, 0.95);
    border-top: 3px solid #10b981;
    padding: 3rem 2.5rem 1.5rem;
}

.footer-grid {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    color: #fbbf24;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.8rem;
}

.footer-menu a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-menu a:hover {
    color: #10b981;
}

.footer-bar {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(16, 185, 129, 0.4);
    color: #6b7280;
}

@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    .primary-nav {
        position: fixed;
        top: 72px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: rgba(6, 78, 59, 0.98);
        padding: 2rem;
        transition: left 0.3s;
        gap: 0;
    }

    .primary-nav.active {
        left: 0;
    }

    .nav-item {
        padding: 1rem 0;
    }

    .menu-btn.active .menu-line:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .menu-btn.active .menu-line:nth-child(2) {
        opacity: 0;
    }

    .menu-btn.active .menu-line:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -8px);
    }

    .header-container {
        padding: 1.2rem 1.5rem;
    }

    .section-container {
        padding: 3rem 1.5rem;
    }

    .hero-area {
        padding: 4rem 1.5rem;
    }

    .hero-h1 {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .section-h2 {
        font-size: 2rem;
    }

    .game-iframe {
        height: 450px;
    }

    .age-check-card {
        margin: 1rem;
        padding: 2rem;
    }

    .age-check-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.6rem;
    }

    .hero-h1 {
        font-size: 2rem;
    }

    .age-check-title {
        font-size: 1.6rem;
    }
}