* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Work Sans', sans-serif;
    background: #fafafa;
    color: #2c2c2c;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 60px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand {
    font-family: 'Comfortaa', cursive;
    font-size: 28px;
    font-weight: 700;
    color: #A78BFA;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: #A78BFA;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.navigation {
    display: flex;
    gap: 5px;
}

.nav-item {
    padding: 10px 20px;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-item:hover {
    background: #f0f0f0;
    color: #A78BFA;
}

.nav-item.active {
    background: #A78BFA;
    color: white;
}

/* Main */
.main {
    padding-bottom: 80px;
}

/* Hero */
.hero {
    text-align: center;
    padding: 60px 0;
    margin-bottom: 60px;
    border-bottom: 1px solid #e0e0e0;
}

.hero h1 {
    font-family: 'Comfortaa', cursive;
    font-size: 56px;
    font-weight: 700;
    color: #A78BFA;
    margin-bottom: 15px;
}

.subtitle {
    font-size: 20px;
    color: #666;
    font-weight: 300;
    margin-bottom: 30px;
}

.hero-tags {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tag {
    padding: 10px 20px;
    background: #f5f3ff;
    border: 1px solid #e0d7ff;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #7c3aed;
}

/* Page Title */
.page-title {
    text-align: center;
    padding: 40px 0;
    margin-bottom: 60px;
    border-bottom: 1px solid #e0e0e0;
}

.page-title h1 {
    font-family: 'Comfortaa', cursive;
    font-size: 42px;
    font-weight: 700;
    color: #A78BFA;
    margin-bottom: 10px;
}

.page-title p {
    font-size: 18px;
    color: #666;
}

/* Section */
.section {
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Comfortaa', cursive;
    font-size: 32px;
    font-weight: 700;
    color: #A78BFA;
    text-align: center;
    margin-bottom: 40px;
}

/* Content Box */
.content-box {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 40px;
}

.content-box h2 {
    font-size: 28px;
    color: #A78BFA;
    margin-bottom: 25px;
    font-family: 'Comfortaa', cursive;
}

.content-box p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.info-card {
    background: white;
    border: 2px solid;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.info-card.accent-red {
    border-color: #fca5a5;
    background: #fef2f2;
}

.info-card.accent-blue {
    border-color: #93c5fd;
    background: #eff6ff;
}

.info-card.accent-orange {
    border-color: #fdba74;
    background: #fff7ed;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 20px;
    color: #A78BFA;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

/* Game */
.game-intro {
    text-align: center;
    font-size: 17px;
    color: #666;
    margin-bottom: 30px;
}

.game-wrapper {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
}

.game-iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.game-note {
    margin-top: 20px;
    text-align: center;
    font-size: 15px;
    color: #888;
    font-style: italic;
}

.alert {
    margin-top: 25px;
    padding: 20px;
    background: #fff7ed;
    border: 1px solid #fdba74;
    border-radius: 8px;
    color: #c2410c;
    font-size: 15px;
    text-align: center;
}

/* Features List */
.features-list {
    display: grid;
    gap: 20px;
}

.feature {
    display: flex;
    align-items: start;
    gap: 20px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
}

.feature-emoji {
    font-size: 36px;
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 20px;
    color: #A78BFA;
    margin-bottom: 8px;
    font-weight: 600;
}

.feature-text p {
    font-size: 15px;
    color: #666;
}

/* Simple List */
.simple-list {
    display: grid;
    gap: 20px;
    margin-bottom: 30px;
}

.list-item {
    display: flex;
    align-items: start;
    gap: 20px;
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
}

.item-number {
    width: 50px;
    height: 50px;
    background: #A78BFA;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.list-item h3 {
    font-size: 20px;
    color: #A78BFA;
    margin-bottom: 8px;
    font-weight: 600;
}

.list-item p {
    font-size: 15px;
    color: #666;
}

.info-note {
    background: #f5f3ff;
    border: 1px solid #e0d7ff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    color: #555;
}

/* Legal Container */
.legal-container {
    display: grid;
    gap: 25px;
}

.legal-block {
    background: white;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
}

.legal-block h2 {
    font-size: 22px;
    color: #A78BFA;
    margin-bottom: 15px;
    font-weight: 600;
}

.legal-block p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

.legal-block ul {
    margin: 15px 0 15px 25px;
}

.legal-block li {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
}

.legal-block.important {
    border: 2px solid #fdba74;
    background: #fff7ed;
}

.important-icon {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
}

/* Footer */
.footer {
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #e0e0e0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h3 {
    font-size: 18px;
    color: #A78BFA;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #A78BFA;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #7c3aed;
}

/* Age Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    border-radius: 16px;
    padding: 50px;
    max-width: 450px;
    text-align: center;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
}

.modal-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.modal-content h2 {
    font-family: 'Comfortaa', cursive;
    font-size: 32px;
    color: #A78BFA;
    margin-bottom: 20px;
    font-weight: 700;
}

.modal-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 15px;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.modal-actions button {
    flex: 1;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Work Sans', sans-serif;
}

.btn-accept {
    background: #A78BFA;
    color: white;
}

.btn-accept:hover {
    background: #8b5cf6;
    transform: scale(1.05);
}

.btn-decline {
    background: #f87171;
    color: white;
}

.btn-decline:hover {
    background: #ef4444;
    transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .header {
        padding: 30px 0;
        margin-bottom: 40px;
    }

    .brand {
        font-size: 22px;
    }

    .nav-toggle {
        display: flex;
    }

    .navigation {
        position: fixed;
        top: 100px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid #e0e0e0;
        transform: translateY(-100%);
        opacity: 0;
        transition: all 0.3s ease;
        z-index: 999;
    }

    .navigation.active {
        transform: translateY(0);
        opacity: 1;
    }

    .nav-item {
        width: 100%;
        text-align: center;
        padding: 15px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .subtitle {
        font-size: 18px;
    }

    .page-title h1 {
        font-size: 32px;
    }

    .section-title {
        font-size: 26px;
    }

    .content-box {
        padding: 25px;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .game-iframe {
        height: 500px;
    }

    .modal-content {
        padding: 35px 25px;
        margin: 20px;
    }

    .modal-content h2 {
        font-size: 26px;
    }

    .modal-actions {
        flex-direction: column;
    }

    .footer {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    .game-iframe {
        height: 400px;
    }
}
