* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    background: #0a0a0a;
    color: #e0e0e0;
    overflow-x: hidden;
}

/* Age Gate */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-gate.hidden {
    display: none;
}

.age-gate-box {
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    margin: 20px;
    border: 2px solid #ff9500;
    box-shadow: 0 0 40px rgba(255, 149, 0, 0.3);
}

.age-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.age-gate-box h2 {
    color: #ff9500;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.age-gate-box p {
    color: #b0b0b0;
    font-size: 16px;
    margin-bottom: 12px;
}

.age-actions {
    margin-top: 35px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn-confirm,
.btn-deny {
    padding: 15px 35px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Raleway', sans-serif;
}

.btn-confirm {
    background: linear-gradient(135deg, #ff9500, #ff6b00);
    color: white;
}

.btn-confirm:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(255, 149, 0, 0.5);
}

.btn-deny {
    background: #333;
    color: #999;
}

.btn-deny:hover {
    background: #444;
}

/* Sidebar */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
    border-right: 2px solid #ff9500;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    transition: left 0.3s ease;
}

.sidebar-header {
    padding: 30px 20px;
    border-bottom: 1px solid #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo {
    font-size: 24px;
    font-weight: 800;
    color: #ff9500;
    letter-spacing: 2px;
}

.sidebar-close {
    display: none;
    background: none;
    border: none;
    color: #ff9500;
    font-size: 32px;
    cursor: pointer;
    line-height: 1;
}

.sidebar-nav {
    flex: 1;
    padding: 30px 0;
}

.nav-link {
    display: block;
    padding: 15px 30px;
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(255, 149, 0, 0.1);
    color: #ff9500;
    border-left-color: #ff9500;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid #333;
    text-align: center;
    font-size: 12px;
    color: #666;
}

.sidebar-footer p {
    margin: 5px 0;
}

/* Main Wrapper */
.main-wrapper {
    margin-left: 280px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Top Bar */
.top-bar {
    background: #1a1a1a;
    padding: 15px 30px;
    border-bottom: 1px solid #333;
    display: none;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    background: none;
    border: none;
    color: #ff9500;
    font-size: 24px;
    cursor: pointer;
}

.top-logo {
    font-size: 20px;
    font-weight: 800;
    color: #ff9500;
    letter-spacing: 2px;
}

/* Content */
.content {
    flex: 1;
}

/* Welcome Banner */
.welcome-banner {
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.15) 0%, rgba(255, 107, 0, 0.15) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect fill="%23111" width="100" height="100"/></svg>');
    padding: 100px 40px;
    text-align: center;
    border-bottom: 3px solid #ff9500;
    position: relative;
}

.banner-overlay h1 {
    font-size: 52px;
    font-weight: 800;
    color: #ff9500;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.tagline {
    font-size: 20px;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.banner-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff9500, #ff6b00);
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 16px;
}

/* Alert Section */
.alert-section {
    padding: 50px 40px;
    background: #0d0d0d;
}

.alert-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.alert-item {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
    border-left: 4px solid;
}

.alert-danger {
    border-left-color: #e74c3c;
}

.alert-info {
    border-left-color: #3498db;
}

.alert-warning {
    border-left-color: #f39c12;
}

.alert-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.alert-text strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: #ff9500;
}

.alert-text p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.6;
}

/* Game Showcase */
.game-showcase {
    padding: 60px 40px;
    background: #0a0a0a;
}

.showcase-header {
    text-align: center;
    margin-bottom: 40px;
}

.showcase-header h2 {
    font-size: 42px;
    color: #ff9500;
    margin-bottom: 15px;
    font-weight: 700;
}

.showcase-header p {
    font-size: 18px;
    color: #b0b0b0;
}

.game-embed {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 40px rgba(255, 149, 0, 0.2);
}

.game-iframe {
    width: 100%;
    height: 650px;
    border: none;
    display: block;
}

.game-meta {
    text-align: center;
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.meta-tag {
    background: #1a1a1a;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    color: #ff9500;
    border: 1px solid #333;
}

/* About Section */
.about-voralis {
    padding: 60px 40px;
    background: #0d0d0d;
}

.about-voralis h2 {
    text-align: center;
    font-size: 42px;
    color: #ff9500;
    margin-bottom: 50px;
    font-weight: 700;
}

.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.about-block {
    background: #1a1a1a;
    padding: 35px 30px;
    border-radius: 15px;
    border: 1px solid #333;
    position: relative;
}

.block-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(255, 149, 0, 0.1);
}

.about-block h3 {
    font-size: 24px;
    color: #ff9500;
    margin-bottom: 15px;
    font-weight: 600;
}

.about-block p {
    color: #b0b0b0;
    line-height: 1.7;
}

/* Benefits Section */
.benefits-section {
    padding: 60px 40px;
    background: #0a0a0a;
}

.benefits-section h2 {
    text-align: center;
    font-size: 42px;
    color: #ff9500;
    margin-bottom: 50px;
    font-weight: 700;
}

