* {
    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: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 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: 10000;
    align-items: center;
    justify-content: center;
}

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

.age-gate-content {
    background: linear-gradient(135deg, #4a90e2 0%, #9b59b6 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.age-gate-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.age-gate-content h2 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.age-gate-content p {
    font-size: 16px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.age-gate-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    justify-content: center;
}

.age-btn {
    padding: 15px 40px;
    font-family: 'Orbitron', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.yes-btn {
    background: #2ecc71;
    color: white;
}

.yes-btn:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(46, 204, 113, 0.4);
}

.no-btn {
    background: #e74c3c;
    color: white;
}

.no-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(231, 76, 60, 0.4);
}

/* Header & Navigation */
header {
    background: rgba(15, 12, 41, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
    padding: 15px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
}

.logo-text {
    background: linear-gradient(135deg, #4a90e2, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #f39c12;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(135deg, #4a90e2, #9b59b6);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 80px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(155, 89, 182, 0.1) 100%);
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #4a90e2, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.feature-badge {
    background: rgba(74, 144, 226, 0.2);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 16px;
    border: 2px solid rgba(74, 144, 226, 0.5);
}

/* Notice Section */
.notice-section {
    padding: 60px 20px;
}

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

.notice-card {
    background: rgba(74, 144, 226, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(74, 144, 226, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.notice-card:hover {
    transform: translateY(-5px);
    border-color: #4a90e2;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.notice-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.notice-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #f39c12;
}

.notice-card p {
    font-size: 15px;
    opacity: 0.9;
}

/* Game Section */
.game-section {
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.2);
}

.game-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #4a90e2, #9b59b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.game-container {
    max-width: 1000px;
    margin: 0 auto 30px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

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

.game-info {
    max-width: 800px;
    margin: 30px auto 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.game-info p {
    background: rgba(74, 144, 226, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 4px solid #f39c12;
}

/* About Section */
.about-section {
    padding: 80px 20px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #f39c12;
}

.about-content p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.8;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 10px;
    border: 2px solid rgba(74, 144, 226, 0.3);
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    color: #f39c12;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

.image-placeholder {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Features Section */
.features-section {
    padding: 60px 20px;
    background: rgba(0, 0, 0, 0.2);
}

.features-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    background: linear-gradient(135deg, #4a90e2, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.feature-item {
    background: rgba(74, 144, 226, 0.1);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(74, 144, 226, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: #9b59b6;
    box-shadow: 0 10px 30px rgba(155, 89, 182, 0.3);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-item h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #4a90e2;
}

.feature-item p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Play Page Specific */
.play-header {
    padding: 60px 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.2) 0%, rgba(155, 89, 182, 0.2) 100%);
}

.play-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #4a90e2, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.play-header p {
    font-size: 18px;
    opacity: 0.9;
}

.game-play-section {
    padding: 40px 20px 80px;
}

.game-wrapper {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    margin-bottom: 40px;
}

.game-frame-full {
    width: 100%;
    height: 700px;
    border: none;
    display: block;
}

.play-info-panel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.info-card {
    background: rgba(74, 144, 226, 0.1);
    padding: 25px;
    border-radius: 12px;
    border: 2px solid rgba(74, 144, 226, 0.3);
}

.info-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #f39c12;
}

.info-card p {
    font-size: 14px;
    opacity: 0.9;
    line-height: 1.6;
}

.reminder-card {
    border-color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
}

/* Legal Pages */
.legal-header {
    padding: 60px 20px 30px;
    text-align: center;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.2) 0%, rgba(155, 89, 182, 0.2) 100%);
}

.legal-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #4a90e2, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-update {
    font-size: 14px;
    opacity: 0.7;
}

.legal-content {
    padding: 60px 20px;
}

.legal-document {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(15, 12, 41, 0.5);
    padding: 50px;
    border-radius: 15px;
    border: 2px solid rgba(74, 144, 226, 0.3);
}

.legal-document h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #f39c12;
}

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

.legal-document h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #4a90e2;
}

.legal-document p {
    font-size: 15px;
    margin-bottom: 15px;
    opacity: 0.9;
    line-height: 1.8;
}

.legal-document ul {
    margin: 15px 0 15px 30px;
    opacity: 0.9;
}

.legal-document li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-notice {
    background: rgba(74, 144, 226, 0.2);
    padding: 30px;
    border-radius: 12px;
    margin-top: 40px;
    border-left: 5px solid #f39c12;
}

.legal-notice h3 {
    color: #f39c12;
    margin-bottom: 15px;
}

.disclaimer-highlight {
    background: rgba(231, 76, 60, 0.1);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 5px solid #e74c3c;
}

.disclaimer-highlight h2 {
    color: #e74c3c;
    margin-top: 0;
}

/* Footer */
footer {
    background: rgba(15, 12, 41, 0.95);
    padding: 50px 20px 20px;
    margin-top: 60px;
    border-top: 2px solid rgba(74, 144, 226, 0.3);
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #f39c12;
}

.footer-section p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: #4a90e2;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(74, 144, 226, 0.2);
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(15, 12, 41, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 10px 0;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

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

    .game-frame {
        height: 400px;
    }

    .game-frame-full {
        height: 500px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 26px;
    }

    .age-gate-content {
        padding: 30px 20px;
        margin: 20px;
    }

    .age-gate-buttons {
        flex-direction: column;
    }

    .age-btn {
        width: 100%;
    }
}