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

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

.top-bar {
    background: #FF6B35;
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 25px;
}

.top-bar .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
}

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

.brand-text {
    font-size: 24px;
    font-weight: 800;
    color: white;
    letter-spacing: 2px;
}

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

.nav-toggle span {
    width: 30px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
    transition: opacity 0.3s;
    padding: 8px 0;
}

.nav-link:hover,
.nav-link.active {
    opacity: 0.7;
}

.hero-banner {
    position: relative;
    height: 550px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(0, 0, 0, 0.05) 20px,
        rgba(0, 0, 0, 0.05) 40px
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 25px;
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    color: white;
    margin-bottom: 25px;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
}

.hero-desc {
    font-size: 20px;
    color: white;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-btn {
    display: inline-block;
    background: #1A1A1A;
    color: #FF6B35;
    padding: 20px 50px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 2px;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

.highlights {
    padding: 80px 25px;
    background: #2A2A2A;
}

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

.tile {
    background: #1A1A1A;
    padding: 40px 30px;
    border-radius: 12px;
    border-left: 5px solid #FF6B35;
    transition: transform 0.3s;
}

.tile:hover {
    transform: translateX(5px);
}

.tile-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.tile h3 {
    font-size: 22px;
    color: #FF6B35;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: 1px;
}

.tile p {
    color: #B0B0B0;
    line-height: 1.8;
}

.game-showcase {
    padding: 80px 25px;
    background: #1A1A1A;
}

.showcase-header {
    text-align: center;
    margin-bottom: 50px;
}

.showcase-header h2 {
    font-size: 48px;
    color: #FF6B35;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.showcase-header p {
    font-size: 18px;
    color: #B0B0B0;
}

.game-frame-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: #2A2A2A;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.2);
}

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

.game-notice {
    max-width: 1100px;
    margin: 30px auto 0;
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    color: #B0B0B0;
}

.notice-badge {
    background: #FF6B35;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
}

.features-grid {
    padding: 80px 25px;
    background: #2A2A2A;
}

.section-title {
    font-size: 48px;
    color: #FF6B35;
    text-align: center;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 60px;
}

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

.feature-box {
    background: #1A1A1A;
    padding: 35px 30px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    border: 2px solid #333;
    transition: border-color 0.3s;
}

.feature-box:hover {
    border-color: #FF6B35;
}

.box-number {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 100px;
    font-weight: 800;
    color: rgba(255, 107, 53, 0.1);
    line-height: 1;
}

.feature-box h4 {
    font-size: 20px;
    color: #FF6B35;
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

.feature-box p {
    color: #B0B0B0;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.disclaimers {
    padding: 80px 25px;
    background: #1A1A1A;
}

.disclaimer-panel {
    max-width: 1000px;
    margin: 0 auto;
    background: #2A2A2A;
    padding: 50px;
    border-radius: 15px;
    border: 3px solid #FF6B35;
}

.disclaimer-panel h3 {
    font-size: 36px;
    color: #FF6B35;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 800;
    letter-spacing: 2px;
}

.disclaimer-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.disclaimer-item {
    background: #1A1A1A;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #FF6B35;
    color: #B0B0B0;
    line-height: 1.8;
}

.disclaimer-item strong {
    color: #FF6B35;
    display: block;
    margin-bottom: 10px;
    font-size: 16px;
}

.site-footer {
    background: #0D0D0D;
    padding: 60px 25px 20px;
    border-top: 3px solid #FF6B35;
}

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

.footer-section h4 {
    color: #FF6B35;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: 1px;
}

.footer-section p {
    color: #888;
    line-height: 1.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin: 12px 0;
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 13px;
    letter-spacing: 1px;
}

.age-check-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-check-overlay.show {
    display: flex;
}

.age-check-panel {
    background: #2A2A2A;
    padding: 60px 50px;
    border-radius: 15px;
    text-align: center;
    max-width: 550px;
    border: 4px solid #FF6B35;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
}

.age-check-header {
    margin-bottom: 25px;
}

.age-icon {
    font-size: 60px;
    display: block;
    margin-bottom: 15px;
}

.age-check-panel h2 {
    font-size: 32px;
    color: #FF6B35;
    font-weight: 800;
    letter-spacing: 2px;
}

.age-check-panel p {
    font-size: 17px;
    color: #B0B0B0;
    margin-bottom: 15px;
    line-height: 1.7;
}

.age-check-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.age-check-buttons button {
    flex: 1;
    padding: 18px 35px;
    font-size: 18px;
    font-weight: 800;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    letter-spacing: 1px;
}

.btn-yes {
    background: #FF6B35;
    color: white;
}

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

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

.btn-no:hover {
    transform: translateY(-2px);
    background: #555;
}

.document-page {
    padding: 80px 25px;
    background: #2A2A2A;
    min-height: calc(100vh - 200px);
}

.document-page h1 {
    font-size: 52px;
    color: #FF6B35;
    text-align: center;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 50px;
}

.doc-box {
    max-width: 1000px;
    margin: 0 auto;
    background: #1A1A1A;
    padding: 60px;
    border-radius: 15px;
    border: 2px solid #333;
}

.doc-box h2 {
    font-size: 26px;
    color: #FF6B35;
    margin: 35px 0 20px;
    font-weight: 700;
}

.doc-box p,
.doc-box li {
    color: #B0B0B0;
    line-height: 1.9;
    margin-bottom: 15px;
}

.doc-box ul {
    margin: 15px 0 25px 30px;
}

.doc-box strong {
    color: #FF6B35;
}

.warning-panel {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.warning-panel h2 {
    color: white !important;
    margin-top: 0;
}

.warning-panel p {
    color: white;
}

.page-header {
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    padding: 80px 25px;
    text-align: center;
}

.page-header h1 {
    font-size: 56px;
    color: white;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.page-header p {
    font-size: 18px;
    color: white;
}

.play-section {
    padding: 80px 25px;
    background: #1A1A1A;
}

.game-display {
    max-width: 1200px;
    margin: 0 auto;
    background: #2A2A2A;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.2);
}

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

.game-info {
    padding: 80px 25px;
    background: #2A2A2A;
}

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

.info-tile {
    background: #1A1A1A;
    padding: 35px 30px;
    border-radius: 12px;
    border-left: 5px solid #FF6B35;
}

.info-tile h3 {
    font-size: 20px;
    color: #FF6B35;
    margin-bottom: 15px;
    font-weight: 800;
}

.info-tile p {
    color: #B0B0B0;
    line-height: 1.8;
}

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

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: #FF6B35;
        flex-direction: column;
        padding: 30px 20px;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.5);
        transition: left 0.3s;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-desc {
        font-size: 17px;
    }

    .game-frame {
        height: 500px;
    }

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

    .age-check-panel {
        margin: 20px;
        padding: 40px 30px;
    }

    .age-check-buttons {
        flex-direction: column;
    }

    .doc-box {
        padding: 35px 25px;
    }

    .page-header h1 {
        font-size: 40px;
    }

    .disclaimer-panel {
        padding: 35px 25px;
    }
}
