* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: linear-gradient(to right, #1a0a00, #331100, #1a0a00);
    color: #f5f5f5;
    line-height: 1.6;
    min-height: 100vh;
}

/* Age Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.96);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-modal.active {
    display: flex;
}

.age-modal-box {
    background: radial-gradient(circle, #ff6f00 0%, #d84315 100%);
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 20px 60px rgba(255, 111, 0, 0.5);
    border: 4px solid #ff9800;
}

.age-modal-box h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.age-modal-text {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
}

.age-modal-subtext {
    font-size: 1.1rem;
    color: #ffe0b2;
    margin-bottom: 0.8rem;
}

.age-modal-info {
    font-size: 0.95rem;
    color: #ffccbc;
    margin-bottom: 2rem;
}

.age-modal-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.age-yes, .age-no {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.age-yes {
    background: #fff;
    color: #d84315;
}

.age-yes:hover {
    background: #ffe0b2;
    transform: scale(1.05);
}

.age-no {
    background: #424242;
    color: #fff;
}

.age-no:hover {
    background: #616161;
}

/* Header */
.site-header {
    background: linear-gradient(135deg, #d84315 0%, #ff6f00 100%);
    border-bottom: 3px solid #ff9800;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #fff;
    letter-spacing: 3px;
}

.site-nav {
    display: flex;
    gap: 2rem;
}

.nav-item {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-line {
    width: 30px;
    height: 3px;
    background: #fff;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hero Banner */
.hero-banner {
    padding: 8rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(216, 67, 21, 0.8) 0%, rgba(255, 111, 0, 0.8) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%23d84315" width="1200" height="600"/><circle cx="600" cy="300" r="200" fill="%23ff6f00" opacity="0.3"/></svg>');
    background-size: cover;
    border-bottom: 4px solid #ff9800;
}

.hero-content-box {
    max-width: 900px;
    margin: 0 auto;
}

.hero-content-box h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.7);
}

.hero-lead {
    font-size: 2rem;
    font-weight: 800;
    color: #ffeb3b;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-text {
    font-size: 1.3rem;
    color: #ffe0b2;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-button {
    display: inline-block;
    padding: 1.3rem 3.5rem;
    background: #ffeb3b;
    color: #d84315;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 30px rgba(255, 235, 59, 0.4);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.hero-button:hover {
    background: #fff;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 235, 59, 0.6);
}

/* About Section */
.about-section {
    padding: 6rem 2rem;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #ff9800;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 2px;
}

.about-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #e0e0e0;
}

/* Warning Cards */
.warning-cards {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 111, 0, 0.1) 0%, rgba(216, 67, 21, 0.1) 100%);
}

.warning-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.warning-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 20px;
    border: 3px solid;
    transition: all 0.3s ease;
}

.orange-card {
    border-color: #ff9800;
}

.red-card {
    border-color: #f44336;
}

.dark-card {
    border-color: #9e9e9e;
}

.warning-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(255, 152, 0, 0.3);
    background: rgba(255, 255, 255, 0.08);
}

.warning-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.warning-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: #ff9800;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.warning-card p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Game Display */
.game-display {
    padding: 6rem 2rem;
}

.game-display-container {
    max-width: 1300px;
    margin: 0 auto;
}

.game-display-container h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #ff9800;
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.game-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #bdbdbd;
}

.game-box {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
    border: 4px solid #ff9800;
    margin-bottom: 2rem;
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.game-warning {
    text-align: center;
    font-size: 1.1rem;
    color: #ffeb3b;
    font-weight: 700;
    padding: 1.5rem;
    background: rgba(255, 235, 59, 0.1);
    border-radius: 15px;
    border: 2px solid #ffeb3b;
}

/* Highlights */
.highlights {
    padding: 6rem 2rem;
    background: rgba(216, 67, 21, 0.1);
}

.highlights-container {
    max-width: 1400px;
    margin: 0 auto;
}

.highlights-container h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: #ff9800;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 2px;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border-top: 5px solid #ff9800;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.highlight-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    color: #ff9800;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.highlight-item p {
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Responsibility */
.responsibility {
    padding: 5rem 2rem;
}

.responsibility-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.responsibility-container h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: #ff9800;
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.responsibility-container p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #e0e0e0;
}

