* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    color: #e0e0e0;
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: rgba(15, 12, 41, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #7C3AED;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
}

.logo svg {
    filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.5));
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

nav a:hover {
    color: #7C3AED;
    border-bottom: 2px solid #7C3AED;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #7C3AED;
    transition: all 0.3s;
    border-radius: 3px;
}

.hero {
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #7C3AED 0%, #A78BFA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 30px;
    color: #c0c0c0;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(124, 58, 237, 0.2);
    border: 2px solid #7C3AED;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 16px;
}

.game-section {
    padding: 60px 0;
}

.game-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 40px;
    color: #fff;
}

.game-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(15, 12, 41, 0.7);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #7C3AED;
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
}

.game-info {
    max-width: 900px;
    margin: 30px auto 0;
    text-align: center;
    font-size: 18px;
    color: #c0c0c0;
}

.info-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    background: rgba(15, 12, 41, 0.7);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid rgba(124, 58, 237, 0.3);
    transition: all 0.3s;
}

.info-card:hover {
    border-color: #7C3AED;
    transform: translateY(-5px);
}

.info-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.info-card p {
    color: #c0c0c0;
    line-height: 1.8;
}

.notice-section {
    padding: 60px 0;
}

.notice-box {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(124, 58, 237, 0.1);
    border: 2px solid #7C3AED;
    border-radius: 15px;
    padding: 40px;
}

.notice-box h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #fff;
}

.notice-box ul {
    list-style: none;
}

.notice-box li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(124, 58, 237, 0.3);
    line-height: 1.8;
}

.notice-box li:last-child {
    border-bottom: none;
}

.notice-box strong {
    color: #A78BFA;
}

.features-section {
    padding: 60px 0;
}

.features-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #fff;
}

.features-list {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature {
    display: flex;
    gap: 30px;
    background: rgba(15, 12, 41, 0.7);
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #7C3AED;
}

.feature-number {
    font-size: 48px;
    font-weight: 900;
    color: #7C3AED;
    min-width: 80px;
}

.feature-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #fff;
}

.feature-content p {
    color: #c0c0c0;
    line-height: 1.8;
}

.play-header {
    padding: 60px 0 40px;
    text-align: center;
}

.play-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #fff;
}

.play-header p {
    font-size: 20px;
    color: #c0c0c0;
}

.game-play-section {
    padding: 40px 0 60px;
}

.game-container-full {
    max-width: 1200px;
    margin: 0 auto;
    background: rgba(15, 12, 41, 0.7);
    padding: 20px;
    border-radius: 15px;
    border: 2px solid #7C3AED;
}

.game-frame-full {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 10px;
}

.play-info {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.02);
}

.info-box {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(15, 12, 41, 0.7);
    padding: 40px;
    border-radius: 15px;
    border: 2px solid rgba(124, 58, 237, 0.3);
}

.info-box h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: #fff;
}

.controls-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.control-item strong {
    display: block;
    color: #A78BFA;
    margin-bottom: 8px;
    font-size: 18px;
}

.control-item p {
    color: #c0c0c0;
    line-height: 1.7;
}

.reminder-section {
    padding: 40px 0 60px;
}

.reminder-box {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(124, 58, 237, 0.15);
    border: 2px solid #7C3AED;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
}

.reminder-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.reminder-box p {
    font-size: 18px;
    color: #c0c0c0;
    line-height: 1.8;
}

.legal-header {
    padding: 60px 0 40px;
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
}

.legal-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #fff;
}

.legal-date {
    color: #c0c0c0;
    font-size: 16px;
}

.legal-content {
    padding: 60px 0;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(15, 12, 41, 0.5);
    padding: 50px;
    border-radius: 15px;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.legal-document h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #A78BFA;
}

.legal-document h2:first-child {
    margin-top: 0;
}

.legal-document h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #c0c0c0;
}

.legal-document p {
    margin-bottom: 15px;
    color: #b0b0b0;
    line-height: 1.8;
}

.legal-document ul {
    margin: 15px 0 15px 30px;
    color: #b0b0b0;
}

.legal-document li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.disclaimer-highlight {
    background: rgba(124, 58, 237, 0.15);
    border: 2px solid #7C3AED;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 40px;
}

.disclaimer-highlight h2 {
    margin-top: 0 !important;
    margin-bottom: 15px;
}

.disclaimer-footer-notice {
    background: rgba(124, 58, 237, 0.2);
    border-left: 4px solid #7C3AED;
    padding: 20px;
    margin-top: 40px;
    border-radius: 5px;
}

.disclaimer-footer-notice p {
    margin-bottom: 0;
    font-weight: 500;
    color: #fff;
}

footer {
    background: rgba(15, 12, 41, 0.95);
    padding: 50px 0 30px;
    border-top: 2px solid #7C3AED;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.footer-section h4 {
    color: #A78BFA;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p {
    color: #c0c0c0;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #c0c0c0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #7C3AED;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(124, 58, 237, 0.3);
    color: #a0a0a0;
    font-size: 14px;
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 3px solid #7C3AED;
    box-shadow: 0 0 50px rgba(124, 58, 237, 0.5);
}

.age-gate-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.age-gate-content h2 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 28px;
}

.age-gate-content p {
    color: #c0c0c0;
    margin-bottom: 15px;
    font-size: 16px;
}

.age-notice {
    color: #A78BFA;
    font-weight: 500;
    margin-bottom: 30px !important;
}

.age-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-confirm,
.btn-decline {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-confirm {
    background: #7C3AED;
    color: #fff;
}

.btn-confirm:hover {
    background: #6D28D9;
    transform: scale(1.05);
}

.btn-decline {
    background: rgba(255, 255, 255, 0.1);
    color: #c0c0c0;
}

.btn-decline:hover {
    background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(15, 12, 41, 0.98);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        transform: translateX(-100%);
        transition: transform 0.3s;
        border-bottom: 2px solid #7C3AED;
    }

    nav.active {
        transform: translateX(0);
    }

    nav a {
        padding: 15px 0;
        border-bottom: 1px solid rgba(124, 58, 237, 0.3);
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-badges {
        flex-direction: column;
        align-items: center;
    }

    .badge {
        width: 100%;
        max-width: 300px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .feature {
        flex-direction: column;
        gap: 15px;
    }

    .feature-number {
        min-width: auto;
    }

    .game-frame {
        height: 450px;
    }

    .game-frame-full {
        height: 500px;
    }

    .legal-document {
        padding: 30px 20px;
    }

    .age-gate-content {
        margin: 20px;
        padding: 30px 20px;
    }

    .controls-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .game-section h2,
    .features-section h2 {
        font-size: 28px;
    }

    .info-card {
        padding: 25px;
    }

    .notice-box {
        padding: 25px;
    }

    .feature-number {
        font-size: 36px;
    }

    .game-frame {
        height: 400px;
    }
}