@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;500;700&display=swap');

:root {
    --primary-color: #ff6b35;
    --secondary-color: #1a1a2e;
    --accent-color: #e94560;
    --text-light: #f8f8f8;
    --text-dark: #16213e;
    --gradient-1: linear-gradient(135deg, #ff6b35 0%, #e94560 100%);
    --gradient-2: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--gradient-2);
    color: var(--text-light);
    min-height: 100vh;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--accent-color);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 10px;
}

.nav-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    padding: 10px 5px;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 140px 20px 80px;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(233, 69, 96, 0.15) 0%, transparent 70%);
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Notice Badges */
.notice-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 40px 0;
}

.notice-badge {
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid var(--primary-color);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.notice-badge span {
    font-size: 1.2rem;
}

/* Game Section */
.game-section {
    padding: 60px 20px;
    background: rgba(22, 33, 62, 0.5);
}

.game-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(233, 69, 96, 0.3);
}

.game-wrapper iframe {
    width: 100%;
    height: 600px;
    border: none;
}

/* Info Cards */
.info-section {
    padding: 80px 20px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.info-card {
    background: rgba(26, 26, 46, 0.8);
    border: 1px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    padding: 35px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(233, 69, 96, 0.2);
}

.info-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.info-card p {
    opacity: 0.85;
    line-height: 1.8;
}

/* Features Section */
.features {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(233, 69, 96, 0.1) 0%, rgba(255, 107, 53, 0.1) 100%);
}

.features h2 {
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.feature-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    background: var(--secondary-color);
    padding: 25px 35px;
    border-radius: 12px;
    text-align: center;
    min-width: 200px;
    border-left: 4px solid var(--accent-color);
}

.feature-item span {
    display: block;
    font-size: 2rem;
    margin-bottom: 10px;
}

/* Page Content */
.page-content {
    padding: 120px 20px 60px;
    max-width: 900px;
    margin: 0 auto;
}

.page-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.page-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    color: var(--accent-color);
    margin: 35px 0 15px;
}

.page-content p {
    margin-bottom: 18px;
    opacity: 0.9;
    font-size: 1.1rem;
}

.page-content ul {
    margin: 15px 0 25px 30px;
}

.page-content li {
    margin-bottom: 10px;
    opacity: 0.9;
}

/* Footer */
footer {
    background: rgba(22, 33, 62, 0.95);
    padding: 50px 20px;
    border-top: 2px solid var(--accent-color);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-content h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.responsible-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
}

.responsible-links a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.responsible-links a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
    font-size: 0.95rem;
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(22, 33, 62, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-modal.hidden {
    display: none;
}

.age-modal-content {
    background: var(--secondary-color);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    border: 2px solid var(--accent-color);
    box-shadow: 0 30px 80px rgba(233, 69, 96, 0.4);
}

.age-modal-content h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.age-modal-content p {
    margin-bottom: 30px;
    opacity: 0.9;
    font-size: 1.1rem;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.age-btn {
    padding: 15px 45px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
}

.age-btn.yes {
    background: var(--gradient-1);
    color: white;
}

.age-btn.no {
    background: transparent;
    border: 2px solid var(--accent-color);
    color: var(--text-light);
}

.age-btn:hover {
    transform: scale(1.05);
}

.age-btn.yes:hover {
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* Mobile Styles */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(26, 26, 46, 0.98);
        padding: 20px;
        gap: 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-menu a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .notice-container {
        flex-direction: column;
        align-items: center;
    }

    .game-wrapper iframe {
        height: 400px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .age-modal-content {
        margin: 20px;
        padding: 30px;
    }

    .age-buttons {
        flex-direction: column;
    }

    .page-content h1 {
        font-size: 1.8rem;
    }
}
