* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #0a0e27;
}

h1, h2, h3, h4 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Age Verification Overlay */
.age-verification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.age-verification-overlay.hidden {
    display: none;
}

.age-verification-box {
    background: linear-gradient(135deg, #1a1f3a 0%, #2d3561 100%);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid #f39c12;
}

.age-verification-box h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #f39c12;
    text-transform: uppercase;
}

.age-verification-box p {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #b0b0b0;
}

.age-verification-actions {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.confirm-btn, .deny-btn {
    padding: 18px 45px;
    border: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.confirm-btn {
    background: #f39c12;
    color: #0a0e27;
}

.confirm-btn:hover {
    background: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(243, 156, 18, 0.4);
}

.deny-btn {
    background: #34495e;
    color: #ecf0f1;
}

.deny-btn:hover {
    background: #2c3e50;
}

/* Layout */
.layout-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #1a1f3a 0%, #0f1320 100%);
    border-right: 2px solid #f39c12;
    position: fixed;
    height: 100vh;
    overflow-y: auto;
    z-index: 1000;
    display: flex;
    flex-direction: column;
}

.sidebar-header {
    padding: 30px 20px;
    border-bottom: 2px solid rgba(243, 156, 18, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.8em;
    color: #f39c12;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.sidebar-close {
    display: none;
    background: none;
    border: none;
    color: #f39c12;
    font-size: 2em;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.sidebar-nav {
    flex: 1;
    padding: 30px 0;
}

.nav-link {
    display: block;
    padding: 18px 30px;
    color: #b0b0b0;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.nav-link:hover {
    background: rgba(243, 156, 18, 0.1);
    color: #f39c12;
    border-left-color: #f39c12;
}

.nav-link.active {
    background: rgba(243, 156, 18, 0.15);
    color: #f39c12;
    border-left-color: #f39c12;
}

.sidebar-footer {
    padding: 30px;
    border-top: 2px solid rgba(243, 156, 18, 0.3);
    text-align: center;
    font-size: 0.9em;
    color: #7f8c8d;
}

.sidebar-footer p {
    margin-bottom: 5px;
}

/* Main Content */
.main-content {
    flex: 1;
    margin-left: 280px;
    background: #0a0e27;
}

.mobile-sidebar-toggle {
    display: none;
    position: fixed;
    top: 15px;
    left: 15px;
    background: #f39c12;
    color: #0a0e27;
    border: none;
    padding: 12px 20px;
    font-size: 1.1em;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    z-index: 999;
    font-family: 'Oswald', sans-serif;
}

.overlay {
    display: none;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    padding: 80px 40px;
    text-align: center;
    border-bottom: 4px solid #d68910;
}

.header-content h2 {
    font-size: 3em;
    color: #0a0e27;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.header-content p {
    font-size: 1.3em;
    color: #1a1f3a;
}

/* Content Sections */
section {
    padding: 60px 40px;
}

.content-box {
    max-width: 1000px;
    margin: 0 auto;
}

.content-box h3 {
    font-size: 2.2em;
    color: #f39c12;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.content-box p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #b0b0b0;
    line-height: 1.8;
}

/* Intro Section */
.intro-section {
    background: #131729;
    border-left: 6px solid #f39c12;
}

/* Featured Game */
.featured-game {
    background: #0a0e27;
}

.game-wrapper {
    margin-top: 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid #f39c12;
}

.game-wrapper iframe {
    display: block;
    width: 100%;
}

/* Key Points Grid */
.key-points {
    background: #131729;
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.point-card {
    padding: 40px;
    border-radius: 15px;
    border: 3px solid;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.point-card.red {
    background: rgba(231, 76, 60, 0.1);
    border-color: #e74c3c;
}

.point-card.green {
    background: rgba(39, 174, 96, 0.1);
    border-color: #27ae60;
}

.point-card.blue {
    background: rgba(52, 152, 219, 0.1);
    border-color: #3498db;
}

.point-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.point-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.point-card h4 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #ecf0f1;
    text-transform: uppercase;
}

.point-card p {
    color: #b0b0b0;
    font-size: 1em;
}

/* Benefits Section */
.benefits {
    background: #0a0e27;
}

.benefits-list {
    margin-top: 40px;
}

.benefit-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding: 30px;
    background: #131729;
    border-radius: 12px;
    border-left: 5px solid #f39c12;
}

.benefit-number {
    font-size: 3em;
    font-weight: 700;
    color: #f39c12;
    font-family: 'Oswald', sans-serif;
    min-width: 80px;
}

.benefit-content h4 {
    font-size: 1.6em;
    color: #ecf0f1;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.benefit-content p {
    color: #b0b0b0;
}

/* Call to Action */
.call-to-action {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    text-align: center;
}

.cta-box h3 {
    font-size: 2.5em;
    color: #0a0e27;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 1.2em;
    color: #1a1f3a;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 20px 50px;
    background: #0a0e27;
    color: #f39c12;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #131729;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Play Page */
.play-content {
    background: #0a0e27;
}

.game-display {
    margin: 40px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid #f39c12;
}

.game-display iframe {
    display: block;
    width: 100%;
}

.tech-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.tech-item {
    background: #131729;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid rgba(243, 156, 18, 0.3);
}

.tech-item h4 {
    font-size: 1.2em;
    color: #f39c12;
    margin-bottom: 12px;
}

.tech-item p {
    font-size: 0.95em;
    color: #b0b0b0;
}

.warning-box {
    background: rgba(231, 76, 60, 0.1);
    border: 3px solid #e74c3c;
    border-radius: 15px;
    margin-top: 40px;
}

.warning-box h3 {
    color: #e74c3c;
}

.reminder-list {
    list-style: none;
    margin-top: 20px;
}

.reminder-list li {
    padding: 12px 0;
    color: #b0b0b0;
    border-bottom: 1px solid rgba(231, 76, 60, 0.2);
}

.reminder-list li:last-child {
    border-bottom: none;
}

/* Legal Pages */
.legal-content {
    background: #0a0e27;
}

.legal-intro {
    background: #131729;
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid #f39c12;
    margin-bottom: 40px;
    font-size: 1.15em;
    color: #b0b0b0;
}

.legal-block {
    margin-bottom: 50px;
    padding: 30px;
    background: #131729;
    border-radius: 12px;
}

.legal-block h3 {
    font-size: 1.8em;
    color: #f39c12;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.legal-block h4 {
    font-size: 1.3em;
    color: #ecf0f1;
    margin: 20px 0 10px;
}

.legal-block p {
    margin-bottom: 15px;
    color: #b0b0b0;
    line-height: 1.8;
}

.legal-block ul {
    margin: 20px 0;
    padding-left: 30px;
    color: #b0b0b0;
}

.legal-block ul li {
    margin-bottom: 12px;
    line-height: 1.7;
}

.warning-block {
    border: 3px solid #e74c3c;
    background: rgba(231, 76, 60, 0.05);
}

.warning-block h3 {
    color: #e74c3c;
}

.danger-block {
    border: 3px solid #c0392b;
    background: rgba(192, 57, 43, 0.05);
}

.danger-block h3 {
    color: #c0392b;
}

.info-block {
    border: 3px solid #3498db;
    background: rgba(52, 152, 219, 0.05);
}

.info-block h3 {
    color: #3498db;
}

.legal-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 2px solid rgba(243, 156, 18, 0.3);
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
}

/* Footer */
.main-footer {
    background: linear-gradient(180deg, #0f1320 0%, #0a0e1a 100%);
    border-top: 3px solid #f39c12;
    padding: 60px 40px 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-col h4 {
    font-size: 1.3em;
    color: #f39c12;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-col p {
    color: #7f8c8d;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #f39c12;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(243, 156, 18, 0.2);
    color: #7f8c8d;
    font-size: 0.95em;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sidebar {
        left: -100%;
        transition: left 0.3s ease;
        width: 80%;
        max-width: 300px;
    }
    
    .sidebar.active {
        left: 0;
    }
    
    .sidebar-close {
        display: block;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .mobile-sidebar-toggle {
        display: block;
    }
    
    .overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 999;
    }
    
    .overlay.active {
        display: block;
    }
    
    .page-header {
        padding: 60px 20px;
        margin-top: 50px;
    }
    
    .header-content h2 {
        font-size: 2em;
    }
    
    .header-content p {
        font-size: 1.1em;
    }
    
    section {
        padding: 40px 20px;
    }
    
    .age-verification-box {
        padding: 30px;
        margin: 20px;
    }
    
    .age-verification-box h2 {
        font-size: 1.8em;
    }
    
    .age-verification-actions {
        flex-direction: column;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
    }
    
    .benefit-number {
        min-width: auto;
    }
}
