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

body {
    font-family: 'Orbitron', sans-serif;
    background: #0a0e27;
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
}

.page-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Age Gate */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 39, 0.98);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    backdrop-filter: blur(20px);
}

.age-gate.hidden {
    display: none;
}

.age-gate-content {
    background: linear-gradient(135deg, #1a1f3a, #0f1329);
    border: 2px solid #00f5ff;
    padding: 60px 50px;
    border-radius: 10px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 0 50px rgba(0, 245, 255, 0.3);
}

.age-icon {
    font-size: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px #00f5ff);
}

.age-gate-content h2 {
    color: #00f5ff;
    font-size: 28px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.age-gate-content p {
    color: #b0b0b0;
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: 400;
}

.age-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 35px;
}

.btn-accept,
.btn-reject {
    padding: 15px 35px;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 1px;
}

.btn-accept {
    background: linear-gradient(135deg, #00f5ff, #ff00ff);
    color: white;
    border-color: transparent;
}

.btn-accept:hover {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.5);
}

.btn-reject {
    background: transparent;
    color: #888;
    border-color: #333;
}

.btn-reject:hover {
    border-color: #666;
    color: #aaa;
}

/* Header */
.main-header {
    background: rgba(10, 14, 39, 0.95);
    border-bottom: 2px solid #00f5ff;
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

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

.brand {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: #00f5ff;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: 2px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 28px;
    height: 3px;
    background: linear-gradient(90deg, #00f5ff, #ff00ff);
    transition: all 0.3s ease;
}

.main-nav {
    display: flex;
    gap: 40px;
}

.main-nav a {
    color: #b0b0b0;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: #00f5ff;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00f5ff, #ff00ff);
    transition: width 0.3s ease;
}

.main-nav a:hover::before {
    width: 100%;
}

/* Main Content */
.main-content {
    flex: 1;
}

/* Hero Banner */
.hero-banner {
    padding: 100px 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(255, 0, 255, 0.1));
    border-bottom: 2px solid rgba(0, 245, 255, 0.3);
}

.hero-text h1 {
    font-size: 52px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.tagline {
    font-size: 18px;
    color: #b0b0b0;
    margin-bottom: 35px;
    font-weight: 400;
}

.status-tags {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.tag {
    background: rgba(0, 245, 255, 0.1);
    border: 1px solid #00f5ff;
    color: #00f5ff;
    padding: 10px 25px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Featured Game */
.featured-game {
    padding: 80px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.header-line {
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #00f5ff, #ff00ff);
    margin: 0 auto;
}

.game-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.game-frame {
    background: #000;
    border: 2px solid #00f5ff;
    padding: 15px;
    box-shadow: 0 0 40px rgba(0, 245, 255, 0.3);
}

.game-frame iframe {
    width: 100%;
    height: 650px;
    display: block;
}

.game-caption {
    text-align: center;
    color: #00f5ff;
    font-size: 14px;
    margin-top: 25px;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Info Grid */
.info-grid {
    padding: 80px 30px;
    background: rgba(255, 255, 255, 0.02);
}

.grid-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.info-block {
    background: linear-gradient(135deg, #1a1f3a, #0f1329);
    border: 1px solid rgba(0, 245, 255, 0.3);
    padding: 40px;
    transition: all 0.3s ease;
}

.info-block:hover {
    border-color: #00f5ff;
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.2);
    transform: translateY(-5px);
}

.block-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.block-icon {
    font-size: 32px;
}

.info-block h3 {
    color: #00f5ff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.info-block p {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 14px;
    font-weight: 400;
}

/* Legal Notices */
.legal-notices {
    padding: 80px 30px;
}

.notice-container {
    max-width: 1400px;
    margin: 0 auto;
}

.notice-title {
    text-align: center;
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 50px;
}

.notice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 35px;
}

.notice-card {
    background: linear-gradient(135deg, #1a1f3a, #0f1329);
    border: 2px solid #ff00ff;
    padding: 35px;
}

.notice-card h4 {
    color: #ff00ff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.notice-card p {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 14px;
    font-weight: 400;
}

/* Platform Features */
.platform-features {
    padding: 80px 30px;
    background: rgba(255, 255, 255, 0.02);
}

.features-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.feature-box {
    background: linear-gradient(135deg, #1a1f3a, #0f1329);
    border: 1px solid rgba(0, 245, 255, 0.3);
    padding: 35px;
    transition: all 0.3s ease;
}

.feature-box:hover {
    border-color: #00f5ff;
    box-shadow: 0 0 30px rgba(0, 245, 255, 0.2);
}

.feature-number {
    display: inline-block;
    background: linear-gradient(135deg, #00f5ff, #ff00ff);
    color: #fff;
    padding: 8px 18px;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.feature-box h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.feature-box p {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 14px;
    font-weight: 400;
}

/* Play Page */
.play-header {
    padding: 80px 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 245, 255, 0.1), rgba(255, 0, 255, 0.1));
}

.play-header h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.play-header p {
    color: #b0b0b0;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.play-area {
    padding: 60px 30px 100px;
}

.play-container {
    max-width: 1400px;
    margin: 0 auto;
}

.game-frame-full {
    background: #000;
    border: 2px solid #00f5ff;
    padding: 15px;
    margin-bottom: 50px;
    box-shadow: 0 0 40px rgba(0, 245, 255, 0.3);
}

.game-frame-full iframe {
    width: 100%;
    height: 750px;
    display: block;
}

.play-instructions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.instruction-block {
    background: linear-gradient(135deg, #1a1f3a, #0f1329);
    border: 1px solid rgba(0, 245, 255, 0.3);
    padding: 30px;
}

.instruction-block h3 {
    color: #00f5ff;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 1px;
}

.instruction-block p {
    color: #b0b0b0;
    line-height: 1.8;
    font-size: 14px;
    font-weight: 400;
}

/* Legal Page */
.legal-page {
    padding: 80px 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.legal-page h1 {
    text-align: center;
    color: #fff;
    font-size: 48px;
    font-weight: 800;
    letter-spacing: 3px;
    margin-bottom: 50px;
    text-shadow: 0 0 20px rgba(0, 245, 255, 0.5);
}

.legal-text {
    background: linear-gradient(135deg, #1a1f3a, #0f1329);
    border: 2px solid rgba(0, 245, 255, 0.3);
    padding: 50px;
}

.intro-text {
    color: #b0b0b0;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
    font-weight: 400;
}

.legal-text h2 {
    color: #00f5ff;
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.legal-text h2:first-of-type {
    margin-top: 0;
}

.legal-text p {
    color: #b0b0b0;
    line-height: 1.9;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 400;
}

.updated-date {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid rgba(0, 245, 255, 0.3);
    color: #666;
    font-style: italic;
    font-size: 13px;
}

/* Footer */
.site-footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 2px solid #00f5ff;
    padding: 60px 30px 30px;
    margin-top: auto;
}

.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-column h4 {
    color: #00f5ff;
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 1px;
}

.footer-column p {
    color: #888;
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
    font-weight: 400;
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 12px;
}

.footer-list a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
    font-weight: 400;
}

.footer-list a:hover {
    color: #00f5ff;
}

.footer-copyright {
    color: #666;
    font-size: 12px;
    text-align: center;
    line-height: 1.6;
    font-weight: 400;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        z-index: 1001;
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: #0a0e27;
        flex-direction: column;
        padding: 80px 30px;
        border-left: 2px solid #00f5ff;
        transition: right 0.3s ease;
        gap: 25px;
    }

    .main-nav.active {
        right: 0;
    }

    .main-nav a {
        font-size: 16px;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 245, 255, 0.2);
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .tagline {
        font-size: 14px;
    }

    .game-frame iframe,
    .game-frame-full iframe {
        height: 450px;
    }

    .grid-container,
    .notice-grid,
    .features-layout,
    .play-instructions {
        grid-template-columns: 1fr;
    }

    .legal-text {
        padding: 30px 20px;
    }
}