* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Raleway', sans-serif;
    background: #0f1419;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
}

.layout-wrapper {
    display: flex;
    min-height: 100vh;
}

.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #1a2332 0%, #0f1419 100%);
    border-right: 1px solid rgba(23, 223, 196, 0.2);
    position: fixed;
    height: 100vh;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
    z-index: 1000;
}

.sidebar-header {
    padding: 30px 20px;
    border-bottom: 1px solid rgba(23, 223, 196, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #17dfc4;
}

.brand svg {
    color: #17dfc4;
}

.brand h1 {
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
}

.sidebar-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.sidebar-toggle span {
    width: 20px;
    height: 2px;
    background: #17dfc4;
    transition: all 0.3s;
}

.sidebar-nav {
    flex: 1;
    padding: 20px 0;
    overflow-y: auto;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 25px;
    color: #a0a0a0;
    text-decoration: none;
    transition: all 0.3s;
    border-left: 3px solid transparent;
}

.nav-item:hover {
    background: rgba(23, 223, 196, 0.1);
    color: #17dfc4;
    border-left-color: #17dfc4;
}

.nav-item.active {
    background: rgba(23, 223, 196, 0.15);
    color: #17dfc4;
    border-left-color: #17dfc4;
}

.nav-icon {
    font-size: 1.3rem;
}

.nav-text {
    font-weight: 500;
    font-size: 1.05rem;
}

.sidebar-footer {
    padding: 20px;
    border-top: 1px solid rgba(23, 223, 196, 0.2);
    text-align: center;
    font-size: 0.85rem;
    color: #666;
}

.sidebar-footer p {
    margin: 5px 0;
}

.main-content {
    flex: 1;
    margin-left: 280px;
    min-height: 100vh;
}

.hero-banner {
    background: linear-gradient(135deg, #17dfc4 0%, #1a8f7f 100%);
    padding: 100px 40px;
    text-align: center;
    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"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="2"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: relative;
    z-index: 1;
}

.hero-banner h2 {
    font-size: 3.5rem;
    color: white;
    font-weight: 900;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hero-lead {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: white;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 5px;
}

.content-grid {
    padding: 60px 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    background: #1a2332;
}

.grid-item {
    background: #0f1419;
    padding: 35px;
    border-radius: 10px;
    border: 1px solid rgba(23, 223, 196, 0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(23, 223, 196, 0.3);
}

.item-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.item-icon {
    font-size: 2.5rem;
}

.item-header h3 {
    color: #17dfc4;
    font-size: 1.5rem;
    font-weight: 700;
}

.game-showcase {
    padding: 60px 40px;
    background: #0f1419;
}

.showcase-header {
    text-align: center;
    margin-bottom: 40px;
}

.showcase-header h2 {
    font-size: 2.5rem;
    color: #17dfc4;
    font-weight: 900;
    margin-bottom: 10px;
}

.showcase-header p {
    font-size: 1.2rem;
    color: #a0a0a0;
}

.game-embed {
    max-width: 1000px;
    margin: 0 auto;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(23, 223, 196, 0.3);
}

.game-embed iframe {
    width: 100%;
    height: 650px;
    border: none;
}

.info-blocks {
    padding: 60px 40px;
    background: #1a2332;
}

.info-block {
    padding: 50px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.info-block.dark {
    background: #0f1419;
    border: 1px solid rgba(23, 223, 196, 0.2);
}

.info-block.light {
    background: linear-gradient(135deg, #17dfc4 0%, #1a8f7f 100%);
    color: white;
}

.info-block h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.info-block.light h3 {
    color: white;
}

.info-block.dark h3 {
    color: #17dfc4;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.feature {
    padding: 20px;
    background: rgba(23, 223, 196, 0.05);
    border-radius: 8px;
    border-left: 3px solid #17dfc4;
}

.feature strong {
    display: block;
    margin-bottom: 10px;
    color: #17dfc4;
    font-size: 1.1rem;
}

.disclaimer-banner {
    padding: 50px 40px;
    background: #1a2332;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background: rgba(255, 193, 7, 0.1);
    border-left: 5px solid #ffc107;
    border-radius: 8px;
}

.disclaimer-content h3 {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.footer {
    background: #0a0e13;
    padding: 50px 40px 20px;
    border-top: 1px solid rgba(23, 223, 196, 0.2);
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.brand-small {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #17dfc4;
    margin-bottom: 15px;
}

.brand-small svg {
    color: #17dfc4;
}

.brand-small span {
    font-size: 1.3rem;
    font-weight: 700;
}

.footer-col h4 {
    color: #17dfc4;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-col a {
    display: block;
    color: #a0a0a0;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #17dfc4;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(23, 223, 196, 0.1);
    color: #666;
}

.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-gate.active {
    display: flex;
}

.age-gate-content {
    background: #1a2332;
    padding: 50px;
    border-radius: 15px;
    max-width: 550px;
    text-align: center;
    border: 2px solid #17dfc4;
    box-shadow: 0 10px 50px rgba(23, 223, 196, 0.3);
}

.age-gate-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.age-gate-content h2 {
    color: #17dfc4;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 900;
}

.age-gate-content p {
    margin-bottom: 15px;
    color: #e0e0e0;
}

.age-question {
    font-weight: 700;
    font-size: 1.2rem;
    color: #17dfc4;
    margin-top: 25px;
}

.age-gate-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.age-gate-actions button {
    padding: 15px 40px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.age-gate-actions button:hover {
    transform: scale(1.05);
}

.btn-confirm {
    background: #17dfc4;
    color: #0f1419;
}

.btn-deny {
    background: #666;
    color: white;
}

.page-title {
    background: linear-gradient(135deg, #17dfc4 0%, #1a8f7f 100%);
    padding: 80px 40px;
    text-align: center;
}

.page-title h2 {
    font-size: 3rem;
    color: white;
    font-weight: 900;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.page-title p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.legal-document {
    padding: 60px 40px;
    max-width: 1000px;
    margin: 0 auto;
    background: #1a2332;
}

.legal-document h3 {
    color: #17dfc4;
    font-size: 1.8rem;
    margin: 40px 0 20px;
    font-weight: 700;
}

.legal-document h3:first-child {
    margin-top: 0;
}

.legal-document ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-document li {
    margin-bottom: 10px;
}

.play-instructions {
    padding: 40px;
    background: #0f1419;
    border-radius: 10px;
    border: 1px solid rgba(23, 223, 196, 0.2);
    margin: 40px;
}

.play-instructions h3 {
    color: #17dfc4;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.instruction-list {
    list-style: none;
    padding: 0;
}

.instruction-list li {
    padding: 12px 0 12px 30px;
    position: relative;
}

.instruction-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #17dfc4;
    font-weight: bold;
}

.reminder-box {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 193, 7, 0.1);
    border-left: 4px solid #ffc107;
    border-radius: 5px;
}

.reminder-box p {
    color: #ffc107;
}

.game-player {
    padding: 40px;
    background: #1a2332;
}

.game-frame {
    max-width: 1100px;
    margin: 0 auto;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(23, 223, 196, 0.3);
}

.game-frame iframe {
    width: 100%;
    height: 750px;
    border: none;
}

.warning-box {
    margin-top: 40px;
    padding: 30px;
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border-radius: 10px;
    color: #000;
}

.warning-box h4 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

@media (max-width: 968px) {
    .sidebar {
        transform: translateX(-280px);
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .sidebar-toggle {
        display: flex;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .hero-banner {
        padding: 60px 20px;
    }
    
    .hero-banner h2 {
        font-size: 2rem;
    }
    
    .hero-lead {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .content-grid,
    .game-showcase,
    .info-blocks,
    .disclaimer-banner,
    .legal-document,
    .play-instructions,
    .game-player {
        padding: 40px 20px;
    }
    
    .game-embed iframe,
    .game-frame iframe {
        height: 450px;
    }
    
    .age-gate-content {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .age-gate-actions {
        flex-direction: column;
    }
    
    .age-gate-actions button {
        width: 100%;
    }
}
