* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0f2e 50%, #0a0a0a 100%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    background: linear-gradient(135deg, #1a0f2e 0%, #2d1b4e 100%);
    padding: 50px 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    border: 3px solid #8b5cf6;
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.5);
}

.age-gate-icon {
    font-size: 80px;
    margin-bottom: 20px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.age-gate-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    margin-bottom: 20px;
    color: #8b5cf6;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.age-gate-content p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #d0d0d0;
}

.age-gate-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.age-btn {
    padding: 15px 35px;
    font-size: 18px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-yes {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    color: white;
}

.age-yes:hover {
    background: linear-gradient(135deg, #9d6ff7 0%, #7e3ae0 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.6);
}

.age-no {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: white;
}

.age-no:hover {
    background: linear-gradient(135deg, #ef4444 0%, #b91c1c 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.6);
}

.main-header {
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 2px solid #8b5cf6;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.navbar {
    padding: 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    max-width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #8b5cf6;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.logo-icon {
    font-size: 36px;
    animation: rotate 4s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #8b5cf6;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #8b5cf6;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover,
.nav-link.active {
    color: #8b5cf6;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 80%;
}

@media (max-width: 968px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        height: 100vh;
        text-align: center;
        transition: 0.3s;
        padding-top: 100px;
        gap: 0;
        backdrop-filter: blur(10px);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0;
    }

    .nav-link {
        display: block;
        padding: 25px;
        font-size: 24px;
    }
}

.main-content {
    width: 100%;
}

.hero-section {
    padding: 100px 5%;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(109, 40, 217, 0.1) 100%);
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    font-weight: 900;
    margin-bottom: 25px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.8);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    color: #d0d0d0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-badge {
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.6);
}

.notice-section {
    padding: 80px 5%;
    background: rgba(139, 92, 246, 0.05);
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.notice-card {
    background: linear-gradient(135deg, rgba(26, 15, 46, 0.8) 0%, rgba(45, 27, 78, 0.8) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #8b5cf6;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.notice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.4);
}

.notice-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.notice-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 26px;
    margin-bottom: 15px;
    color: #8b5cf6;
    text-transform: uppercase;
}

.notice-card p {
    font-size: 18px;
    color: #d0d0d0;
}

.game-section {
    padding: 80px 5%;
    background: rgba(0, 0, 0, 0.3);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #8b5cf6;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

.section-header p {
    font-size: 20px;
    color: #d0d0d0;
}

.game-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.game-frame {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #8b5cf6;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.5);
}

.game-frame iframe {
    width: 100%;
    height: 600px;
    display: block;
}

.game-info {
    background: linear-gradient(135deg, rgba(26, 15, 46, 0.8) 0%, rgba(45, 27, 78, 0.8) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #8b5cf6;
}

.game-info h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: #8b5cf6;
}

.game-info p {
    font-size: 18px;
    margin-bottom: 25px;
    color: #d0d0d0;
}

.game-stats {
    margin: 25px 0;
}

.stat-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.3);
    font-size: 16px;
}

.stat-label {
    color: #8b5cf6;
    font-weight: 600;
}

.stat-value {
    color: #d0d0d0;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(139, 92, 246, 0.4);
    margin-top: 15px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #9d6ff7 0%, #7e3ae0 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.6);
}

.info-section {
    padding: 80px 5%;
    background: rgba(139, 92, 246, 0.05);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.info-card {
    background: linear-gradient(135deg, rgba(26, 15, 46, 0.6) 0%, rgba(45, 27, 78, 0.6) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(139, 92, 246, 0.5);
}

.info-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    margin-bottom: 20px;
    color: #8b5cf6;
}

.info-card p {
    font-size: 18px;
    margin-bottom: 15px;
    color: #d0d0d0;
}

.community-section {
    padding: 100px 5%;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(109, 40, 217, 0.1) 100%);
}

.community-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #8b5cf6;
    margin-bottom: 25px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

.community-content p {
    font-size: 20px;
    color: #d0d0d0;
    max-width: 900px;
    margin: 0 auto 50px;
}

.community-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.stat-box {
    background: linear-gradient(135deg, rgba(26, 15, 46, 0.8) 0%, rgba(45, 27, 78, 0.8) 100%);
    padding: 40px 60px;
    border-radius: 20px;
    border: 2px solid #8b5cf6;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.6);
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: #8b5cf6;
    margin-bottom: 10px;
}