/* Play Page */
.play-hero {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(216, 67, 21, 0.6) 0%, rgba(255, 111, 0, 0.6) 100%);
    border-bottom: 3px solid #ff9800;
}

.play-hero-content h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.play-hero-content p {
    font-size: 1.4rem;
    color: #ffe0b2;
}

.play-guide {
    padding: 4rem 2rem;
}

.play-guide-container {
    max-width: 1000px;
    margin: 0 auto;
}

.play-guide-container h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #ff9800;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 2px;
}

.guide-content {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border-left: 5px solid #ff9800;
}

.guide-list {
    list-style: none;
    padding: 0;
}

.guide-list li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.play-area {
    padding: 2rem 2rem 5rem;
}

.play-area-container {
    max-width: 1400px;
    margin: 0 auto;
}

.game-player {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
    border: 4px solid #ff9800;
}

.game-iframe-full {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.play-reminder {
    padding: 4rem 2rem;
}

.play-reminder-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    background: rgba(255, 235, 59, 0.1);
    padding: 2.5rem;
    border-radius: 15px;
    border: 3px solid #ffeb3b;
}

.play-reminder-container h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: #ffeb3b;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.play-reminder-container p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Legal Pages */
.legal-page {
    padding: 5rem 2rem;
    min-height: 70vh;
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-container h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3.5rem;
    color: #ff9800;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.legal-date {
    font-size: 1rem;
    color: #9e9e9e;
    margin-bottom: 3rem;
}

.legal-block {
    margin-bottom: 3rem;
}

.legal-block h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: #ff9800;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.legal-block p, .legal-block li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-block ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.warning-block {
    background: rgba(255, 152, 0, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border-left: 6px solid #ff9800;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #d84315 0%, #ff6f00 100%);
    border-top: 4px solid #ff9800;
    padding: 3rem 2rem 1.5rem;
    margin-top: 5rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    font-family: 'Bebas Neue', sans-serif;
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ffe0b2;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.footer-links a:hover {
    color: #fff;
}

.footer-desc {
    color: #ffe0b2;
    line-height: 1.6;
    font-weight: 600;
}

.footer-base {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.3);
}

.footer-base p {
    color: #ffccbc;
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .menu-btn {
        display: flex;
        z-index: 1001;
    }

    .site-nav {
        position: fixed;
        left: -100%;
        top: 75px;
        flex-direction: column;
        background: linear-gradient(135deg, #d84315 0%, #ff6f00 100%);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 2rem 0;
        gap: 0;
        border-top: 3px solid #ff9800;
    }

    .site-nav.active {
        left: 0;
    }

    .nav-item {
        display: block;
        margin: 0.8rem 0;
        padding: 1rem;
        font-size: 1.3rem;
    }

    .hero-content-box h1 {
        font-size: 2.8rem;
    }

    .hero-lead {
        font-size: 1.5rem;
    }

    .hero-text {
        font-size: 1.1rem;
    }

    .about-text h2 {
        font-size: 2.3rem;
    }

    .warning-container {
        grid-template-columns: 1fr;
    }

    .game-frame {
        height: 450px;
    }

    .game-iframe-full {
        height: 500px;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .play-hero-content h1 {
        font-size: 2.8rem;
    }

    .legal-container h1 {
        font-size: 2.5rem;
    }

    .age-modal-box {
        margin: 1rem;
        padding: 2rem;
    }

    .age-modal-box h2 {
        font-size: 2rem;
    }

    .age-modal-buttons {
        flex-direction: column;
    }

    .age-yes, .age-no {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-banner {
        padding: 5rem 1rem;
    }

    .hero-content-box h1 {
        font-size: 2.2rem;
    }

    .logo-name {
        font-size: 1.5rem;
    }

    .header-container {
        padding: 1rem;
    }
}
