* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #0a0a0a;
}

/* Header */
.site-header {
    background: linear-gradient(90deg, #000000 0%, #1a1a1a 100%);
    border-bottom: 3px solid #00ff88;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.3);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: #00ff88;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.8);
    letter-spacing: 3px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.nav-item {
    color: #00ff88;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.nav-item:hover,
.nav-item.active {
    border-color: #00ff88;
    background: rgba(0, 255, 136, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-btn span {
    width: 30px;
    height: 3px;
    background: #00ff88;
    margin: 4px 0;
    transition: 0.3s;
}

/* Age Gate */
.age-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    justify-content: center;
    align-items: center;
}

.age-gate.active {
    display: flex;
}

.age-gate-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 3px solid #00ff88;
    padding: 3rem;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.5);
}

.age-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.age-gate-content h1 {
    font-family: 'Orbitron', sans-serif;
    color: #00ff88;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
}

.age-gate-content p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.age-message {
    color: #aaaaaa;
    font-size: 0.95rem;
}

.age-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.age-btn {
    padding: 1rem 2rem;
    border: 2px solid #00ff88;
    background: transparent;
    color: #00ff88;
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.age-btn.yes:hover {
    background: #00ff88;
    color: #000;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

.age-btn.no:hover {
    border-color: #ff0055;
    color: #ff0055;
}

/* Hero Grid */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.hero-text h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    color: #00ff88;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

.hero-text h2 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-text p {
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-cta {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #00ff88;
    color: #000;
    text-decoration: none;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    border: none;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.hero-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.8);
}

.hero-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.visual-element {
    font-size: 6rem;
    text-align: center;
    padding: 2rem;
    background: rgba(0, 255, 136, 0.05);
    border: 2px solid #00ff88;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.visual-element:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 4rem 2rem;
    text-align: center;
    border-bottom: 3px solid #00ff88;
}

.page-header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: #00ff88;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
}

.page-header p {
    color: #cccccc;
    font-size: 1.2rem;
}

/* Section Title */
.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: #00ff88;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.5);
}

/* Features */
.features-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-tile {
    background: rgba(0, 255, 136, 0.05);
    border: 2px solid #00ff88;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-tile:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(0, 255, 136, 0.3);
    background: rgba(0, 255, 136, 0.1);
}

.tile-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.feature-tile h3 {
    font-family: 'Orbitron', sans-serif;
    color: #00ff88;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-tile p {
    color: #cccccc;
    line-height: 1.7;
}

/* Game Display */
.game-display {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: #0a0a0a;
}

.game-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.game-embed {
    background: rgba(0, 255, 136, 0.05);
    border: 3px solid #00ff88;
    padding: 1.5rem;
    border-radius: 10px;
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 5px;
}

.game-details {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid #00ff88;
    padding: 2rem;
    border-radius: 10px;
}

.game-details h3 {
    font-family: 'Orbitron', sans-serif;
    color: #00ff88;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.game-details p {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.game-highlights {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.game-highlights li {
    color: #00ff88;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

/* Info Section */
.info-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.info-card {
    background: rgba(0, 255, 136, 0.05);
    border: 2px solid #00ff88;
    padding: 2rem;
    border-radius: 10px;
}

.info-card h3 {
    font-family: 'Orbitron', sans-serif;
    color: #00ff88;
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.info-card p {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.7;
}

/* Notices */
.notices-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: #0a0a0a;
}

.notice-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.notice-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid #ff9900;
    border-left: 6px solid #ff9900;
    padding: 2rem;
    border-radius: 10px;
}

.notice-item h4 {
    font-family: 'Orbitron', sans-serif;
    color: #ff9900;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.notice-item p {
    color: #cccccc;
    line-height: 1.7;
}

/* Responsibility */
.responsibility-block {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.responsibility-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.resp-card {
    background: rgba(0, 255, 136, 0.05);
    border: 2px solid #00ff88;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.resp-number {
    display: block;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #00ff88;
    margin-bottom: 1rem;
}

.resp-card h4 {
    font-family: 'Orbitron', sans-serif;
    color: #00ff88;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.resp-card p {
    color: #cccccc;
    line-height: 1.6;
}

/* Play Page */
.play-intro {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.intro-content {
    background: rgba(0, 255, 136, 0.05);
    border: 2px solid #00ff88;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
}

.intro-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: #00ff88;
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.intro-content p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.play-area {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: #0a0a0a;
}

.game-container {
    background: rgba(0, 255, 136, 0.05);
    border: 3px solid #00ff88;
    padding: 2rem;
    border-radius: 10px;
}

.game-frame-play {
    width: 100%;
    height: 700px;
    border: none;
    border-radius: 5px;
}

.play-instructions {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
}

.instructions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.instruction-box {
    background: rgba(0, 255, 136, 0.05);
    border: 2px solid #00ff88;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.instruction-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.instruction-box h3 {
    font-family: 'Orbitron', sans-serif;
    color: #00ff88;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.instruction-box p {
    color: #cccccc;
    line-height: 1.6;
}

.play-reminders {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: #0a0a0a;
}

.reminders-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.reminder-box {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    border: 2px solid #ff9900;
    border-left: 6px solid #ff9900;
    padding: 2rem;
    border-radius: 10px;
}

.reminder-box h4 {
    font-family: 'Orbitron', sans-serif;
    color: #ff9900;
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.reminder-box p {
    color: #cccccc;
    line-height: 1.7;
}

.troubleshooting {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

.trouble-content {
    background: rgba(0, 255, 136, 0.05);
    border: 2px solid #00ff88;
    padding: 2.5rem;
    border-radius: 10px;
}

.trouble-content p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.trouble-list {
    color: #00ff88;
    margin-left: 2rem;
}

.trouble-list li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

/* Legal Content */
.legal-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: #0a0a0a;
}

.legal-content h2 {
    font-family: 'Orbitron', sans-serif;
    color: #00ff88;
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-family: 'Orbitron', sans-serif;
    color: #00ff88;
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

.legal-content p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content li {
    color: #cccccc;
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.disclaimer-alert,
.terms-final,
.privacy-final,
.disclaimer-final {
    background: rgba(0, 255, 136, 0.1);
    border: 2px solid #00ff88;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
}

.disclaimer-alert h2,
.disclaimer-final h3 {
    margin-top: 0;
}

/* Footer */
.site-footer {
    background: #000000;
    border-top: 3px solid #00ff88;
    padding: 3rem 2rem 1rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    font-family: 'Orbitron', sans-serif;
    color: #00ff88;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.footer-col p {
    color: #aaaaaa;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: #00ff88;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #00ff44;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #aaaaaa;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .game-grid {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .responsibility-grid,
    .instructions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #000000;
        flex-direction: column;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-bottom: 3px solid #00ff88;
    }

    .main-nav.active {
        transform: translateX(0);
    }

    .menu-btn {
        display: flex;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .features-grid,
    .info-grid,
    .notice-container,
    .responsibility-grid,
    .instructions-grid,
    .reminders-container {
        grid-template-columns: 1fr;
    }

    .game-frame,
    .game-frame-play {
        height: 400px;
    }
}
