* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #e4e4e4;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.header {
    background: rgba(13, 13, 35, 0.95);
    border-bottom: 2px solid #6d28d9;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 28px;
    font-weight: 900;
    color: #a78bfa;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logo svg {
    filter: drop-shadow(0 0 10px rgba(109, 40, 217, 0.6));
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #e4e4e4;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #6d28d9, #a78bfa);
    transition: width 0.3s ease;
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.nav a:hover,
.nav a.active {
    color: #a78bfa;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-toggle span {
    width: 30px;
    height: 3px;
    background: #a78bfa;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hero {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(180deg, rgba(109, 40, 217, 0.1) 0%, transparent 100%);
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #a78bfa 0%, #6d28d9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 22px;
    color: #c4c4c4;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(109, 40, 217, 0.3);
    border: 2px solid #6d28d9;
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
}

.notices {
    padding: 80px 0;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.notice-card {
    background: rgba(13, 13, 35, 0.7);
    border: 2px solid #6d28d9;
    border-radius: 15px;
    padding: 35px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.notice-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(109, 40, 217, 0.4);
}

.notice-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.notice-card h3 {
    color: #a78bfa;
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.notice-card p {
    color: #c4c4c4;
    line-height: 1.7;
}

.game-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.game-section h2,
.features h2,
.info-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 900;
    color: #a78bfa;
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #c4c4c4;
    margin-bottom: 50px;
}

.game-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(13, 13, 35, 0.9);
    border: 3px solid #6d28d9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(109, 40, 217, 0.5);
}

.game-frame {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    background: rgba(13, 13, 35, 0.6);
    border: 2px solid rgba(109, 40, 217, 0.5);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #6d28d9;
    background: rgba(13, 13, 35, 0.9);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 52px;
    margin-bottom: 20px;
}

.feature-item h3 {
    color: #a78bfa;
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

.feature-item p {
    color: #c4c4c4;
    line-height: 1.6;
    font-size: 15px;
}

.info-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.info-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.info-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #c4c4c4;
    margin-bottom: 20px;
}

.footer {
    background: rgba(13, 13, 35, 0.95);
    border-top: 2px solid #6d28d9;
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    color: #a78bfa;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 700;
}

.footer-section p {
    color: #c4c4c4;
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: #e4e4e4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #a78bfa;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(109, 40, 217, 0.3);
    color: #999;
    font-size: 14px;
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(5px);
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border: 3px solid #6d28d9;
    border-radius: 20px;
    padding: 50px;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(109, 40, 217, 0.6);
}

.age-gate-icon {
    font-size: 72px;
    margin-bottom: 25px;
}

.age-gate-content h2 {
    color: #a78bfa;
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 900;
}

