* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 50%, #48dbfb 100%);
    color: #2c3e50;
    line-height: 1.6;
}

.top-navigation {
    background: linear-gradient(135deg, #ff6b6b 0%, #ff5722 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 75px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-emoji {
    font-size: 36px;
}

.logo-name {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    display: block;
    padding: 12px 22px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 16px;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.nav-links a.active {
    background: rgba(255, 255, 255, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hero-header {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.95), rgba(254, 202, 87, 0.95)),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><rect fill="%23ff6b6b" width="1200" height="400"/></svg>');
    background-size: cover;
    padding: 90px 30px;
    text-align: center;
    color: #fff;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fffacd;
}

.hero-description {
    font-size: 19px;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.7;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.intro-message {
    padding: 80px 0;
    background: #fff;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 44px;
    font-weight: 800;
    text-align: center;
    color: #ff6b6b;
    margin-bottom: 40px;
}

.intro-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.intro-block p {
    font-size: 18px;
    color: #34495e;
    line-height: 1.8;
    background: linear-gradient(135deg, #ffeaa7 0%, #fff 100%);
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.core-principles {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdcb6e 0%, #ffeaa7 100%);
}

.principle-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.principle-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.principle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    border-color: #ff6b6b;
}

.card-emoji {
    font-size: 56px;
    margin-bottom: 20px;
}

.principle-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 26px;
    color: #ff6b6b;
    margin-bottom: 15px;
}

.principle-card p {
    font-size: 17px;
    color: #34495e;
    line-height: 1.7;
}

.game-showcase-section {
    padding: 80px 0;
    background: #fff;
}

.game-intro-text {
    text-align: center;
    font-size: 19px;
    color: #34495e;
    margin-bottom: 35px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.game-showcase-box {
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.showcase-game-frame {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 15px;
    background: #000;
}

.highlights {
    padding: 80px 0;
    background: linear-gradient(135deg, #48dbfb 0%, #0abde3 100%);
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.highlight-box {
    background: #fff;
    padding: 35px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.highlight-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.highlight-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 18px;
}

.highlight-box h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    color: #0abde3;
    margin-bottom: 12px;
}

.highlight-box p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.6;
}

.important-info {
    padding: 80px 0;
    background: #fff;
}

.info-alert {
    background: linear-gradient(135deg, #ffeb3b 0%, #ffc107 100%);
    border: 4px solid #ff6b6b;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.info-alert h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    color: #d32f2f;
    margin-bottom: 25px;
    text-align: center;
}

.alert-content p {
    font-size: 18px;
    color: #212121;
    margin-bottom: 18px;
    line-height: 1.8;
}

.alert-content strong {
    color: #d32f2f;
}

.site-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    padding: 60px 0 30px;
}

.footer-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h5 {
    font-family: 'Poppins', sans-serif;
    color: #feca57;
    font-size: 22px;
    margin-bottom: 20px;
}

.footer-section p {
    line-height: 1.7;
    color: #bdc3c7;
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #feca57;
}

.footer-copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 2px solid rgba(236, 240, 241, 0.2);
    color: #95a5a6;
}

.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 62, 80, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-verification-modal.hidden {
    display: none;
}

.age-modal-content {
    background: linear-gradient(135deg, #fff 0%, #ffeaa7 100%);
    max-width: 550px;
    padding: 55px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 60px rgba(0, 0, 0, 0.5);
    border: 5px solid #ff6b6b;
}

.age-modal-icon {
    font-size: 72px;
    margin-bottom: 25px;
}

.age-modal-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.age-modal-content p {
    font-size: 18px;
    color: #34495e;
    margin-bottom: 15px;
}

.age-question {
    font-size: 21px;
    font-weight: 700;
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 30px;
}

.age-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.age-btn {
    padding: 18px 40px;
    font-size: 19px;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.age-yes {
    background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: #fff;
}

.age-yes:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.5);
}

.age-no {
    background: linear-gradient(135deg, #d63031 0%, #e17055 100%);
    color: #fff;
}

.age-no:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(214, 48, 49, 0.5);
}

.page-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    padding: 60px 30px;
    text-align: center;
    color: #fff;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
}

.page-banner h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 50px;
    font-weight: 800;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 10px;
}

.page-banner p {
    font-size: 22px;
    color: #fffacd;
}

.play-instructions {
    padding: 60px 0;
    background: #fff;
}

.instruction-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.instruction-panel {
    background: linear-gradient(135deg, #ffeaa7 0%, #fff 100%);
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    border-left: 6px solid #48dbfb;
}

.instruction-panel h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    color: #0abde3;
    margin-bottom: 15px;
}

.instruction-panel p {
    color: #34495e;
    line-height: 1.7;
}

.play-game-area {
    padding: 40px 0;
    background: linear-gradient(135deg, #48dbfb 0%, #0abde3 100%);
}

.play-game-box {
    background: linear-gradient(135deg, #ff6b6b 0%, #feca57 100%);
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.play-game-iframe {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 15px;
    background: #000;
}

.play-reminder {
    padding: 60px 0;
    background: #fff;
}

.reminder-alert {
    background: linear-gradient(135deg, #ffeb3b 0%, #ffc107 100%);
    border: 4px solid #ff6b6b;
    padding: 40px;
    border-radius: 18px;
    text-align: center;
}

.reminder-alert h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 30px;
    color: #d32f2f;
    margin-bottom: 15px;
}

.reminder-alert p {
    font-size: 18px;
    color: #212121;
    line-height: 1.7;
}

.legal-section {
    padding: 60px 0;
    background: #fff;
}

.legal-document {
    background: linear-gradient(135deg, #ffeaa7 0%, #fff 100%);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    border: 3px solid #feca57;
}

.effective-date {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 35px;
}

.legal-document h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 28px;
    color: #ff6b6b;
    margin-top: 35px;
    margin-bottom: 18px;
}

.legal-document p {
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 17px;
}

.legal-document ul {
    color: #2c3e50;
    margin-left: 30px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-document li {
    margin-bottom: 10px;
}

.legal-document a {
    color: #0abde3;
    text-decoration: none;
    font-weight: 700;
}

.legal-document a:hover {
    text-decoration: underline;
}

.warning-box {
    background: linear-gradient(135deg, #ffeb3b 0%, #ffc107 100%);
    border: 4px solid #d32f2f;
    padding: 35px;
    border-radius: 15px;
    margin-bottom: 35px;
}

.warning-box h2 {
    margin-top: 0;
    color: #d32f2f;
}

.confirmation-box {
    background: linear-gradient(135deg, #48dbfb 0%, #0abde3 100%);
    border: 4px solid #ff6b6b;
    padding: 35px;
    border-radius: 15px;
    margin-top: 40px;
}

.confirmation-box h3 {
    font-family: 'Poppins', sans-serif;
    color: #fff;
    margin-bottom: 20px;
    font-size: 24px;
}

.confirmation-box ul {
    color: #fff;
}

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        top: 75px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: linear-gradient(135deg, #ff6b6b 0%, #ff5722 100%);
        padding: 25px;
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        width: 100%;
        text-align: center;
        padding: 15px;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(9px, 9px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(9px, -9px);
    }

    .container {
        padding: 0 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-tagline {
        font-size: 20px;
    }

    .hero-description {
        font-size: 16px;
    }

    .intro-blocks {
        grid-template-columns: 1fr;
    }

    .age-modal-content {
        margin: 20px;
        padding: 40px 30px;
    }

    .legal-document {
        padding: 35px 20px;
    }

    .showcase-game-frame,
    .play-game-iframe {
        height: 500px;
    }
}
