* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

/* Age Gate */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-gate.active {
    display: flex;
}

.age-gate-content {
    background: linear-gradient(135deg, #1a1f3a 0%, #0a0e27 100%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 500px;
    border: 2px solid #00ffff;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

.age-gate-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: #00ffff;
    font-size: 2em;
    margin-bottom: 20px;
}

.age-gate-content p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.age-gate-buttons {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    justify-content: center;
}

.btn-confirm, .btn-decline {
    padding: 15px 30px;
    font-size: 1.1em;
    font-family: 'Orbitron', sans-serif;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
}

.btn-confirm {
    background: #00ffff;
    color: #000;
}

.btn-confirm:hover {
    background: #00cccc;
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.7);
}

.btn-decline {
    background: #ff0066;
    color: #fff;
}

.btn-decline:hover {
    background: #cc0052;
    transform: scale(1.05);
}

/* Header */
header {
    background: rgba(10, 14, 39, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #00ffff;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8em;
    font-weight: 900;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.7);
}

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #00ffff;
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

nav {
    display: flex;
    gap: 30px;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #00ffff;
    transition: width 0.3s ease;
}

nav a:hover {
    color: #00ffff;
}

nav a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 102, 0.1) 100%);
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5em;
    font-weight: 900;
    color: #00ffff;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 20px 50px;
    background: #00ffff;
    color: #000;
    text-decoration: none;
    font-size: 1.3em;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.cta-button:hover {
    background: #00cccc;
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.8);
}

/* Info Section */
.info-section {
    padding: 80px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.info-card {
    background: rgba(26, 31, 58, 0.6);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.info-card:hover {
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    transform: translateY(-5px);
}

.info-card .icon {
    font-size: 3em;
    margin-bottom: 20px;
}

.info-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5em;
    color: #00ffff;
    margin-bottom: 15px;
}

/* Game Section */
.game-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.3);
}

.game-section h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5em;
    color: #00ffff;
    text-align: center;
    margin-bottom: 40px;
}

.game-container {
    max-width: 1200px;
    margin: 0 auto;
}

.game-frame {
    width: 100%;
    height: 700px;
    border: 3px solid #00ffff;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.game-notice {
    margin-top: 30px;
    padding: 20px;
    background: rgba(255, 0, 102, 0.1);
    border: 2px solid #ff0066;
    border-radius: 10px;
    text-align: center;
}

.game-notice p {
    margin: 10px 0;
    font-size: 1.1em;
}

/* Features Section */
.features {
    padding: 80px 0;
}

.features h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5em;
    color: #00ffff;
    text-align: center;
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.feature-item {
    text-align: center;
    padding: 30px;
}

.feature-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 3em;
    font-weight: 900;
    color: #00ffff;
    margin-bottom: 20px;
    text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

.feature-item h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #fff;
}

/* Disclaimer Banner */
.disclaimer-banner {
    padding: 80px 0;
    background: rgba(255, 0, 102, 0.05);
}

.disclaimer-banner h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5em;
    color: #ff0066;
    text-align: center;
    margin-bottom: 40px;
}

.disclaimer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.disclaimer-item {
    background: rgba(26, 31, 58, 0.6);
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #ff0066;
}

.disclaimer-item h4 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.3em;
    color: #ff0066;
    margin-bottom: 15px;
}

/* Play Page */
.play-hero {
    padding: 60px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1) 0%, rgba(255, 0, 102, 0.1) 100%);
}

.play-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3em;
    color: #00ffff;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto;
}

.game-play-section {
    padding: 40px 0 80px;
}

.game-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.game-frame-fullsize {
    width: 100%;
    height: 800px;
    border: 3px solid #00ffff;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.3);
}

.game-info {
    padding: 60px 0;
    background: rgba(0, 0, 0, 0.3);
}

.game-info h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5em;
    color: #00ffff;
    text-align: center;
    margin-bottom: 40px;
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.info-box {
    background: rgba(26, 31, 58, 0.6);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(0, 255, 255, 0.3);
}

.info-box h3 {
    font-family: 'Orbitron', sans-serif;
    color: #00ffff;
    margin-bottom: 15px;
}

.play-notice {
    background: rgba(255, 0, 102, 0.1);
    border: 2px solid #ff0066;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* Legal Pages */
.legal-page {
    padding: 60px 0;
}

.legal-page h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3em;
    color: #00ffff;
    margin-bottom: 20px;
}

.last-updated {
    font-style: italic;
    color: #999;
    margin-bottom: 40px;
}

.legal-content {
    max-width: 1000px;
}

.legal-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8em;
    color: #00ffff;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3, .legal-content h4 {
    color: #fff;
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

.legal-content li {
    margin-bottom: 10px;
}

.legal-content a {
    color: #00ffff;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

/* Footer */
footer {
    background: rgba(10, 14, 39, 0.95);
    padding: 60px 0 20px;
    border-top: 2px solid #00ffff;
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-family: 'Orbitron', sans-serif;
    color: #00ffff;
    margin-bottom: 20px;
    font-size: 1.2em;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00ffff;
}

.responsible-links a {
    color: #ff0066;
}

.responsible-links a:hover {
    color: #ff3385;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 255, 255, 0.3);
    color: #999;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: rgba(10, 14, 39, 0.98);
        flex-direction: column;
        padding: 80px 30px;
        transition: right 0.3s ease;
        border-left: 2px solid #00ffff;
    }

    nav.active {
        right: 0;
    }

    nav a {
        font-size: 1.3em;
        padding: 15px 0;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero-subtitle {
        font-size: 1.1em;
    }

    .cta-button {
        padding: 15px 35px;
        font-size: 1.1em;
    }

    .info-grid, .features-grid, .disclaimer-content {
        grid-template-columns: 1fr;
    }

    .game-frame {
        height: 500px;
    }

    .game-frame-fullsize {
        height: 600px;
    }

    .play-hero h1 {
        font-size: 2em;
    }

    .legal-page h1 {
        font-size: 2em;
    }

    .legal-content h2 {
        font-size: 1.5em;
    }
}
