* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom, #f0fdf4 0%, #e0f2fe 50%, #f3e8ff 100%);
    color: #1f2937;
    line-height: 1.7;
    min-height: 100vh;
}

.age-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.age-modal.show {
    display: flex;
}

.age-modal-wrapper {
    background: linear-gradient(135deg, #ffffff 0%, #f0fdf4 100%);
    padding: 3rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    border: 3px solid #10b981;
}

.age-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.age-modal-wrapper h2 {
    color: #10b981;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.age-modal-wrapper p {
    color: #4b5563;
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
}

.age-question {
    font-weight: 600;
    color: #1f2937;
    font-size: 1.2rem;
    margin-top: 1.5rem;
}

.age-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.btn-confirm, .btn-deny {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-confirm {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.5);
}

.btn-deny {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.btn-deny:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.5);
}

.site-header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 3px solid transparent;
    border-image: linear-gradient(90deg, #10b981, #06b6d4, #8b5cf6) 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
}

.brand svg {
    height: 45px;
    width: auto;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: #374151;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #10b981;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #06b6d4);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    gap: 5px;
}

.menu-toggle .bar {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #10b981, #06b6d4);
    transition: 0.3s;
    border-radius: 3px;
}

.main-content {
    padding-top: 2rem;
}

.hero-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(6, 182, 212, 0.15) 50%, rgba(139, 92, 246, 0.15) 100%);
    border-radius: 30px;
    margin: 2rem auto;
    max-width: 1400px;
}

.hero-container {
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #06b6d4, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.4rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    color: #1f2937;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 1.05rem;
}

.intro-section {
    padding: 4rem 0;
}

.intro-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.section-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #06b6d4);
    border-radius: 2px;
}

.centered {
    text-align: center;
    display: block;
    width: 100%;
}

.intro-lead {
    font-size: 1.2rem;
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.intro-desc {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.8;
}

.features-section {
    padding: 4rem 0;
    background: white;
    margin: 3rem auto;
    border-radius: 30px;
    max-width: 1400px;
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.feature-item {
    background: linear-gradient(135deg, #f0fdf4 0%, #e0f2fe 100%);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateY(-8px);
    border-color: #10b981;
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2);
}

.feature-emoji {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
}

.feature-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #4b5563;
    line-height: 1.8;
}

.game-showcase {
    padding: 4rem 0;
}

.section-subtext {
    text-align: center;
    color: #6b7280;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.game-embed {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 4px solid #10b981;
}

.game-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.notices-section {
    padding: 4rem 0;
}

.notices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.notice-card {
    padding: 2.5rem;
    border-radius: 20px;
    border: 3px solid;
    background: white;
}

.notice-card.red-accent {
    border-color: #ef4444;
    background: linear-gradient(135deg, #fff 0%, #fee2e2 100%);
}

.notice-card.blue-accent {
    border-color: #3b82f6;
    background: linear-gradient(135deg, #fff 0%, #dbeafe 100%);
}

.notice-card.purple-accent {
    border-color: #8b5cf6;
    background: linear-gradient(135deg, #fff 0%, #ede9fe 100%);
}

.notice-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.notice-card p {
    color: #374151;
    line-height: 1.8;
}

.about-section {
    padding: 4rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 30px;
    margin: 3rem auto;
    max-width: 1400px;
}

.about-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.about-column h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #10b981;
    margin-bottom: 1.2rem;
}

.about-column p {
    color: #374151;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.community-section {
    padding: 4rem 0;
}

.community-content {
    max-width: 1100px;
    margin: 0 auto;
}

.community-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.metrics-display {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.metric-box {
    text-align: center;
    background: white;
    padding: 2rem 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #10b981;
}

.metric-value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.metric-label {
    display: block;
    font-size: 1.05rem;
    color: #6b7280;
    font-weight: 600;
}

.play-header {
    padding: 3rem 0;
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #06b6d4, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #6b7280;
}

.game-info {
    padding: 3rem 0;
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2.5rem;
}

.info-box {
    background: white;
    padding: 2rem;
    border-radius: 18px;
    text-align: center;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.info-box:hover {
    border-color: #10b981;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.15);
}

.info-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.info-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.8rem;
}

.info-box p {
    color: #6b7280;
    line-height: 1.7;
}

.game-area {
    padding: 2rem 0 4rem;
}

.game-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 4px solid #10b981;
}

.game-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.play-notice {
    padding: 2rem 0;
}

.notice-highlight {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 3px solid #f59e0b;
    text-align: center;
}

.notice-highlight h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #92400e;
    margin-bottom: 1rem;
}

.notice-highlight p {
    font-size: 1.1rem;
    color: #78350f;
    line-height: 1.8;
}

.legal-header {
    padding: 3rem 0 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 25px;
    margin-bottom: 3rem;
}

.legal-update {
    font-size: 1.1rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

.legal-body {
    padding: 2rem 0;
}

.legal-container {
    max-width: 900px;
}

.legal-article {
    background: white;
    padding: 2.5rem;
    border-radius: 18px;
    margin-bottom: 2rem;
    border-left: 5px solid #10b981;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.legal-article.emphasis {
    border-left-color: #ef4444;
    background: linear-gradient(135deg, #fff 0%, #fef2f2 100%);
}

.legal-article h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.2rem;
}

.legal-article h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #374151;
    margin: 1.5rem 0 0.8rem;
}

.legal-article p {
    color: #4b5563;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.legal-article ul {
    color: #4b5563;
    margin-left: 2rem;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.legal-article li {
    margin-bottom: 0.6rem;
}

.legal-article strong {
    color: #1f2937;
    font-weight: 600;
}

.site-footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #e5e7eb;
    padding: 3rem 2rem;
    margin-top: 4rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.footer-block h4 {
    color: #10b981;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-block p {
    color: #d1d5db;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.external-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.external-links a {
    color: #60a5fa;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.external-links a:hover {
    color: #10b981;
    padding-left: 0.5rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: #10b981;
    padding-left: 0.5rem;
}

.copyright {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 75%;
        max-width: 320px;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        padding: 2rem;
        transition: right 0.3s ease;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
        align-items: flex-start;
        gap: 0;
    }

    .main-nav.open {
        right: 0;
    }

    .nav-link {
        padding: 1rem 0;
        width: 100%;
        border-bottom: 1px solid #e5e7eb;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-text {
        font-size: 1.15rem;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .section-heading {
        font-size: 2rem;
    }

    .features-layout {
        grid-template-columns: 1fr;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .metrics-display {
        gap: 1.5rem;
    }

    .age-actions {
        flex-direction: column;
    }

    .about-section {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .metric-value {
        font-size: 2.5rem;
    }

    .container {
        padding: 0 1rem;
    }
}