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

body {
    font-family: 'Montserrat', sans-serif;
    background: #fff5f0;
    color: #1a1a1a;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-medium {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.container-large {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Age Verification Overlay */
.verify-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.95) 0%, rgba(234, 88, 12, 0.95) 100%);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.verify-overlay.active {
    display: flex;
}

.verify-card {
    background: white;
    padding: 55px 50px;
    border-radius: 25px;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35);
}

.verify-emoji {
    font-size: 70px;
    margin-bottom: 25px;
}

.verify-card h2 {
    font-size: 36px;
    font-weight: 800;
    color: #f97316;
    margin-bottom: 20px;
}

.verify-card p {
    font-size: 17px;
    color: #6b7280;
    margin-bottom: 35px;
    line-height: 1.8;
}

.verify-options {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.option-yes, .option-no {
    padding: 17px 42px;
    font-size: 17px;
    font-weight: 700;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.option-yes {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
}

.option-yes:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.4);
}

.option-no {
    background: #9ca3af;
    color: white;
}

.option-no:hover {
    background: #6b7280;
    transform: translateY(-3px);
}

/* Site Header */
.site-header {
    background: white;
    box-shadow: 0 3px 15px rgba(249, 115, 22, 0.12);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.brand-name {
    font-size: 28px;
    font-weight: 900;
    color: #f97316;
    letter-spacing: 1px;
}

.site-nav {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: #4b5563;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:hover {
    color: #f97316;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #f97316 0%, #ea580c 100%);
    transition: width 0.3s ease;
    border-radius: 3px;
}

.nav-link:hover::after {
    width: 100%;
}

/* Navigation Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.toggle-line {
    width: 32px;
    height: 3px;
    background: #f97316;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-toggle.active .toggle-line:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
}

.nav-toggle.active .toggle-line:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .toggle-line:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
}

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

    .site-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 25px 30px;
        gap: 15px;
        box-shadow: 0 10px 30px rgba(249, 115, 22, 0.15);
        display: none;
    }

    .site-nav.active {
        display: flex;
    }
}

/* Hero Splash */
.hero-splash {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    padding: 90px 30px;
    text-align: center;
}

.hero-text h1 {
    font-size: 52px;
    font-weight: 900;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 21px;
    margin-bottom: 45px;
    opacity: 0.95;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.action-btn {
    padding: 18px 42px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 14px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    display: inline-block;
}

.primary-action {
    background: white;
    color: #f97316;
}

.primary-action:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.4);
}

.secondary-action {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.secondary-action:hover {
    background: white;
    color: #f97316;
    transform: translateY(-4px);
}

/* Key Notices */
.key-notices {
    padding: 80px 30px;
}

.section-heading {
    font-size: 40px;
    font-weight: 800;
    text-align: center;
    margin-bottom: 50px;
    color: #ea580c;
}

.notices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.notice-item {
    padding: 45px 35px;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease;
    border: 3px solid;
}

.notice-item:hover {
    transform: translateY(-8px);
}

.notice-warning {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-color: #f59e0b;
}

.notice-info {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-color: #3b82f6;
}

.notice-alert {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border-color: #ef4444;
}

.notice-emoji {
    font-size: 55px;
    margin-bottom: 20px;
    display: block;
}

.notice-item h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2937;
}

.notice-item p {
    color: #4b5563;
    line-height: 1.7;
    font-size: 16px;
}

/* Platform Intro */
.platform-intro {
    padding: 80px 30px;
    background: white;
}

.intro-columns {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
    align-items: start;
}

@media (max-width: 968px) {
    .intro-columns {
        grid-template-columns: 1fr;
    }
}

.intro-main h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #ea580c;
}

.intro-main p {
    margin-bottom: 20px;
    color: #4b5563;
    font-size: 17px;
    line-height: 1.8;
}

.intro-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-card {
    display: flex;
    gap: 20px;
    align-items: center;
    background: linear-gradient(135deg, #fff5f0 0%, #ffedd5 100%);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #fed7aa;
}

.feature-emoji {
    font-size: 40px;
}

.feature-info h4 {
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #c2410c;
}

.feature-info p {
    color: #9a3412;
    font-size: 15px;
}

/* Game Showcase */
.game-showcase {
    padding: 80px 30px;
}

.showcase-text {
    text-align: center;
    color: #4b5563;
    font-size: 17px;
    margin-bottom: 45px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.game-display {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(249, 115, 22, 0.2);
}

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

/* Value Props */
.value-props {
    padding: 80px 30px;
    background: white;
}

.props-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 30px;
}

.prop-item {
    display: flex;
    gap: 20px;
    background: linear-gradient(135deg, #fff5f0 0%, #ffedd5 100%);
    padding: 35px 30px;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.prop-item:hover {
    border-color: #f97316;
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.2);
}

.prop-number {
    font-size: 50px;
    font-weight: 900;
    color: #f97316;
    line-height: 1;
}

.prop-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1f2937;
}

.prop-content p {
    color: #6b7280;
    line-height: 1.7;
}

/* Responsibility Notice */
.responsibility-notice {
    padding: 70px 30px;
    background: linear-gradient(135deg, #e0e7ff 0%, #c7d2fe 100%);
}

.notice-content {
    text-align: center;
    max-width: 950px;
    margin: 0 auto;
}

.notice-content h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #3730a3;
}

.notice-content p {
    font-size: 17px;
    color: #4338ca;
    line-height: 1.8;
}

/* Play Header */
.play-header {
    padding: 70px 30px;
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: white;
    text-align: center;
}

.play-header h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.play-header p {
    font-size: 19px;
    opacity: 0.95;
}

/* Play Area */
.play-area {
    padding: 60px 30px;
}

.game-wrapper {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 25px 70px rgba(249, 115, 22, 0.25);
}

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

/* Play Info */
.play-info {
    padding: 70px 30px;
    background: white;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-card-item {
    background: linear-gradient(135deg, #fff5f0 0%, #ffedd5 100%);
    padding: 35px;
    border-radius: 20px;
    border: 2px solid #fed7aa;
}

.info-card-item h3 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #f97316;
}

.info-card-item p {
    color: #6b7280;
    line-height: 1.7;
}

/* Legal Section */
.legal-section {
    padding: 80px 30px;
}

.legal-section h1 {
    font-size: 48px;
    font-weight: 900;
    color: #ea580c;
    margin-bottom: 15px;
}

.date-stamp {
    font-style: italic;
    color: #9ca3af;
    margin-bottom: 50px;
}

.terms-block {
    margin-bottom: 40px;
}

.terms-block h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1f2937;
}

.terms-block p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 15px;
}

.alert-notice {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 3px solid #f59e0b;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 50px;
}

.alert-notice h2 {
    color: #92400e;
    margin-bottom: 15px;
}

.alert-notice p {
    color: #78350f;
    font-size: 17px;
}

/* Site Footer */
.site-footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #d1d5db;
    padding: 70px 30px 35px;
}

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

.footer-section h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fb923c;
}

.footer-section p {
    line-height: 1.7;
    color: #d1d5db;
}

.footer-section a {
    display: block;
    color: #e5e7eb;
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #fb923c;
}

.footer-base {
    border-top: 1px solid #374151;
    padding-top: 30px;
    text-align: center;
    color: #9ca3af;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-heading,
    .intro-main h2 {
        font-size: 32px;
    }

    .game-viewer,
    .game-player {
        height: 450px;
    }

    .legal-section h1 {
        font-size: 36px;
    }

    .terms-block h2 {
        font-size: 24px;
    }
}
