* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: #1a1a1a;
    color: #e5e5e5;
    line-height: 1.6;
}

.main-header {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.nav-item {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.2);
}

.menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-line {
    width: 28px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

.intro-hero {
    background: linear-gradient(to bottom, #2d2d2d, #1a1a1a);
    padding: 5rem 2rem;
    text-align: center;
    border-bottom: 4px solid #ff6b35;
}

.intro-container {
    max-width: 1000px;
    margin: 0 auto;
}

.intro-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.intro-lead {
    font-size: 1.4rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
}

.intro-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-icon {
    font-size: 3rem;
}

.stat-text {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f7931e;
}

.notice-bar {
    background: #2d2d2d;
    padding: 3rem 2rem;
}

.notice-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.notice-box {
    padding: 2rem;
    border-radius: 10px;
    border-left: 5px solid;
}

.notice-box.warning {
    background: rgba(220, 53, 69, 0.1);
    border-left-color: #dc3545;
}

.notice-box.info {
    background: rgba(13, 110, 253, 0.1);
    border-left-color: #0d6efd;
}

.notice-box.age {
    background: rgba(255, 193, 7, 0.1);
    border-left-color: #ffc107;
}

.notice-box h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #ff6b35;
}

.notice-box p {
    color: #b0b0b0;
}

.content-section {
    padding: 4rem 2rem;
}

.content-section.light {
    background: #1a1a1a;
}

.content-section.dark {
    background: #2d2d2d;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    color: #ff6b35;
    margin-bottom: 2rem;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 3rem;
}

.content-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.content-column p {
    margin-bottom: 1.5rem;
    color: #d0d0d0;
    line-height: 1.8;
}

.game-showcase-section {
    background: #2d2d2d;
    padding: 4rem 2rem;
}

.game-frame-wrapper {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid #ff6b35;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.game-iframe {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
}

.benefits-section {
    background: #1a1a1a;
    padding: 4rem 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: #2d2d2d;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: #ff6b35;
    box-shadow: 0 12px 28px rgba(255, 107, 53, 0.4);
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.5rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    font-weight: 700;
}

.benefit-card p {
    color: #b0b0b0;
    line-height: 1.7;
}

.community-text {
    max-width: 900px;
    margin: 0 auto 2rem;
    color: #d0d0d0;
    font-size: 1.05rem;
    line-height: 1.8;
    text-align: center;
}

.community-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.highlight-box {
    background: rgba(255, 107, 53, 0.1);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid #ff6b35;
    text-align: center;
}

.highlight-box h4 {
    font-size: 1.3rem;
    color: #ff6b35;
    margin-bottom: 0.75rem;
}

.highlight-box p {
    color: #b0b0b0;
}

.page-hero {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    padding: 3.5rem 2rem;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 0.75rem;
}

.page-hero p {
    font-size: 1.3rem;
}

.play-section {
    background: #1a1a1a;
    padding: 4rem 2rem;
}

.play-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.play-intro h2 {
    font-size: 2.3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
}

.play-intro p {
    font-size: 1.1rem;
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto;
}

.game-player {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid #ff6b35;
    margin-bottom: 3rem;
}

.game-iframe-main {
    width: 100%;
    height: 750px;
    border: none;
    border-radius: 10px;
}

.play-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.info-card {
    background: #2d2d2d;
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #ff6b35;
}

.info-card h3 {
    color: #ff6b35;
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.info-card p {
    color: #b0b0b0;
    line-height: 1.7;
}

.legal-main {
    background: #1a1a1a;
    padding: 4rem 2rem;
    min-height: calc(100vh - 300px);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    font-weight: 900;
}

.legal-updated {
    color: #808080;
    font-style: italic;
    margin-bottom: 3rem;
}

.legal-article {
    margin-bottom: 3rem;
}

.legal-article h2 {
    font-size: 1.7rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-article p {
    color: #d0d0d0;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.critical-notice {
    background: rgba(220, 53, 69, 0.15);
    border: 3px solid #dc3545;
    border-radius: 12px;
    padding: 2.5rem;
    margin: 2.5rem 0;
    text-align: center;
}

.critical-notice h2 {
    color: #dc3545;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.critical-notice p {
    color: #ff6b6b;
    font-size: 1.2rem;
}

.site-footer {
    background: #0d0d0d;
    border-top: 4px solid #ff6b35;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    color: #ff6b35;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section p {
    color: #b0b0b0;
    margin-bottom: 0.5rem;
}

.footer-small {
    font-size: 0.9rem;
    margin-top: 1rem;
}

.footer-section a {
    display: block;
    color: #d0d0d0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ff6b35;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d2d2d;
    color: #808080;
}

.age-verify-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.age-verify-modal.active {
    display: flex;
}

.age-verify-box {
    background: linear-gradient(135deg, #2d2d2d, #1a1a1a);
    border: 3px solid #ff6b35;
    border-radius: 20px;
    padding: 3.5rem;
    max-width: 550px;
    margin: 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.5);
}

.age-verify-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.age-verify-box h2 {
    font-size: 2.2rem;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    font-weight: 900;
}

.age-verify-box p {
    font-size: 1.15rem;
    color: #d0d0d0;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.age-verify-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    justify-content: center;
}

.verify-btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.15rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    font-family: 'Exo 2', sans-serif;
    transition: all 0.3s;
}

.verify-btn.yes {
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
}

.verify-btn.yes:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
}

.verify-btn.no {
    background: #dc3545;
    color: white;
}

.verify-btn.no:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(220, 53, 69, 0.6);
}

@media (max-width: 968px) {
    .menu-btn {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 75%;
        height: calc(100vh - 70px);
        background: #2d2d2d;
        flex-direction: column;
        padding: 2rem;
        gap: 0;
        transition: right 0.3s;
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.5);
    }

    .main-nav.active {
        right: 0;
    }

    .nav-item {
        padding: 1.5rem 1rem;
        border-bottom: 1px solid #404040;
    }

    .intro-title {
        font-size: 2.2rem;
    }

    .intro-lead {
        font-size: 1.1rem;
    }

    .content-columns {
        grid-template-columns: 1fr;
    }

    .game-iframe {
        height: 500px;
    }

    .game-iframe-main {
        height: 550px;
    }

    .age-verify-buttons {
        flex-direction: column;
    }
}
