* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: #0f0f0f;
    color: #e0e0e0;
    line-height: 1.7;
}

/* Container */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-wrapper-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.site-header {
    background: #1a1a1a;
    border-bottom: 2px solid #ff6b35;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-symbol {
    font-size: 2.5rem;
}

.logo-text {
    color: #ff6b35;
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    display: block;
    width: 30px;
    height: 3px;
    background: #ff6b35;
    margin: 6px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.site-navigation {
    display: flex;
    gap: 0.5rem;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.nav-link:hover {
    background: rgba(255, 107, 53, 0.1);
    color: #ff6b35;
}

.nav-link.current {
    background: rgba(255, 107, 53, 0.2);
    color: #ff6b35;
    font-weight: 700;
}

/* Main Banner */
.main-banner {
    position: relative;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b1b 50%, #1a1a1a 100%);
    padding: 6rem 2rem;
    text-align: center;
    overflow: hidden;
    border-bottom: 3px solid #ff6b35;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
}

.banner-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.banner-heading {
    font-size: 3.8rem;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
    letter-spacing: 2px;
}

.banner-tagline {
    font-size: 1.5rem;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.banner-btn {
    display: inline-block;
    background: #ff6b35;
    color: #0f0f0f;
    padding: 1.2rem 3.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.banner-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.6);
    background: #ff7c4d;
}

/* Principles */
.principles {
    padding: 5rem 2rem;
    background: #1a1a1a;
}

.principle-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.principle-card {
    background: #252525;
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid #333;
    text-align: center;
    transition: all 0.3s ease;
}

.principle-card:hover {
    transform: translateY(-8px);
    border-color: #ff6b35;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.principle-card h3 {
    color: #ff6b35;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.principle-card p {
    color: #b0b0b0;
    line-height: 1.9;
}

/* Philosophy */
.philosophy {
    padding: 5rem 2rem;
    background: #0f0f0f;
}

.section-header {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.philosophy-block h3 {
    color: #ff6b35;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.philosophy-block p {
    color: #b0b0b0;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* Game Showcase */
.game-showcase {
    padding: 5rem 2rem;
    background: #1a1a1a;
}

.showcase-desc {
    text-align: center;
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
}

.game-display {
    max-width: 1100px;
    margin: 0 auto 2.5rem;
    background: #252525;
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid #ff6b35;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
}

.game-iframe {
    width: 100%;
    height: 650px;
    border: none;
    border-radius: 10px;
    background: #fff;
}

.game-highlights {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.highlight-item {
    background: #252525;
    color: #ff6b35;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid #ff6b35;
    font-size: 0.95rem;
}

/* Features Section */
.features-section {
    padding: 5rem 2rem;
    background: #0f0f0f;
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.feature-box {
    background: #252525;
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 4px solid #ff6b35;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.feature-box h3 {
    color: #ff6b35;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-box p {
    color: #b0b0b0;
    line-height: 1.8;
}

/* Final CTA */
.final-cta {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2d1b1b 0%, #1a1a1a 100%);
    text-align: center;
    border-top: 3px solid #ff6b35;
    border-bottom: 3px solid #ff6b35;
}

.final-cta h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.4rem;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
}

.cta-action-btn {
    display: inline-block;
    background: #ff6b35;
    color: #0f0f0f;
    padding: 1.3rem 3.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.cta-action-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 107, 53, 0.6);
    background: #ff7c4d;
}

/* Play Page */
.play-hero {
    background: linear-gradient(135deg, #2d1b1b 0%, #1a1a1a 100%);
    padding: 3.5rem 2rem;
    text-align: center;
    border-bottom: 3px solid #ff6b35;
}

.play-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 0.5rem;
}

.play-hero p {
    font-size: 1.3rem;
    color: #e0e0e0;
}

.gameplay-guide {
    padding: 3.5rem 2rem;
    background: #1a1a1a;
}

.guide-sections {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.guide-card {
    background: #252525;
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #333;
}

.guide-card h3 {
    color: #ff6b35;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.guide-card ul {
    list-style-position: inside;
    color: #b0b0b0;
}

.guide-card li {
    margin: 0.75rem 0;
    line-height: 1.8;
}

.gaming-area {
    padding: 3.5rem 2rem;
    background: #0f0f0f;
}

.game-container {
    background: #252525;
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid #ff6b35;
    box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
}

.game-frame {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 10px;
    background: #fff;
}

.play-notice {
    padding: 2.5rem 2rem;
    background: #1a1a1a;
}

.notice-panel {
    max-width: 900px;
    margin: 0 auto;
    background: #2d2318;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 5px solid #ff9800;
    text-align: center;
}

.notice-panel p {
    color: #ffb74d;
    font-weight: 600;
    margin: 0;
}

/* Legal Pages */
.legal-container {
    padding: 4rem 2rem;
    background: #0f0f0f;
    min-height: calc(100vh - 75px);
}

.legal-inner {
    max-width: 950px;
    margin: 0 auto;
}

.legal-inner h1 {
    color: #ff6b35;
    font-size: 3.2rem;
    font-weight: 900;
    margin-bottom: 0.5rem;
}

.legal-timestamp {
    color: #888;
    font-style: italic;
    margin-bottom: 2.5rem;
}

.legal-article {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 15px;
    border: 2px solid #333;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.legal-article h2 {
    color: #ff6b35;
    font-size: 1.7rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-article h2:first-child {
    margin-top: 0;
}

.legal-article p {
    color: #b0b0b0;
    line-height: 1.9;
    margin-bottom: 1.25rem;
}

.legal-article ul {
    margin: 1rem 0 1.5rem 2rem;
    color: #b0b0b0;
}

.legal-article li {
    margin: 0.75rem 0;
    line-height: 1.9;
}

/* Footer */
.site-footer {
    background: #1a1a1a;
    border-top: 2px solid #ff6b35;
    padding: 3rem 2rem 1.5rem;
    margin-top: 4rem;
}

.footer-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-block h4 {
    color: #ff6b35;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-block p {
    color: #888;
    line-height: 1.8;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin: 0.75rem 0;
}

.footer-menu a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu a:hover {
    color: #ff6b35;
}

.footer-credits {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
}

.footer-credits p {
    color: #666;
    margin: 0.5rem 0;
}

.footer-note {
    color: #888;
    font-weight: 600;
}

/* Age Verification Screen */
.age-screen {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.age-screen.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-box {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 550px;
    margin: 1rem;
    border: 2px solid #ff6b35;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.5);
}

.age-icon {
    font-size: 4.5rem;
    margin-bottom: 1rem;
}

.age-box h2 {
    color: #ff6b35;
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.age-text {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.age-prompt {
    color: #ff6b35;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.age-action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-action-buttons button {
    padding: 1.1rem 2.5rem;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Roboto', sans-serif;
}

.btn-verify {
    background: #ff6b35;
    color: #0f0f0f;
}

.btn-verify:hover {
    background: #ff7c4d;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.btn-exit {
    background: #666;
    color: #fff;
}

.btn-exit:hover {
    background: #555;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-toggle {
        display: block;
    }

    .site-navigation {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: #1a1a1a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        gap: 0;
        border-top: 2px solid #ff6b35;
    }

    .site-navigation.active {
        left: 0;
    }

    .nav-link {
        display: block;
        padding: 1rem;
    }

    .banner-heading {
        font-size: 2.5rem;
    }

    .banner-tagline {
        font-size: 1.2rem;
    }

    .section-header {
        font-size: 2.2rem;
    }

    .game-iframe {
        height: 450px;
    }

    .game-frame {
        height: 550px;
    }

    .age-box {
        padding: 2rem;
    }

    .age-action-buttons {
        flex-direction: column;
    }

    .legal-article {
        padding: 2rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .features-layout {
        grid-template-columns: 1fr;
    }
}
