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

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(to right, #FF6B35, #F7931E);
    color: #2c2c2c;
    line-height: 1.6;
    min-height: 100vh;
}

/* Age Gate */
.age-gate-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-gate-overlay.hidden {
    display: none;
}

.age-gate-box {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 16px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.age-gate-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.age-gate-title {
    color: #FF6B35;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.age-gate-text {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.age-gate-question {
    color: #2c2c2c;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.age-gate-actions {
    display: flex;
    gap: 1rem;
}

.age-btn {
    flex: 1;
    padding: 1.2rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.age-btn-yes {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
}

.age-btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

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

.age-btn-no:hover {
    background: #d8d8d8;
}

/* Header */
.header-main {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-name {
    font-size: 1.8rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: #FF6B35;
    border-radius: 3px;
    transition: all 0.3s;
}

.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(6px, -6px);
}

.main-nav {
    display: flex;
    gap: 2.5rem;
}

.nav-item {
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    position: relative;
}

.nav-item:hover,
.nav-item.active {
    color: #FF6B35;
}

.nav-item.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #FF6B35, #F7931E);
    border-radius: 3px;
}

/* Main Wrapper */
.main-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Hero Block */
.hero-block {
    background: white;
    border-radius: 20px;
    padding: 4rem 3rem;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-heading {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

/* Essentials Block */
.essentials-block {
    margin-bottom: 3rem;
}

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

.essential-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    border-top: 5px solid #FF6B35;
}

.essential-card:hover {
    transform: translateY(-8px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.card-title {
    color: #2c2c2c;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.card-text {
    color: #666;
    line-height: 1.8;
}

/* Game Showcase */
.game-showcase {
    margin-bottom: 3rem;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: white;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.game-box {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.game-frame-container {
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1rem;
}

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

.game-note {
    text-align: center;
    color: #666;
    font-style: italic;
}

/* Benefits Block */
.benefits-block {
    margin-bottom: 3rem;
}

.benefits-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 1.5rem;
}

.benefit-number {
    font-size: 3rem;
    font-weight: 800;
    color: #FF6B35;
    line-height: 1;
}

.benefit-content h4 {
    color: #2c2c2c;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.benefit-content p {
    color: #666;
    line-height: 1.7;
}

/* Disclosure Block */
.disclosure-block {
    margin-bottom: 3rem;
}

.disclosure-content {
    display: grid;
    gap: 1.5rem;
}

.disclosure-box {
    background: white;
    padding: 1.8rem;
    border-radius: 12px;
    border-left: 5px solid #FF6B35;
    color: #555;
    line-height: 1.8;
}

.disclosure-box strong {
    color: #2c2c2c;
}

.warning-box {
    background: #FFF4E6;
    border-left-color: #F7931E;
}

.info-box {
    background: #E8F5FF;
    border-left-color: #4A90E2;
}

.alert-box {
    background: #FFE8E8;
    border-left-color: #E63946;
}

.notice-box {
    background: #F0F9FF;
    border-left-color: #3B82F6;
}

/* Footer */
.footer-main {
    background: white;
    padding: 3rem 2rem 1.5rem;
    border-top: 3px solid #FF6B35;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

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

.footer-column h4 {
    color: #FF6B35;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    color: #666;
    font-size: 0.95rem;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-nav a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: #FF6B35;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    color: #888;
    font-size: 0.9rem;
}

/* Content Pages */
.page-title-section {
    text-align: center;
    padding: 3rem 2rem;
    margin-bottom: 2rem;
}

.page-title-section h1 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: white;
    opacity: 0.95;
}

.content-block {
    margin-bottom: 3rem;
}

.text-content {
    background: white;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.text-content h2 {
    color: #FF6B35;
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.text-content h2:first-child {
    margin-top: 0;
}

.text-content p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.text-content ul {
    margin: 1rem 0 1.5rem 2rem;
    color: #555;
}

.text-content li {
    margin-bottom: 0.6rem;
    line-height: 1.7;
}

.last-updated {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    color: #999;
    font-style: italic;
}

.alert-banner {
    background: #FFF4E6;
    padding: 2rem;
    border-radius: 12px;
    border-left: 5px solid #F7931E;
    margin-bottom: 2rem;
}

.alert-banner h2 {
    color: #D97706 !important;
    margin-top: 0 !important;
}

.alert-banner p {
    color: #92400E;
}

.summary-box {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.summary-box h3 {
    color: #2c2c2c;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.play-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 1rem;
}

.play-intro {
    font-size: 1.2rem;
    color: white;
    opacity: 0.95;
}

.play-content {
    margin-bottom: 3rem;
}

.play-game-area {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
}

.play-game-frame {
    border-radius: 12px;
    overflow: hidden;
}

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

.play-details {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.details-heading {
    color: #FF6B35;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.details-text {
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.details-list {
    margin-bottom: 2rem;
}

.detail-point {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0.8rem 0;
    color: #555;
}

.detail-icon {
    color: #FF6B35;
    font-weight: bold;
    font-size: 1.3rem;
}

.details-notice {
    background: #FFF4E6;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 5px solid #F7931E;
}

.details-notice p {
    color: #555;
    line-height: 1.8;
    margin: 0;
}

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

    .main-nav {
        position: fixed;
        right: -100%;
        top: 75px;
        flex-direction: column;
        background: white;
        width: 100%;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: right 0.3s;
        gap: 1.5rem;
    }

    .main-nav.active {
        right: 0;
    }

    .main-wrapper {
        padding: 1rem;
    }

    .hero-block {
        padding: 2.5rem 1.5rem;
    }

    .hero-heading {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

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

    .game-frame {
        height: 400px;
    }

    .full-game-frame {
        height: 500px;
    }

    .benefits-layout {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .text-content {
        padding: 1.5rem;
    }

    .page-title-section h1,
    .play-title {
        font-size: 2rem;
    }
}
