* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to bottom, #fff7ed 0%, #fed7aa 100%);
    color: #292524;
    line-height: 1.6;
}

/* Age Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-modal.hidden {
    display: none;
}

.age-modal-box {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    color: white;
}

.age-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.age-modal-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 900;
}

.age-modal-box p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.age-question {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 1.5rem 0;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.age-btn-confirm,
.age-btn-deny {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.age-btn-confirm {
    background: white;
    color: #f59e0b;
}

.age-btn-confirm:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.age-btn-deny {
    background: #dc2626;
    color: white;
}

.age-btn-deny:hover {
    background: #b91c1c;
    transform: translateY(-3px);
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand-name {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav {
    display: flex;
    gap: 2rem;
}

.nav-item {
    text-decoration: none;
    color: #78716c;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 10px;
    transition: all 0.3s;
}

.nav-item:hover,
.nav-item.active {
    background: #f59e0b;
    color: white;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: #f59e0b;
    border: none;
    padding: 0.8rem;
    border-radius: 10px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Main Content */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    padding: 5rem 2rem;
    border-radius: 30px;
    text-align: center;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.3);
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    color: white;
    backdrop-filter: blur(10px);
}

/* Page Title */
.page-title {
    background: white;
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-title h1 {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.page-title p {
    color: #78716c;
    font-size: 1.2rem;
}

/* Content Sections */
.content-wrapper {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.content-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 900;
    color: #f59e0b;
    margin-bottom: 1.5rem;
    text-align: center;
}

.content-wrapper p {
    font-size: 1.1rem;
    color: #57534e;
    margin-bottom: 1rem;
}

section {
    margin-bottom: 2rem;
}

/* Point Cards */
.point-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.point-card {
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.point-card.orange {
    background: linear-gradient(135deg, #fed7aa 0%, #fdba74 100%);
}

.point-card.yellow {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.point-card.amber {
    background: linear-gradient(135deg, #fde68a 0%, #fcd34d 100%);
}

.point-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.point-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #78350f;
    margin-bottom: 1rem;
}

.point-card p {
    color: #92400e;
}

/* Game Showcase */
.game-description {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.game-frame {
    margin: 2rem 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.game-frame iframe {
    width: 100%;
    height: 650px;
    border: none;
}

.game-note {
    text-align: center;
    font-weight: 700;
    color: #f59e0b;
    font-size: 1.1rem;
}

/* Benefits List */
.benefits-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    padding: 2rem;
    border-left: 5px solid #f59e0b;
    background: linear-gradient(to right, rgba(245, 158, 11, 0.05) 0%, transparent 100%);
}

.benefit-number {
    font-size: 3rem;
    font-weight: 900;
    color: #f59e0b;
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

.benefit-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #78350f;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #57534e;
}

/* Call to Action */
.call-to-action {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    padding: 4rem 2rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.3);
}

.call-to-action .content-wrapper {
    background: transparent;
    box-shadow: none;
}

.call-to-action h2 {
    color: white;
}

.call-to-action p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #f59e0b;
    padding: 1.5rem 3rem;
    font-size: 1.3rem;
    font-weight: 900;
    text-decoration: none;
    border-radius: 15px;
    margin-top: 2rem;
    transition: all 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

/* Play Area */
.play-instructions {
    margin-bottom: 2rem;
}

.instruction-box {
    background: rgba(245, 158, 11, 0.1);
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
}

.instruction-box h3 {
    color: #f59e0b;
    margin-bottom: 1rem;
}

.instruction-box ul {
    list-style: none;
    padding-left: 0;
}

.instruction-box li {
    margin-bottom: 0.5rem;
    color: #57534e;
}

.reminder-box {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
}

.game-player iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Legal Section */
.legal-document {
    max-width: 900px;
    margin: 0 auto;
}

.legal-document h2 {
    font-size: 2rem;
    color: #f59e0b;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    text-align: left;
}

.legal-document h3 {
    font-size: 1.5rem;
    color: #d97706;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-document ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-document li {
    margin-bottom: 0.5rem;
    color: #57534e;
}

.terms-footer,
.privacy-highlight,
.warning-banner,
.acknowledgment-box {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    margin: 2.5rem 0;
}

.warning-banner h2 {
    color: white;
    text-align: center;
}

.acknowledgment-box ul {
    color: white;
}

.acknowledgment-box li {
    color: white;
}

/* Footer */
.footer {
    background: rgba(41, 37, 36, 0.95);
    color: white;
    padding: 3rem 2rem;
    border-radius: 30px;
    margin-top: 3rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: #f59e0b;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 0.5rem;
}

.footer-col a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #f59e0b;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 90px;
        right: 2rem;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .page-title h1 {
        font-size: 2rem;
    }

    .content-wrapper {
        padding: 1.5rem;
    }

    .content-wrapper h2 {
        font-size: 1.8rem;
    }

    .game-frame iframe {
        height: 450px;
    }

    .game-player iframe {
        height: 500px;
    }

    .benefits-list,
    .point-cards {
        grid-template-columns: 1fr;
    }
}
