* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(135deg, #1a0033 0%, #2d0052 50%, #1a0033 100%);
    color: #e0e0e0;
    min-height: 100vh;
    display: flex;
}

.sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 280px;
    height: 100vh;
    background: linear-gradient(180deg, #4A148C 0%, #6A1B9A 100%);
    padding: 2rem 0;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
    z-index: 100;
    overflow-y: auto;
}

.logo-container {
    padding: 0 1.5rem 2rem;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    margin-bottom: 2rem;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.logo svg {
    width: 80px;
    height: 80px;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.logo-text {
    font-family: 'Orbitron', sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: #FFD700;
    text-align: center;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.nav-links {
    list-style: none;
}

.nav-links li {
    margin-bottom: 0.5rem;
}

.nav-links a {
    display: block;
    padding: 1rem 1.5rem;
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    font-size: 1.1rem;
}

.nav-links a:hover {
    background: rgba(255, 215, 0, 0.1);
    border-left-color: #FFD700;
    color: #FFD700;
}

.nav-links a.active {
    background: rgba(255, 215, 0, 0.2);
    border-left-color: #FFD700;
    color: #FFD700;
    font-weight: 600;
}

.mobile-menu-toggle {
    display: none;
    position: fixed;
    top: 1rem;
    left: 1rem;
    z-index: 200;
    background: #4A148C;
    border: none;
    padding: 0.75rem;
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #FFD700;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.main-content {
    margin-left: 280px;
    flex: 1;
    padding: 3rem;
    width: 100%;
}

.hero-section {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.4) 0%, rgba(123, 31, 162, 0.4) 100%);
    border-radius: 20px;
    margin-bottom: 3rem;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.hero-section h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #e0e0e0;
    font-weight: 300;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-card {
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.info-card.purple {
    background: linear-gradient(135deg, #6A1B9A 0%, #8E24AA 100%);
}

.info-card.gold {
    background: linear-gradient(135deg, #F57F17 0%, #FBC02D 100%);
    color: #1a0033;
}

.info-card.violet {
    background: linear-gradient(135deg, #4A148C 0%, #6A1B9A 100%);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.info-card p {
    line-height: 1.6;
    font-size: 1rem;
}

.important-notices {
    margin-bottom: 3rem;
}

.important-notices h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 2rem;
    text-align: center;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.notice-item {
    background: rgba(74, 20, 140, 0.3);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.notice-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.notice-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.notice-item p {
    line-height: 1.6;
    color: #e0e0e0;
}

.game-showcase {
    margin-bottom: 3rem;
}

.game-showcase h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
    text-align: center;
}

.showcase-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
}

.game-container, .game-container-play {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    background: #000;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
}

.game-container iframe, .game-container-play iframe {
    width: 100%;
    height: 600px;
    border: none;
}

.game-note {
    max-width: 900px;
    margin: 1.5rem auto 0;
    padding: 1rem 1.5rem;
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid #FFD700;
    border-radius: 8px;
}

.game-note p {
    color: #e0e0e0;
    font-size: 1rem;
}

.features-highlight {
    margin-bottom: 3rem;
}

.features-highlight h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 2rem;
    text-align: center;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    padding: 2rem;
    background: rgba(74, 20, 140, 0.3);
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.feature-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: rgba(255, 215, 0, 0.3);
    display: block;
    margin-bottom: 1rem;
}

.feature-item h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.feature-item p {
    line-height: 1.6;
    color: #e0e0e0;
}

.community-message {
    margin-bottom: 3rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.5) 0%, rgba(123, 31, 162, 0.5) 100%);
    border-radius: 20px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.message-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 1.5rem;
    text-align: center;
}

.message-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 1.5rem;
}

.page-header {
    text-align: center;
    padding: 2rem;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.4) 0%, rgba(123, 31, 162, 0.4) 100%);
    border-radius: 15px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.page-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #FFD700;
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #e0e0e0;
}

.legal-content {
    background: rgba(74, 20, 140, 0.2);
    padding: 3rem;
    border-radius: 15px;
    margin-bottom: 3rem;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.legal-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: #FFD700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #e0e0e0;
}

.disclaimer-highlight {
    background: rgba(255, 215, 0, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #FFD700;
    margin: 2rem 0;
}

.disclaimer-highlight h2 {
    margin-top: 0;
}

.disclaimer-summary {
    list-style: none;
    padding-left: 0;
}

.disclaimer-summary li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #e0e0e0;
    line-height: 1.6;
}

.disclaimer-summary li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

.play-instructions {
    margin-bottom: 3rem;
}

.play-instructions h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 2rem;
    text-align: center;
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.instruction-card {
    padding: 2rem;
    background: rgba(74, 20, 140, 0.3);
    border-radius: 12px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    text-align: center;
}

.inst-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.instruction-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: #FFD700;
    margin-bottom: 1rem;
}

.instruction-card p {
    color: #e0e0e0;
    line-height: 1.6;
}

.game-play-area {
    margin-bottom: 3rem;
}

.play-reminders {
    max-width: 900px;
    margin: 0 auto;
}

.reminder-box {
    background: rgba(255, 215, 0, 0.1);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid #FFD700;
}

.reminder-box h3 {
    font-family: 'Orbitron', sans-serif;
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.reminder-box ul {
    list-style: none;
    padding-left: 0;
}

.reminder-box li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #e0e0e0;
    line-height: 1.6;
}

.reminder-box li:before {
    content: "•";
    position: absolute;
    left: 0.5rem;
    color: #FFD700;
    font-size: 1.5rem;
}

.site-footer {
    background: rgba(74, 20, 140, 0.5);
    padding: 3rem;
    border-radius: 15px;
    margin-top: 3rem;
    border-top: 3px solid rgba(255, 215, 0, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.resource-links {
    list-style: none;
    padding: 0;
}

.resource-links li {
    margin-bottom: 0.5rem;
}

.resource-links a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.resource-links a:hover {
    color: #FFF;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.copyright {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: #bbb;
}

.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-verification.hidden {
    display: none;
}

.age-modal {
    background: linear-gradient(135deg, #4A148C 0%, #6A1B9A 100%);
    padding: 3rem;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    border: 3px solid #FFD700;
    box-shadow: 0 10px 50px rgba(255, 215, 0, 0.3);
}

.age-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.age-modal h2 {
    font-family: 'Orbitron', sans-serif;
    color: #FFD700;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.age-modal p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.age-buttons button {
    padding: 1rem 2rem;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-yes {
    background: #4CAF50;
    color: white;
}

.btn-yes:hover {
    background: #45a049;
    transform: scale(1.05);
}

.btn-no {
    background: #f44336;
    color: white;
}

.btn-no:hover {
    background: #da190b;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .sidebar.active {
        transform: translateX(0);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-content {
        margin-left: 0;
        padding: 5rem 1.5rem 2rem;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .info-cards,
    .notice-grid,
    .features-list,
    .instructions-grid {
        grid-template-columns: 1fr;
    }
    
    .game-container iframe,
    .game-container-play iframe {
        height: 400px;
    }
    
    .age-modal {
        margin: 1rem;
        padding: 2rem;
    }
    
    .age-buttons {
        flex-direction: column;
    }
}