.age-gate-content p {
    color: #c4c4c4;
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.age-gate-buttons {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.age-btn {
    flex: 1;
    padding: 15px 25px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 16px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.age-yes {
    background: linear-gradient(135deg, #6d28d9 0%, #a78bfa 100%);
    color: white;
}

.age-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(109, 40, 217, 0.6);
}

.age-no {
    background: rgba(255, 255, 255, 0.1);
    color: #e4e4e4;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.age-no:hover {
    background: rgba(255, 255, 255, 0.2);
}

.play-header {
    padding: 60px 0 40px;
    text-align: center;
    background: linear-gradient(180deg, rgba(109, 40, 217, 0.1) 0%, transparent 100%);
}

.play-header h1 {
    font-size: 48px;
    font-weight: 900;
    color: #a78bfa;
    margin-bottom: 10px;
}

.play-header p {
    font-size: 18px;
    color: #c4c4c4;
}

.play-section {
    padding: 40px 0 80px;
}

.play-info {
    margin-bottom: 50px;
}

.play-info h2 {
    text-align: center;
    font-size: 32px;
    color: #a78bfa;
    margin-bottom: 30px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.info-item {
    background: rgba(13, 13, 35, 0.6);
    border: 2px solid rgba(109, 40, 217, 0.5);
    border-radius: 12px;
    padding: 25px;
}

.info-item strong {
    color: #a78bfa;
    font-size: 18px;
    display: block;
    margin-bottom: 10px;
}

.info-item p {
    color: #c4c4c4;
    line-height: 1.6;
    font-size: 14px;
}

.game-container {
    max-width: 1200px;
    margin: 0 auto 50px;
    background: rgba(13, 13, 35, 0.9);
    border: 3px solid #6d28d9;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(109, 40, 217, 0.5);
}

.game-iframe {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.play-notice {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(109, 40, 217, 0.2);
    border: 2px solid #6d28d9;
    border-radius: 15px;
    padding: 30px;
}

.play-notice h3 {
    color: #a78bfa;
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.play-notice ul {
    list-style: none;
    padding: 0;
}

.play-notice ul li {
    color: #c4c4c4;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
}

.play-notice ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #a78bfa;
    font-size: 20px;
}

.legal-header {
    padding: 60px 0 40px;
    text-align: center;
    background: linear-gradient(180deg, rgba(109, 40, 217, 0.1) 0%, transparent 100%);
}

.legal-header h1 {
    font-size: 48px;
    font-weight: 900;
    color: #a78bfa;
    margin-bottom: 10px;
}

.updated {
    color: #999;
    font-size: 16px;
}

.legal-content {
    padding: 40px 0 80px;
}

.terms-wrapper,
.privacy-wrapper,
.disclaimer-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(13, 13, 35, 0.6);
    border: 2px solid rgba(109, 40, 217, 0.5);
    border-radius: 15px;
    padding: 50px;
}

.terms-wrapper h2,
.privacy-wrapper h2,
.disclaimer-wrapper h2 {
    color: #a78bfa;
    font-size: 28px;
    margin: 40px 0 20px 0;
    font-weight: 700;
}

.terms-wrapper h2:first-child,
.privacy-wrapper h2:first-child,
.disclaimer-wrapper h2:first-child {
    margin-top: 0;
}

.terms-wrapper h3,
.privacy-wrapper h3,
.disclaimer-wrapper h3 {
    color: #a78bfa;
    font-size: 22px;
    margin: 30px 0 15px 0;
    font-weight: 600;
}

.terms-wrapper p,
.privacy-wrapper p,
.disclaimer-wrapper p {
    color: #c4c4c4;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

.terms-wrapper ul,
.privacy-wrapper ul,
.disclaimer-wrapper ul {
    color: #c4c4c4;
    margin: 15px 0 15px 30px;
    line-height: 1.8;
}

.terms-wrapper li,
.privacy-wrapper li,
.disclaimer-wrapper li {
    margin-bottom: 10px;
}

.terms-acknowledgment,
.privacy-summary {
    background: rgba(109, 40, 217, 0.2);
    border: 2px solid #6d28d9;
    border-radius: 10px;
    padding: 25px;
    margin-top: 40px;
}

.disclaimer-alert {
    background: rgba(217, 40, 40, 0.2);
    border: 2px solid #d92828;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 40px;
    text-align: center;
}

.disclaimer-alert h2 {
    color: #ff6b6b;
    margin-bottom: 15px;
}

.disclaimer-footer-notice {
    background: rgba(109, 40, 217, 0.3);
    border: 3px solid #6d28d9;
    border-radius: 10px;
    padding: 30px;
    margin-top: 50px;
    text-align: center;
}

.disclaimer-footer-notice p {
    font-size: 18px;
    font-weight: 700;
    color: #a78bfa;
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(13, 13, 35, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        border-top: 2px solid #6d28d9;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .game-frame,
    .game-iframe {
        height: 500px;
    }
    
    .age-gate-content {
        margin: 20px;
        padding: 30px;
    }
    
    .age-gate-buttons {
        flex-direction: column;
    }
    
    .terms-wrapper,
    .privacy-wrapper,
    .disclaimer-wrapper {
        padding: 30px 20px;
    }
    
    .legal-header h1 {
        font-size: 32px;
    }
}