.benefits-columns {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.benefit-col {
    background: #1a1a1a;
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #333;
    transition: transform 0.3s ease;
}

.benefit-col:hover {
    transform: translateY(-5px);
    border-color: #ff9500;
}

.benefit-icon {
    font-size: 42px;
    margin-bottom: 20px;
}

.benefit-col h4 {
    font-size: 20px;
    color: #ff9500;
    margin-bottom: 12px;
    font-weight: 600;
}

.benefit-col p {
    color: #b0b0b0;
    font-size: 14px;
    line-height: 1.6;
}

/* Responsibility Section */
.responsibility-section {
    padding: 60px 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    border-top: 2px solid #ff9500;
    border-bottom: 2px solid #ff9500;
}

.responsibility-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.responsibility-content h2 {
    font-size: 36px;
    color: #ff9500;
    margin-bottom: 25px;
    font-weight: 700;
}

.responsibility-content p {
    font-size: 16px;
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 30px;
}

.support-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.support-links a {
    background: #1a1a1a;
    color: #ff9500;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid #ff9500;
    transition: all 0.3s ease;
    font-weight: 500;
}

.support-links a:hover {
    background: #ff9500;
    color: #0a0a0a;
}

/* Play Page */
.play-hero {
    background: linear-gradient(135deg, rgba(255, 149, 0, 0.15) 0%, rgba(255, 107, 0, 0.15) 100%);
    padding: 60px 40px;
    text-align: center;
    border-bottom: 2px solid #ff9500;
}

.play-hero h1 {
    font-size: 46px;
    color: #ff9500;
    margin-bottom: 15px;
    font-weight: 800;
}

.play-description {
    font-size: 18px;
    color: #b0b0b0;
}

.full-game-section {
    padding: 40px;
    background: #0a0a0a;
}

.game-fullscreen {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(255, 149, 0, 0.3);
}

.game-iframe-large {
    width: 100%;
    height: 750px;
    border: none;
    display: block;
}

.game-instructions {
    padding: 50px 40px;
    background: #0d0d0d;
}

.game-instructions h3 {
    text-align: center;
    font-size: 32px;
    color: #ff9500;
    margin-bottom: 40px;
    font-weight: 700;
}

.instructions-grid {
    max-width: 900px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.instruction-item {
    background: #1a1a1a;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #333;
}

.inst-num {
    display: block;
    font-size: 32px;
    font-weight: 800;
    color: #ff9500;
    margin-bottom: 15px;
}

.instruction-item p {
    color: #b0b0b0;
    font-size: 14px;
}

.tech-note {
    max-width: 800px;
    margin: 0 auto;
    background: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #ff9500;
}

.tech-note h4 {
    color: #ff9500;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}

.tech-note ul {
    list-style: none;
}

.tech-note li {
    padding: 10px 0;
    padding-left: 25px;
    color: #b0b0b0;
    position: relative;
    line-height: 1.6;
}

.tech-note li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: #ff9500;
}

/* Legal Pages */
.legal-content {
    padding: 50px 40px;
    background: #0a0a0a;
}

.legal-content h1 {
    text-align: center;
    font-size: 48px;
    color: #ff9500;
    margin-bottom: 50px;
    font-weight: 800;
}

.legal-text {
    max-width: 1000px;
    margin: 0 auto;
}

.legal-section {
    background: #1a1a1a;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 12px;
    border-left: 4px solid #ff9500;
}

.legal-section h2 {
    color: #ff9500;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-section p {
    color: #b0b0b0;
    line-height: 1.8;
    margin-bottom: 12px;
}

.disclaimer-critical {
    border: 2px solid #ff9500;
    border-left-width: 4px;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
}

/* Footer */
.main-footer {
    background: #0d0d0d;
    padding: 50px 40px 20px;
    border-top: 2px solid #ff9500;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    color: #ff9500;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    color: #b0b0b0;
    line-height: 1.7;
    font-size: 14px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-col a:hover {
    color: #ff9500;
}

.footer-legal {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #666;
    font-size: 13px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .sidebar {
        left: -280px;
    }

    .sidebar.active {
        left: 0;
    }

    .sidebar-close {
        display: block;
    }

    .main-wrapper {
        margin-left: 0;
    }

    .top-bar {
        display: flex;
    }

    .welcome-banner {
        padding: 70px 30px;
    }

    .banner-overlay h1 {
        font-size: 36px;
    }

    .tagline {
        font-size: 16px;
    }

    .game-iframe {
        height: 500px;
    }

    .game-iframe-large {
        height: 550px;
    }

    .showcase-header h2,
    .about-voralis h2,
    .benefits-section h2 {
        font-size: 32px;
    }

    .play-hero h1 {
        font-size: 32px;
    }

    .legal-content h1 {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .alert-container {
        grid-template-columns: 1fr;
    }

    .age-actions {
        flex-direction: column;
    }

    .btn-confirm,
    .btn-deny {
        width: 100%;
    }

    .game-meta {
        flex-direction: column;
        align-items: center;
    }
}
