* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
}

/* Age Gate */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    backdrop-filter: blur(10px);
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    background: linear-gradient(135deg, #115e59 0%, #14b8a6 100%);
    padding: 50px 40px;
    border-radius: 10px;
    text-align: center;
    max-width: 450px;
    box-shadow: 0 25px 50px rgba(20, 184, 166, 0.4);
}

.age-gate-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.age-gate-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.age-gate-content p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.age-disclaimer {
    font-size: 1rem;
    margin-top: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    font-style: italic;
}

.age-gate-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-btn-confirm, .age-btn-decline {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
}

.age-btn-confirm {
    background: #ffffff;
    color: #0a0a0a;
}

.age-btn-confirm:hover {
    background: #f0f0f0;
    transform: scale(1.05);
}

.age-btn-decline {
    background: #ef4444;
    color: white;
}

.age-btn-decline:hover {
    background: #dc2626;
    transform: scale(1.05);
}

/* Page Layout */
.page-wrapper {
    display: flex;
    min-height: 100vh;
}

/* Sidebar */
.sidebar {
    width: 280px;
    background: linear-gradient(180deg, #0f766e 0%, #115e59 100%);
    position: fixed;
    left: 0;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.sidebar-header {
    padding: 30px 20px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.brand-name {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.brand-name small {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.8;
}

.sidebar-toggle {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 5px;
}

.sidebar-nav {
    flex: 1;
    padding: 30px 0;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 30px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    font-weight: 500;
}

.nav-link:hover, .nav-link.active {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-left: 4px solid #14b8a6;
}

.nav-icon {
    font-size: 1.5rem;
}

.sidebar-footer {
    padding: 20px;
    text-align: center;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

.sidebar-footer .small {
    font-size: 0.9rem;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 999;
    background: #14b8a6;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
    flex-direction: column;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

/* Main Content */
.main-content {
    margin-left: 280px;
    flex: 1;
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 50%, #0d9488 100%);
    padding: 100px 40px;
    position: relative;
    overflow: hidden;
}

.hero-section::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.05)" stroke-width="2"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-overlay h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-lead {
    font-size: 1.4rem;
    margin-bottom: 35px;
    line-height: 1.8;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    background: #ffffff;
    color: #0a0a0a;
    padding: 18px 45px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.btn-primary:hover {
    background: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Intro Section */
.intro-section {
    padding: 80px 40px;
    background: #1a1a1a;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #14b8a6;
    font-weight: 700;
}

.intro-content p {
    font-size: 1.3rem;
    margin-bottom: 25px;
    line-height: 1.9;
    color: #d1d5db;
}

/* Features Showcase */
.features-showcase {
    padding: 80px 40px;
    background: #0a0a0a;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    color: #14b8a6;
    font-weight: 700;
}

.features-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    background: #1a1a1a;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #14b8a6;
    transition: all 0.3s ease;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(20, 184, 166, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-box h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #14b8a6;
    font-weight: 600;
}

.feature-box p {
    font-size: 1.1rem;
    color: #d1d5db;
    line-height: 1.7;
}

/* Game Showcase */
.game-showcase {
    padding: 80px 40px;
    background: #1a1a1a;
}

.game-showcase-content {
    max-width: 1000px;
    margin: 0 auto;
}

.showcase-intro {
    text-align: center;
    font-size: 1.3rem;
    color: #d1d5db;
    margin-bottom: 40px;
}

.game-embed {
    background: #0a0a0a;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.game-iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 5px;
}

.game-tips {
    background: rgba(20, 184, 166, 0.1);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(20, 184, 166, 0.3);
}

.game-tips h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #14b8a6;
}

.game-tips ul {
    list-style: none;
    font-size: 1.2rem;
    color: #d1d5db;
}

.game-tips li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
}

.game-tips li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #14b8a6;
    font-weight: bold;
}

/* Legal Notice */
.legal-notice {
    padding: 80px 40px;
    background: #0a0a0a;
}

.notice-content {
    max-width: 1100px;
    margin: 0 auto;
}

.notice-content h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #fbbf24;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.notice-item {
    background: rgba(251, 191, 36, 0.1);
    padding: 30px;
    border-radius: 8px;
    border: 2px solid rgba(251, 191, 36, 0.3);
}

.notice-item h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #fbbf24;
}

.notice-item p {
    font-size: 1.1rem;
    color: #d1d5db;
    line-height: 1.7;
}

/* Responsibility Section */
.responsibility-section {
    padding: 80px 40px;
    background: #1a1a1a;
    text-align: center;
}

.responsibility-text {
    max-width: 900px;
    margin: 0 auto 20px;
    font-size: 1.2rem;
    color: #d1d5db;
    line-height: 1.8;
}

/* Play Page */
.play-header {
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    padding: 60px 40px;
    text-align: center;
}

.play-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.play-description {
    font-size: 1.3rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

.game-play-section {
    padding: 60px 40px;
    background: #1a1a1a;
}

.game-play-container {
    max-width: 1100px;
    margin: 0 auto;
    background: #0a0a0a;
    padding: 20px;
    border-radius: 10px;
}

.game-iframe-full {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 5px;
}

.instructions-panel {
    padding: 60px 40px;
    background: #0a0a0a;
}

.instructions-panel h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    color: #14b8a6;
}

.instructions-layout {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.instruction-card {
    background: #1a1a1a;
    padding: 35px;
    border-radius: 8px;
    text-align: center;
    border-top: 4px solid #14b8a6;
}

.instruction-number {
    width: 60px;
    height: 60px;
    background: #14b8a6;
    color: #0a0a0a;
    font-size: 2rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.instruction-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #14b8a6;
}

.instruction-card p {
    font-size: 1.1rem;
    color: #d1d5db;
    line-height: 1.7;
}

.compatibility-info {
    padding: 60px 40px;
    background: #1a1a1a;
}

.compatibility-info h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    color: #14b8a6;
}

.info-blocks {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-block {
    background: #0a0a0a;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #14b8a6;
}

.info-block h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #14b8a6;
}

.info-block p {
    font-size: 1.1rem;
    color: #d1d5db;
    line-height: 1.7;
}

.play-reminder {
    padding: 60px 40px;
    background: #0a0a0a;
}

.reminder-box {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(16, 185, 129, 0.1);
    padding: 40px;
    border-radius: 10px;
    border: 2px solid rgba(16, 185, 129, 0.3);
    text-align: center;
}

.reminder-box h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #10b981;
}

