* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 50%, #16003a 100%);
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #4A148C;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFD700;
    text-decoration: none;
}

.nav-desktop {
    display: none;
    gap: 2rem;
}

.nav-desktop a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-desktop a:hover {
    color: #FFD700;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #FFD700;
    transition: width 0.3s;
}

.nav-desktop a:hover::after {
    width: 100%;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #FFD700;
    transition: all 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-mobile {
    display: none;
    flex-direction: column;
    background: rgba(10, 10, 26, 0.98);
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    padding: 2rem;
    gap: 1rem;
    z-index: 999;
    border-bottom: 2px solid #4A148C;
}

.nav-mobile.active {
    display: flex;
}

.nav-mobile a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s;
    text-align: center;
}

.nav-mobile a:hover {
    background: rgba(74, 20, 140, 0.3);
    color: #FFD700;
}

.hero {
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #4A148C 0%, #7B1FA2 100%);
    color: #FFD700;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(74, 20, 140, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(74, 20, 140, 0.6);
}

.info-section {
    padding: 60px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.info-card {
    background: rgba(26, 10, 46, 0.6);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(74, 20, 140, 0.3);
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #7B1FA2;
    box-shadow: 0 10px 30px rgba(74, 20, 140, 0.3);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.game-section {
    padding: 60px 0;
}

.game-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.game-container {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(10, 10, 26, 0.8);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid rgba(74, 20, 140, 0.5);
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
}

.notice-section {
    padding: 60px 0;
}

.notice-box {
    background: rgba(139, 0, 0, 0.2);
    border: 2px solid #dc143c;
    border-radius: 15px;
    padding: 30px;
}

.notice-box h3 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.notice-box ul {
    list-style: none;
    margin-left: 0;
}

.notice-box li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.notice-box li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #FFD700;
}

.features-section {
    padding: 60px 0;
}

.features-section h2 {
    text-align: center;
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.feature-item {
    background: rgba(26, 10, 46, 0.4);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #7B1FA2;
}

.feature-number {
    font-size: 2rem;
    font-weight: 700;
    color: #FFD700;
    display: block;
    margin-bottom: 1rem;
}

.feature-item h4 {
    color: #FFD700;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.community-section {
    padding: 60px 0;
}

.community-content {
    background: rgba(26, 10, 46, 0.6);
    padding: 50px;
    border-radius: 20px;
    border: 2px solid rgba(74, 20, 140, 0.3);
}

.community-content h2 {
    color: #FFD700;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.community-content p {
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

footer {
    background: rgba(10, 10, 26, 0.95);
    padding: 50px 0 20px;
    margin-top: 60px;
    border-top: 2px solid #4A148C;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h4 {
    color: #FFD700;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #FFD700;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(74, 20, 140, 0.3);
    opacity: 0.8;
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    background: linear-gradient(135deg, #1a0a2e 0%, #4A148C 100%);
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    text-align: center;
    border: 2px solid #FFD700;
    box-shadow: 0 10px 50px rgba(74, 20, 140, 0.5);
}

.age-gate-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.age-gate-content h2 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.age-gate-content p {
    margin-bottom: 2rem;
    line-height: 1.6;
}

.age-gate-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.age-btn {
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}

.age-yes {
    background: #FFD700;
    color: #1a0a2e;
}

.age-yes:hover {
    background: #FFC700;
    transform: scale(1.05);
}

.age-no {
    background: #dc143c;
    color: white;
}

.age-no:hover {
    background: #b01030;
    transform: scale(1.05);
}

.play-header {
    padding: 60px 0 30px;
    text-align: center;
}

.play-header h1 {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.game-play-section {
    padding: 30px 0 60px;
}

.game-info-box {
    background: rgba(26, 10, 46, 0.6);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
    border: 2px solid rgba(74, 20, 140, 0.3);
}

.game-info-box h3 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.game-info-box ul {
    list-style: none;
    margin-left: 0;
}

.game-info-box li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.game-info-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
}

.game-container-large {
    max-width: 1200px;
    margin: 0 auto 30px;
    background: rgba(10, 10, 26, 0.8);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid rgba(74, 20, 140, 0.5);
}

.game-frame-large {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
}

.game-notice {
    text-align: center;
    padding: 20px;
    background: rgba(139, 0, 0, 0.2);
    border: 1px solid #dc143c;
    border-radius: 10px;
}

.legal-section {
    padding: 60px 0;
}

.legal-section h1 {
    font-size: 2.5rem;
    color: #FFD700;
    margin-bottom: 1rem;
}

.legal-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.legal-content {
    background: rgba(26, 10, 46, 0.4);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid rgba(74, 20, 140, 0.3);
}

.legal-content h2 {
    color: #FFD700;
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    color: #FFD700;
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 1rem;
    margin-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-highlight {
    background: rgba(74, 20, 140, 0.3);
    padding: 25px;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 4px solid #FFD700;
}

.disclaimer-alert {
    background: rgba(220, 20, 60, 0.2);
    border: 2px solid #dc143c;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.disclaimer-alert h2 {
    margin-top: 0;
}

.disclaimer-footer-note {
    background: rgba(74, 20, 140, 0.3);
    padding: 25px;
    border-radius: 10px;
    margin-top: 2rem;
    border: 2px solid #FFD700;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
    
    .hamburger {
        display: none;
    }
    
    .info-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    .game-frame {
        height: 700px;
    }
    
    .game-frame-large {
        height: 800px;
    }
}

@media (max-width: 767px) {
    .age-gate-content {
        margin: 20px;
        padding: 30px 20px;
    }
    
    .age-gate-buttons {
        flex-direction: column;
    }
    
    .age-btn {
        width: 100%;
    }
}
