@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Rajdhani:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a0033;
    --secondary-color: #ffd700;
    --accent-color: #9d4edd;
    --text-color: #ffffff;
    --bg-gradient: linear-gradient(135deg, #1a0033 0%, #3c096c 50%, #5a189a 100%);
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--bg-gradient);
    color: var(--text-color);
    min-height: 100vh;
    line-height: 1.6;
}

header {
    background: rgba(26, 0, 51, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--secondary-color);
}

.header-content {
    max-width: 100%;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    width: 50px;
    height: 50px;
}

.site-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: var(--secondary-color);
    margin: 4px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-8px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-8px, -6px);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    position: relative;
    padding: 0.5rem 0;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s;
}

nav ul li a:hover::after {
    width: 100%;
}

main {
    max-width: 100%;
    padding: 3rem 2rem;
}

.hero-section {
    text-align: center;
    padding: 4rem 2rem;
    margin-bottom: 3rem;
}

.hero-section h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.hero-section p {
    font-size: 1.4rem;
    max-width: 900px;
    margin: 0 auto 2rem;
    color: #e0e0e0;
}

.notice-box {
    background: rgba(157, 78, 221, 0.2);
    border: 2px solid var(--accent-color);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1000px;
}

.notice-box h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.notice-box ul {
    list-style: none;
    padding-left: 0;
}

.notice-box ul li {
    padding: 0.8rem;
    margin: 0.5rem 0;
    background: rgba(255, 215, 0, 0.1);
    border-left: 4px solid var(--secondary-color);
    font-size: 1.2rem;
}

.game-container {
    background: rgba(0, 0, 0, 0.4);
    border: 3px solid var(--secondary-color);
    border-radius: 20px;
    padding: 2rem;
    margin: 3rem auto;
    max-width: 1400px;
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

.game-container h2 {
    font-family: 'Orbitron', sans-serif;
    text-align: center;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.game-frame {
    width: 100%;
    min-height: 700px;
    border: none;
    border-radius: 10px;
    background: #000;
}

.content-section {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 3rem;
    margin: 2rem auto;
    max-width: 1200px;
}

.content-section h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.content-section h3 {
    color: var(--accent-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.content-section p {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-section ul, .content-section ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.content-section li {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
}

footer {
    background: rgba(26, 0, 51, 0.95);
    padding: 3rem 2rem;
    margin-top: 4rem;
    border-top: 3px solid var(--secondary-color);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-content h3 {
    font-family: 'Orbitron', sans-serif;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.age-verification {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-verification.active {
    display: flex;
}

.age-modal {
    background: var(--bg-gradient);
    border: 4px solid var(--secondary-color);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 0 50px rgba(255, 215, 0, 0.5);
}

.age-modal h2 {
    font-family: 'Orbitron', sans-serif;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.age-modal p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-button {
    padding: 1rem 3rem;
    font-size: 1.3rem;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Orbitron', sans-serif;
}

.age-button.yes {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.age-button.yes:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px var(--secondary-color);
}

.age-button.no {
    background: #666;
    color: var(--text-color);
}

.age-button.no:hover {
    background: #888;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav ul {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(26, 0, 51, 0.98);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
    }

    nav ul.active {
        max-height: 500px;
        border-bottom: 3px solid var(--secondary-color);
    }

    nav ul li {
        border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    }

    nav ul li a {
        display: block;
        padding: 1.5rem 2rem;
    }

    .site-name {
        font-size: 1.5rem;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1.2rem;
    }

    .content-section {
        padding: 2rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .age-modal {
        margin: 1rem;
        padding: 2rem;
    }

    .age-buttons {
        flex-direction: column;
    }
}