.stat-description {
    font-size: 18px;
    color: #d0d0d0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.main-footer {
    background: rgba(10, 10, 10, 0.95);
    border-top: 2px solid #8b5cf6;
    padding: 60px 5% 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-section {
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: #8b5cf6;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-section p {
    font-size: 16px;
    color: #d0d0d0;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a,
.footer-nav a {
    color: #8b5cf6;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.footer-links a:hover,
.footer-nav a:hover {
    color: #9d6ff7;
    text-decoration: underline;
}

.footer-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(139, 92, 246, 0.3);
    margin-top: 30px;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
    margin-bottom: 10px;
}

.play-page .play-header {
    padding: 80px 5%;
    text-align: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(109, 40, 217, 0.1) 100%);
}

.play-page .play-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #8b5cf6;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

.play-page .play-header p {
    font-size: 20px;
    color: #d0d0d0;
    max-width: 800px;
    margin: 0 auto;
}

.play-game-section {
    padding: 60px 5%;
    background: rgba(0, 0, 0, 0.3);
}

.game-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.game-embed {
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #8b5cf6;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.5);
}

.game-embed iframe {
    width: 100%;
    height: 700px;
    display: block;
}

.play-info {
    padding: 60px 5%;
    background: rgba(139, 92, 246, 0.05);
}

.info-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.info-column {
    background: linear-gradient(135deg, rgba(26, 15, 46, 0.6) 0%, rgba(45, 27, 78, 0.6) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid rgba(139, 92, 246, 0.5);
}

.info-column h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    color: #8b5cf6;
    margin-bottom: 20px;
}

.info-column ul {
    list-style: none;
}

.info-column li {
    font-size: 16px;
    color: #d0d0d0;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.info-column li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #8b5cf6;
    font-size: 18px;
}

.play-reminder {
    padding: 60px 5%;
    background: rgba(0, 0, 0, 0.3);
}

.reminder-box {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(109, 40, 217, 0.2) 100%);
    padding: 40px;
    border-radius: 20px;
    border: 2px solid #8b5cf6;
    display: flex;
    gap: 30px;
    align-items: center;
}

.reminder-icon {
    font-size: 60px;
    flex-shrink: 0;
}

.reminder-content h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    color: #8b5cf6;
    margin-bottom: 15px;
}

.reminder-content p {
    font-size: 18px;
    color: #d0d0d0;
}

.legal-page {
    padding: 60px 5%;
    background: rgba(0, 0, 0, 0.3);
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(26, 15, 46, 0.6) 0%, rgba(45, 27, 78, 0.6) 100%);
    padding: 60px;
    border-radius: 20px;
    border: 2px solid #8b5cf6;
}

.legal-container h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 48px;
    color: #8b5cf6;
    margin-bottom: 20px;
    text-transform: uppercase;
    text-align: center;
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

.legal-intro {
    text-align: center;
    font-size: 18px;
    color: #999;
    margin-bottom: 50px;
    font-style: italic;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 32px;
    color: #8b5cf6;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(139, 92, 246, 0.3);
}

.legal-section h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    color: #9d6ff7;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-section p {
    font-size: 17px;
    color: #d0d0d0;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-section ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.legal-section li {
    font-size: 17px;
    color: #d0d0d0;
    margin-bottom: 10px;
    line-height: 1.8;
}

.legal-highlight {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(109, 40, 217, 0.2) 100%);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #8b5cf6;
}

.disclaimer-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.summary-item {
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 10px;
    border: 1px solid rgba(139, 92, 246, 0.5);
    font-size: 16px;
    color: #d0d0d0;
}

.summary-item strong {
    color: #8b5cf6;
    display: block;
    margin-bottom: 8px;
    font-size: 18px;
}

@media (max-width: 1200px) {
    .game-container {
        grid-template-columns: 1fr;
    }

    .game-frame iframe {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .section-header h2 {
        font-size: 32px;
    }

    .notice-grid,
    .info-grid,
    .info-columns {
        grid-template-columns: 1fr;
    }

    .community-stats {
        flex-direction: column;
        gap: 30px;
    }

    .game-frame iframe,
    .game-embed iframe {
        height: 400px;
    }

    .reminder-box {
        flex-direction: column;
        text-align: center;
    }

    .legal-container {
        padding: 30px 20px;
    }

    .legal-container h1 {
        font-size: 32px;
    }

    .legal-section h2 {
        font-size: 24px;
    }

    .disclaimer-summary {
        grid-template-columns: 1fr;
    }

    .age-gate-content {
        padding: 30px 20px;
    }

    .age-gate-content h2 {
        font-size: 24px;
    }

    .age-gate-buttons {
        flex-direction: column;
    }
}