.reminder-box p {
    font-size: 1.2rem;
    color: #d1d5db;
    line-height: 1.8;
}

/* Legal Pages */
.legal-header {
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 100%);
    padding: 60px 40px;
    text-align: center;
}

.legal-header h1 {
    font-size: 3.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-date {
    font-size: 1.2rem;
    opacity: 0.9;
}

.legal-body {
    padding: 60px 40px;
    background: #1a1a1a;
}

.legal-article {
    max-width: 900px;
    margin: 0 auto;
    background: #0a0a0a;
    padding: 50px;
    border-radius: 10px;
}

.legal-article h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #14b8a6;
    font-weight: 600;
}

.legal-article p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #d1d5db;
    line-height: 1.8;
}

.legal-article ul {
    margin-bottom: 25px;
    padding-left: 30px;
    color: #d1d5db;
}

.legal-article li {
    margin-bottom: 12px;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Footer */
.site-footer {
    background: #0a0a0a;
    padding: 60px 40px 30px;
    border-top: 2px solid #14b8a6;
}

.footer-columns {
    max-width: 1100px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.footer-col h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #14b8a6;
    font-weight: 600;
}

.footer-col p {
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1.1rem;
}

.footer-col a:hover {
    color: #14b8a6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .sidebar-toggle {
        display: block;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .main-content {
        margin-left: 0;
    }
    
    .hero-overlay h1 {
        font-size: 2.5rem;
    }
    
    .hero-lead {
        font-size: 1.2rem;
    }
    
    .game-iframe {
        height: 400px;
    }
    
    .game-iframe-full {
        height: 500px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .legal-article {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .age-gate-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .age-gate-buttons {
        flex-direction: column;
    }
    
    .hero-overlay h1 {
        font-size: 2rem;
    }
    
    .btn-primary {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
}
