* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: #0a0e27;
    display: flex;
    min-height: 100vh;
}

/* Age Verification Modal */
.age-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-modal.show {
    display: flex;
}

.age-modal-box {
    background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
    padding: 50px 60px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    border: 2px solid #00d9ff;
    box-shadow: 0 0 50px rgba(0, 217, 255, 0.3);
}

.age-modal-box h2 {
    font-size: 2em;
    margin-bottom: 20px;
    color: #00d9ff;
    font-weight: 800;
}

.age-modal-box p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #e0e0e0;
    line-height: 1.7;
}

.age-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
    justify-content: center;
}

.age-buttons button {
    padding: 15px 40px;
    font-size: 1.1em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-yes {
    background: #00d9ff;
    color: #0a0e27;
}

.age-yes:hover {
    background: #00b8d9;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.4);
}

.age-no {
    background: transparent;
    color: #ff4757;
    border: 2px solid #ff4757;
}

.age-no:hover {
    background: #ff4757;
    color: white;
}

/* Sidebar */
.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #1a2332 0%, #0f1419 100%);
    height: 100vh;
    position: fixed;
    left: 0;
    top: 0;
    border-right: 2px solid #00d9ff;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    transition: left 0.3s ease;
}

.sidebar-header {
    padding: 30px 25px;
    border-bottom: 1px solid rgba(0, 217, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #00d9ff;
    font-size: 1.5em;
    font-weight: 800;
}

.close-sidebar {
    display: none;
    background: none;
    border: none;
    color: #00d9ff;
    font-size: 2em;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    line-height: 1;
}

.sidebar-nav {
    flex: 1;
    padding: 20px 0;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.nav-item:hover {
    background: rgba(0, 217, 255, 0.1);
    color: #00d9ff;
    border-left-color: #00d9ff;
}

.nav-item.active {
    background: rgba(0, 217, 255, 0.15);
    color: #00d9ff;
    border-left-color: #00d9ff;
    font-weight: 600;
}

.nav-icon {
    font-size: 1.4em;
}

.nav-text {
    font-size: 1.05em;
    font-weight: 500;
}

.sidebar-footer {
    padding: 25px;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    text-align: center;
    color: #808080;
    font-size: 0.9em;
}

.sidebar-footer p {
    margin: 5px 0;
}

/* Main Content Area */
.main-content {
    flex: 1;
    margin-left: 280px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.top-bar {
    background: linear-gradient(90deg, #1a2332 0%, #0f1419 100%);
    padding: 20px 30px;
    border-bottom: 2px solid #00d9ff;
    display: none;
    align-items: center;
    gap: 20px;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: #00d9ff;
    border-radius: 3px;
    transition: 0.3s;
}

.top-brand {
    color: #00d9ff;
    font-size: 1.5em;
    font-weight: 800;
}

main {
    flex: 1;
}

/* Hero Banner */
.hero-banner {
    background: linear-gradient(135deg, #00d9ff 0%, #0066ff 100%);
    padding: 100px 0;
    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="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: relative;
    z-index: 1;
}

.hero-banner h1 {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: white;
    font-weight: 800;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-lead {
    font-size: 1.4em;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(255, 255, 255, 0.25);
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

/* Content Wrapper */
.content-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
    background: #0f1419;
}

.intro-section h2 {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: #00d9ff;
    font-weight: 700;
}

.intro-text {
    font-size: 1.15em;
    line-height: 1.9;
    margin-bottom: 25px;
    color: #c0c0c0;
}

/* Key Points */
.key-points {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
}

.points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.point-box {
    padding: 40px;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.point-box:hover {
    transform: translateY(-8px);
}

.point-red {
    background: rgba(255, 71, 87, 0.1);
    border-color: #ff4757;
}

.point-red:hover {
    box-shadow: 0 10px 30px rgba(255, 71, 87, 0.3);
}

.point-blue {
    background: rgba(0, 217, 255, 0.1);
    border-color: #00d9ff;
}

.point-blue:hover {
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.point-orange {
    background: rgba(255, 168, 0, 0.1);
    border-color: #ffa800;
}

.point-orange:hover {
    box-shadow: 0 10px 30px rgba(255, 168, 0, 0.3);
}

.point-icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.point-box h3 {
    font-size: 1.6em;
    margin-bottom: 15px;
    color: #00d9ff;
}

.point-box p {
    font-size: 1.05em;
    line-height: 1.8;
    color: #c0c0c0;
}

/* Game Showcase */
.game-showcase {
    padding: 80px 0;
    background: #0f1419;
}

.game-showcase h2 {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #00d9ff;
    text-align: center;
    font-weight: 700;
}

.section-desc {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 50px;
    color: #b0b0b0;
}

.game-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.game-embed {
    background: #1a2332;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #00d9ff;
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 8px;
}

.game-details {
    text-align: center;
    padding: 30px;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.game-details h3 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #00d9ff;
}

.game-details p {
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.8;
    color: #c0c0c0;
}

.cta-button {
    display: inline-block;
    background: #00d9ff;
    color: #0a0e27;
    padding: 15px 45px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15em;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #00b8d9;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.4);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
}

.features-section h2 {
    font-size: 2.5em;
    margin-bottom: 60px;
    color: #00d9ff;
    text-align: center;
    font-weight: 700;
}

.features-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-col {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    padding: 30px;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid #00d9ff;
}

.feature-item h4 {
    font-size: 1.4em;
    margin-bottom: 12px;
    color: #00d9ff;
}

.feature-item p {
    font-size: 1.05em;
    line-height: 1.7;
    color: #b0b0b0;
}

/* How to Start */
.how-to-start {
    padding: 80px 0;
    background: #0f1419;
}

.how-to-start h2 {
    font-size: 2.5em;
    margin-bottom: 60px;
    color: #00d9ff;
    text-align: center;
    font-weight: 700;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    padding: 40px 25px;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.step:hover {
    border-color: #00d9ff;
    transform: translateY(-5px);
}

.step-num {
    font-size: 2.5em;
    font-weight: 800;
    color: #00d9ff;
    margin-bottom: 20px;
}

.step h4 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #fff;
}

.step p {
    color: #b0b0b0;
    font-size: 1.05em;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #00d9ff 0%, #0066ff 100%);
}

.cta-box {
    text-align: center;
    padding: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.cta-box h2 {
    font-size: 2.8em;
    margin-bottom: 25px;
    color: white;
    font-weight: 800;
}

.cta-box > p {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-large {
    display: inline-block;
    background: white;
    color: #0a0e27;
    padding: 20px 60px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3em;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.cta-button-large:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cta-assurance {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 25px;
}

.cta-assurance span {
    font-size: 1.1em;
    font-weight: 600;
    color: white;
}

/* Play Page Specific */
.play-header {
    padding: 60px 0;
    background: linear-gradient(135deg, #00d9ff 0%, #0066ff 100%);
    text-align: center;
}

.play-header h1 {
    font-size: 3em;
    margin-bottom: 15px;
    color: white;
    font-weight: 800;
}

.play-intro {
    font-size: 1.3em;
    color: rgba(255, 255, 255, 0.95);
}

.game-info-bar {
    padding: 50px 0;
    background: #0f1419;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-card {
    background: rgba(0, 217, 255, 0.05);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #00d9ff;
    font-size: 1.05em;
    line-height: 1.7;
    color: #c0c0c0;
}

.info-card strong {
    color: #00d9ff;
}

.main-game-area {
    padding: 40px 0 60px;
    background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
}

.game-container-full {
    background: #1a2332;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid #00d9ff;
    margin-bottom: 30px;
}

.game-iframe-full {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 8px;
}

.game-reminder {
    text-align: center;
    background: rgba(255, 71, 87, 0.15);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #ff4757;
    font-size: 1.15em;
    color: #ff9999;
    font-weight: 600;
}

.gaming-tips {
    padding: 60px 0;
    background: #0f1419;
}

.gaming-tips h2 {
    font-size: 2.3em;
    margin-bottom: 50px;
    color: #00d9ff;
    text-align: center;
    font-weight: 700;
}

.tips-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.tip-block {
    padding: 30px;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.tip-block h4 {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: #00d9ff;
}

.tip-block p {
    font-size: 1.05em;
    line-height: 1.7;
    color: #b0b0b0;
}

/* Legal Pages */
.legal-header {
    padding: 60px 0;
    background: linear-gradient(135deg, #00d9ff 0%, #0066ff 100%);
    text-align: center;
}

.legal-header h1 {
    font-size: 3em;
    margin-bottom: 15px;
    color: white;
    font-weight: 800;
}

.legal-date {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.9);
}

.legal-body {
    padding: 80px 0;
    background: #0f1419;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 217, 255, 0.02);
    padding: 60px;
    border-radius: 12px;
    border: 1px solid rgba(0, 217, 255, 0.1);
}

.legal-container h2 {
    font-size: 2em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #00d9ff;
    font-weight: 700;
}

.legal-container h2:first-child {
    margin-top: 0;
}

.legal-container p {
    font-size: 1.1em;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #c0c0c0;
}

.legal-container ul {
    margin: 20px 0 20px 40px;
}

.legal-container li {
    margin-bottom: 15px;
    font-size: 1.05em;
    line-height: 1.8;
    color: #b0b0b0;
}

.legal-container li strong {
    color: #00d9ff;
}

.legal-highlight {
    background: rgba(0, 217, 255, 0.1);
    padding: 35px;
    border-radius: 10px;
    border-left: 4px solid #00d9ff;
    margin-top: 40px;
}

.legal-highlight h3 {
    font-size: 1.7em;
    margin-bottom: 20px;
    color: #00d9ff;
}

.legal-highlight p {
    font-size: 1.15em;
    margin-bottom: 15px;
    color: #e0e0e0;
}

.legal-highlight ul {
    margin: 20px 0 0 25px;
}

.legal-highlight li {
    margin-bottom: 12px;
    font-size: 1.1em;
    color: #e0e0e0;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1a2332 0%, #0f1419 100%);
    padding: 60px 0 30px;
    border-top: 2px solid #00d9ff;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.3em;
    margin-bottom: 20px;
    color: #00d9ff;
    font-weight: 700;
}

.footer-col p {
    line-height: 1.8;
    color: #b0b0b0;
    font-size: 1.05em;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.05em;
}

.footer-col ul li a:hover {
    color: #00d9ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 217, 255, 0.2);
    color: #808080;
    font-size: 0.95em;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .sidebar {
        left: -280px;
    }
    
    .sidebar.active {
        left: 0;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .top-bar {
        display: flex;
    }
    
    .close-sidebar {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero-banner h1 {
        font-size: 2.5em;
    }
    
    .hero-lead {
        font-size: 1.2em;
    }
    
    .content-wrap {
        padding: 0 20px;
    }
    
    .game-iframe {
        height: 400px;
    }
    
    .game-iframe-full {
        height: 500px;
    }
    
    .legal-container {
        padding: 30px;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .age-modal-box {
        padding: 30px;
        margin: 20px;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .hero-banner h1 {
        font-size: 2em;
    }
    
    .game-iframe {
        height: 300px;
    }
    
    .game-iframe-full {
        height: 400px;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
}
