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

body {
    font-family: 'Quicksand', sans-serif;
    background: linear-gradient(135deg, #ff9a3c 0%, #ffb366 50%, #ffd699 100%);
    color: #2d2d2d;
    line-height: 1.6;
}

.wrapper {
    min-height: 100vh;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.95));
}

/* Navigation */
.navbar {
    background: rgba(255, 154, 60, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.logo-text {
    font-family: 'Fredoka', sans-serif;
    font-size: 2rem;
    color: #fff;
    font-weight: 700;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 20px;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

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

.toggle-bar {
    width: 28px;
    height: 3px;
    background: #fff;
    border-radius: 2px;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* Welcome Banner */
.welcome-banner {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
    margin-bottom: 3rem;
}

.banner-content h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.8rem;
    color: #ff9a3c;
    margin-bottom: 1rem;
}

.banner-tagline {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.banner-text {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.btn-main {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #ff9a3c, #ffb366);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(255, 154, 60, 0.3);
}

.btn-main:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 154, 60, 0.4);
}

.banner-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.cube {
    font-size: 5rem;
    animation: bounce 2s ease-in-out infinite;
}

.cube:nth-child(2) {
    animation-delay: 0.3s;
}

.cube:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Highlights */
.highlights {
    padding: 4rem 0;
}

.section-heading {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    color: #ff9a3c;
    text-align: center;
    margin-bottom: 3rem;
}

.highlight-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.h-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    text-align: center;
}

.h-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(255, 154, 60, 0.2);
}

.card-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.h-card h3 {
    font-family: 'Fredoka', sans-serif;
    color: #ff9a3c;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.h-card p {
    color: #666;
}

/* Game Zone */
.game-zone {
    padding: 4rem 0;
    background: rgba(255, 154, 60, 0.1);
    border-radius: 30px;
    margin: 3rem 0;
}

.zone-intro {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
}

.game-box {
    max-width: 900px;
    margin: 0 auto;
    border: 4px solid #ff9a3c;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 154, 60, 0.3);
}

.game-embed {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.game-notes {
    text-align: center;
    margin-top: 2rem;
    color: #666;
}

.game-notes p {
    margin: 0.5rem 0;
}

/* Important Notes */
.important-notes {
    padding: 4rem 0;
}

.note-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.note-box {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    border-left: 6px solid;
}

.note-box.red-note {
    border-color: #e74c3c;
}

.note-box.green-note {
    border-color: #2ecc71;
}

.note-box.orange-note {
    border-color: #ff9a3c;
}

.note-box h3 {
    font-family: 'Fredoka', sans-serif;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    color: #333;
}

.note-box p {
    color: #666;
}

/* Reasons */
.reasons {
    padding: 4rem 0;
}

.reason-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.reason {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.reason-icon {
    font-size: 3rem;
}

.reason-text h4 {
    font-family: 'Fredoka', sans-serif;
    color: #ff9a3c;
    margin-bottom: 0.5rem;
}

.reason-text p {
    color: #666;
}

/* Footer */
.footer {
    background: #ff9a3c;
    color: #fff;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-block h4 {
    font-family: 'Fredoka', sans-serif;
    margin-bottom: 1rem;
}

.footer-block ul {
    list-style: none;
}

.footer-block a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
    margin: 0.5rem 0;
}

.footer-block a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.9);
}

/* Age Modal */
.modal-age {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal-age.hidden {
    display: none;
}

.modal-content {
    background: #fff;
    border-radius: 30px;
    max-width: 500px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.modal-header {
    background: linear-gradient(135deg, #ff9a3c, #ffb366);
    padding: 2rem;
    text-align: center;
}

.modal-header h2 {
    font-family: 'Fredoka', sans-serif;
    color: #fff;
    font-size: 2rem;
}

.modal-body {
    padding: 2rem;
    text-align: center;
    color: #555;
}

.modal-body p {
    margin: 1rem 0;
}

.modal-info {
    font-size: 0.9rem;
    color: #999;
}

.modal-footer {
    padding: 0 2rem 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.modal-footer button {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-yes {
    background: linear-gradient(135deg, #ff9a3c, #ffb366);
    color: #fff;
}

.btn-yes:hover {
    transform: scale(1.05);
}

.btn-no {
    background: #ddd;
    color: #666;
}

.btn-no:hover {
    background: #ccc;
}

/* Play Page */
.play-header {
    text-align: center;
    padding: 2rem 0;
}

.play-header h2 {
    font-family: 'Fredoka', sans-serif;
    font-size: 2.5rem;
    color: #ff9a3c;
    margin-bottom: 1rem;
}

.play-desc {
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.play-area {
    padding: 2rem 0;
}

.game-container {
    max-width: 1000px;
    margin: 0 auto;
    border: 4px solid #ff9a3c;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 154, 60, 0.3);
}

.game-full {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.play-help {
    padding: 3rem 0;
}

.play-help h3 {
    font-family: 'Fredoka', sans-serif;
    color: #ff9a3c;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.help-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.help-emoji {
    font-size: 3.5rem;
    display: block;
    margin-bottom: 1rem;
}

.help-item h4 {
    font-family: 'Fredoka', sans-serif;
    color: #ff9a3c;
    margin-bottom: 0.5rem;
}

.help-item p {
    color: #666;
}

.play-reminder {
    max-width: 800px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: rgba(255, 154, 60, 0.1);
    border-left: 4px solid #ff9a3c;
    border-radius: 10px;
    color: #666;
}

/* Legal Pages */
.legal-page {
    background: #fff;
    border-radius: 25px;
    padding: 3rem;
    margin: 2rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.legal-container h2 {
    font-family: 'Fredoka', sans-serif;
    color: #ff9a3c;
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.legal-updated {
    color: #999;
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 2.5rem;
}

.legal-section h3 {
    font-family: 'Fredoka', sans-serif;
    color: #ff9a3c;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-section p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(255, 154, 60, 0.98);
        width: 100%;
        padding: 2rem;
        gap: 0;
        transition: left 0.3s;
    }

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

    .nav-links li {
        margin: 0.5rem 0;
    }

    .welcome-banner {
        grid-template-columns: 1fr;
    }

    .banner-content h2 {
        font-size: 2rem;
    }

    .banner-visual {
        flex-direction: row;
        justify-content: space-around;
    }

    .cube {
        font-size: 3.5rem;
    }

    .highlight-cards {
        grid-template-columns: 1fr;
    }

    .note-boxes {
        grid-template-columns: 1fr;
    }

    .game-embed {
        height: 400px;
    }

    .game-full {
        height: 500px;
    }

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

    .modal-content {
        margin: 1rem;
    }

    .modal-footer {
        flex-direction: column;
    }
}
