* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #e0e0e0;
    line-height: 1.6;
}

/* Sidebar Navigation */
.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #0f3460 0%, #16213e 100%);
    padding: 20px;
    display: flex;
    flex-direction: column;
    z-index: 1000;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ff6b6b;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.close-btn {
    display: none;
    background: none;
    border: none;
    color: #e0e0e0;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px 10px;
}

.nav-menu {
    list-style: none;
    flex-grow: 1;
}

.nav-menu li {
    margin-bottom: 15px;
}

.nav-menu a {
    display: block;
    color: #e0e0e0;
    text-decoration: none;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.nav-menu a:hover {
    background: rgba(255, 107, 107, 0.1);
    border-left-color: #ff6b6b;
    transform: translateX(5px);
}

.nav-menu a.active {
    background: rgba(255, 107, 107, 0.2);
    border-left-color: #ff6b6b;
}

.sidebar-footer {
    margin-top: auto;
    text-align: center;
    padding-top: 20px;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.sidebar-footer p {
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.age-badge {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Mobile Header */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #0f3460;
    padding: 15px 20px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    align-items: center;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #ff6b6b;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.3rem;
    font-weight: 700;
    color: #ff6b6b;
}

/* Main Content */
.main-content {
    margin-left: 280px;
    min-height: 100vh;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    padding: 80px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.4rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.95);
}

.cta-button {
    display: inline-block;
    background: white;
    color: #ff6b6b;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Info Section */
.info-section {
    padding: 60px 20px;
}

.info-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #ff6b6b;
    text-align: center;
}

.info-section > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: rgba(15, 52, 96, 0.5);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid rgba(255, 107, 107, 0.2);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #ff6b6b;
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #ff6b6b;
}

/* Notices Section */
.notices-section {
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.2);
}

.notice-box {
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid #ff6b6b;
    border-radius: 10px;
    padding: 30px;
}

.notice-box h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #ff6b6b;
}

.notice-box ul {
    list-style: none;
    padding-left: 0;
}

.notice-box li {
    padding: 10px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 107, 107, 0.2);
}

.notice-box li:last-child {
    border-bottom: none;
}

/* Game Section */
.game-section {
    padding: 60px 20px;
}

.game-section h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #ff6b6b;
    text-align: center;
}

.game-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.game-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    display: block;
}

.game-container-full {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.game-frame-full {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.game-cta {
    text-align: center;
    margin-top: 30px;
}

.btn-play {
    display: inline-block;
    background: #ff6b6b;
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-play:hover {
    background: #ee5a6f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

/* About Section */
.about-section {
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.2);
}

.about-section h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #ff6b6b;
    text-align: center;
}

.about-section > .container > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.info-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-col {
    background: rgba(15, 52, 96, 0.4);
    padding: 25px;
    border-radius: 10px;
}

.info-col h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #ff6b6b;
}

/* Footer */
.footer {
    background: #0f3460;
    padding: 40px 20px 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #ff6b6b;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ff6b6b;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* Legal Pages */
.legal-header {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    padding: 60px 20px;
    text-align: center;
}

.legal-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.last-updated {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 10px;
}

.legal-content {
    padding: 60px 20px;
}

.legal-text {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 1.8rem;
    color: #ff6b6b;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-text h3 {
    font-size: 1.4rem;
    color: #ff6b6b;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-text p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.legal-text ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-text li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.terms-notice,
.privacy-notice,
.disclaimer-highlight {
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid #ff6b6b;
    border-radius: 10px;
    padding: 25px;
    margin-top: 40px;
}

.terms-notice h3,
.privacy-notice h3,
.disclaimer-highlight h3 {
    color: #ff6b6b;
    margin-bottom: 15px;
}

.disclaimer-highlight ul {
    list-style: none;
    padding-left: 0;
}

.disclaimer-highlight li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 107, 107, 0.2);
}

.disclaimer-highlight li:last-child {
    border-bottom: none;
}

/* Play Page */
.play-header {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    padding: 60px 20px;
    text-align: center;
}

.play-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: 15px;
}

.play-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
}

.play-instructions {
    padding: 40px 20px;
}

.instruction-box {
    background: rgba(255, 107, 107, 0.1);
    border: 2px solid #ff6b6b;
    border-radius: 10px;
    padding: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.instruction-box h3 {
    font-size: 1.6rem;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.instruction-box ul {
    list-style: none;
    padding-left: 0;
}

.instruction-box li {
    padding: 12px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 107, 107, 0.2);
}

.instruction-box li:last-child {
    border-bottom: none;
}

.play-info {
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.2);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.info-item {
    background: rgba(15, 52, 96, 0.4);
    padding: 25px;
    border-radius: 10px;
}

.info-item h3 {
    font-size: 1.4rem;
    color: #ff6b6b;
    margin-bottom: 15px;
}

/* Age Verification Modal */
.age-modal {
    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-modal.active {
    display: flex;
}

.age-modal-content {
    background: linear-gradient(135deg, #0f3460 0%, #16213e 100%);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 3px solid #ff6b6b;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.age-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.age-modal-content h2 {
    font-size: 2rem;
    color: #ff6b6b;
    margin-bottom: 20px;
}

.age-modal-content p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.age-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
}

.btn-yes,
.btn-no {
    padding: 15px 35px;
    border: none;
    border-radius: 30px;
    font-family: 'Rajdhani', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-yes {
    background: #ff6b6b;
    color: white;
}

.btn-yes:hover {
    background: #ee5a6f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.btn-no {
    background: #6c757d;
    color: white;
}

.btn-no:hover {
    background: #5a6268;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .close-btn {
        display: block;
    }
    
    .mobile-header {
        display: flex;
    }
    
    .main-content {
        margin-left: 0;
        padding-top: 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .features-grid,
    .info-columns,
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .game-frame {
        height: 400px;
    }
    
    .game-frame-full {
        height: 500px;
    }
    
    .age-modal-content {
        margin: 20px;
        padding: 30px;
    }
    
    .age-buttons {
        flex-direction: column;
    }
    
    .btn-yes,
    .btn-no {
        width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}
