* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #1a1a1a;
    color: #e0e0e0;
    line-height: 1.6;
}

/* Age Verification */
.age-verification {
    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-verification.show {
    display: flex;
}

.age-box {
    background: linear-gradient(135deg, #ff6b00 0%, #ff9500 100%);
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(255, 107, 0, 0.4);
}

.age-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.age-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
}

.age-box p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.95);
}

.age-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.age-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.age-btn-confirm {
    background: #fff;
    color: #ff6b00;
}

.age-btn-confirm:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.age-btn-deny {
    background: #333;
    color: #fff;
}

.age-btn-deny:hover {
    background: #444;
    transform: scale(1.05);
}

/* Layout */
.layout-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 280px;
    background: #111;
    border-right: 2px solid #ff6b00;
    display: flex;
    flex-direction: column;
    position: fixed;
    height: 100vh;
    z-index: 1000;
    transition: transform 0.3s;
}

.sidebar-header {
    padding: 30px 20px;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: #ff6b00;
}

.sidebar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.sidebar-toggle span {
    width: 25px;
    height: 3px;
    background: #ff6b00;
    transition: 0.3s;
}

.sidebar-nav {
    flex: 1;
    padding: 30px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.nav-link {
    padding: 15px 20px;
    color: #b0b0b0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    transition: all 0.3s;
    border-left: 4px solid transparent;
}

.nav-link:hover {
    background: #1a1a1a;
    color: #ff6b00;
    border-left-color: #ff6b00;
}

.nav-link.active {
    background: #1a1a1a;
    color: #ff6b00;
    border-left-color: #ff6b00;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 0.85rem;
    color: #666;
}

.sidebar-footer p {
    margin: 5px 0;
}

/* Main Content */
.main-content {
    margin-left: 280px;
    flex: 1;
    min-height: 100vh;
}

.content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #ff6b00 0%, #ff9500 100%);
    padding: 100px 30px;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="2" height="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
}

.hero-badges {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 700;
    color: #fff;
    backdrop-filter: blur(10px);
}

/* Warning Section */
.warning-section {
    padding: 80px 0;
    background: #1a1a1a;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    color: #ff6b00;
}

.warning-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.warning-card {
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid;
}

.card-red {
    background: #2a1515;
    border-left-color: #ff4444;
}

.card-blue {
    background: #15182a;
    border-left-color: #4466ff;
}

.card-orange {
    background: #2a2015;
    border-left-color: #ff6b00;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.warning-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fff;
}

.warning-card p {
    line-height: 1.8;
    color: #b0b0b0;
}

/* Featured Game */
.featured-game {
    padding: 80px 0;
    background: #111;
}

.game-header {
    text-align: center;
    margin-bottom: 40px;
}

.game-description {
    font-size: 1.2rem;
    color: #b0b0b0;
    max-width: 800px;
    margin: 0 auto;
}

.game-embed {
    background: #000;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #ff6b00;
}

.game-display {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #1a1a1a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-box {
    background: #222;
    padding: 40px;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.feature-box:hover {
    border-color: #ff6b00;
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff6b00;
}

.feature-box p {
    color: #b0b0b0;
    line-height: 1.8;
}

/* Info Section */
.info-section {
    padding: 80px 0;
    background: #111;
}

.info-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.info-text h2 {
    font-size: 2.5rem;
    color: #ff6b00;
    margin-bottom: 30px;
}

.info-text p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #b0b0b0;
    font-size: 1.1rem;
}

.info-highlights {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.highlight-item {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #ff6b00;
}

.highlight-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #fff;
}

.highlight-item p {
    color: #b0b0b0;
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ff6b00 0%, #ff9500 100%);
}

.cta-box {
    text-align: center;
}

.cta-box h2 {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

.cta-box > p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
}

.cta-link {
    display: inline-block;
    background: #fff;
    color: #ff6b00;
    padding: 20px 60px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.3rem;
    transition: all 0.3s;
}

.cta-link:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-disclaimer {
    margin-top: 20px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Play Page */
.page-header {
    background: linear-gradient(135deg, #ff6b00 0%, #ff9500 100%);
    padding: 80px 30px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
}

.gameplay-info {
    padding: 60px 0;
    background: #1a1a1a;
}

.info-panels {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-panel {
    background: #222;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.panel-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.info-panel h3 {
    font-size: 1.5rem;
    color: #ff6b00;
    margin-bottom: 15px;
}

.info-panel p {
    color: #b0b0b0;
    line-height: 1.7;
}

.game-area {
    padding: 60px 0;
    background: #111;
}

.game-frame-wrapper {
    background: #000;
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #ff6b00;
}

.game-player {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
}

.play-notice {
    padding: 60px 0;
    background: #1a1a1a;
}

.notice-box {
    background: #222;
    padding: 40px;
    border-radius: 15px;
    border-left: 5px solid #ff6b00;
    text-align: center;
}

.notice-box h3 {
    font-size: 1.8rem;
    color: #ff6b00;
    margin-bottom: 20px;
}

.notice-box p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #b0b0b0;
}

/* Legal Pages */
.legal-date {
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
}

.legal-section {
    padding: 60px 0;
    background: #1a1a1a;
}

.legal-document {
    background: #222;
    padding: 60px;
    border-radius: 15px;
}

.legal-document h2 {
    font-size: 1.8rem;
    color: #ff6b00;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document p {
    color: #b0b0b0;
    line-height: 1.9;
    margin-bottom: 20px;
}

/* Footer */
.site-footer {
    background: #000;
    padding: 60px 0 20px;
    border-top: 3px solid #ff6b00;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.3rem;
    color: #ff6b00;
    margin-bottom: 20px;
}

.footer-col p {
    color: #888;
    line-height: 1.7;
    margin-bottom: 15px;
}

.support-links,
.footer-menu {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.support-links a,
.footer-menu a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.support-links a:hover,
.footer-menu a:hover {
    color: #ff6b00;
}

.footer-bar {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #666;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .sidebar {
        transform: translateX(-100%);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    .sidebar-toggle {
        display: flex;
    }

    .main-content {
        margin-left: 0;
    }

    .sidebar-header {
        position: relative;
    }

    .info-split {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 2.2rem;
    }

    .tagline {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .cta-box h2 {
        font-size: 2rem;
    }

    .legal-document {
        padding: 30px 20px;
    }

    .game-display,
    .game-player {
        height: 400px;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .content-wrapper {
        padding: 0 20px;
    }
}
