@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&family=Roboto:wght@300;400;700&display=swap');

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

:root {
    --gold: #D4AF37;
    --dark-purple: #1E0633;
    --deep-purple: #2D1250;
    --accent-purple: #5A2D82;
    --black: #0A0014;
    --white: #FFFFFF;
    --light-gold: #F4E4B5;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Top Bar */
.top-bar {
    background: var(--dark-purple);
    border-bottom: 2px solid var(--gold);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 30px rgba(212, 175, 55, 0.3);
}

.top-bar-content {
    max-width: 1800px;
    margin: 0 auto;
    padding: 1.2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.brand-icon {
    width: 50px;
    height: 50px;
    filter: drop-shadow(0 0 15px var(--gold));
}

.brand-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 5px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
}

.navigation {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.navigation a {
    font-family: 'Orbitron', sans-serif;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
}

.navigation a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.navigation a:hover::before,
.navigation a.active::before {
    width: 100%;
}

.navigation a:hover,
.navigation a.active {
    color: var(--gold);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: transparent;
    border: 2px solid var(--gold);
    padding: 0.8rem;
    border-radius: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--gold);
    margin: 4px 0;
}

/* Full-Width Hero */
.hero-full {
    margin-top: 90px;
    background: linear-gradient(135deg, var(--dark-purple) 0%, var(--deep-purple) 50%, var(--black) 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--gold);
}

.hero-full::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(90, 45, 130, 0.2) 0%, transparent 50%);
}

.hero-content {
    text-align: center;
    max-width: 1200px;
    padding: 4rem 2rem;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 2rem;
    letter-spacing: 8px;
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.8);
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { text-shadow: 0 0 30px rgba(212, 175, 55, 0.6); }
    50% { text-shadow: 0 0 50px rgba(212, 175, 55, 1); }
}

.hero-content p {
    font-size: 1.4rem;
    line-height: 2;
    color: var(--light-gold);
    max-width: 900px;
    margin: 0 auto;
}

/* Content Section */
.main-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 5rem 3rem;
}

/* Notice Bar */
.notice-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.notice-item {
    background: linear-gradient(135deg, var(--deep-purple), var(--accent-purple));
    border: 2px solid var(--gold);
    border-radius: 10px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
    transition: transform 0.3s ease;
}

.notice-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.4);
}

.notice-item h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

/* Content Sections */
.section-block {
    background: linear-gradient(135deg, var(--dark-purple) 0%, rgba(45, 18, 80, 0.8) 100%);
    border-left: 5px solid var(--gold);
    border-radius: 10px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.section-block h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 2rem;
    letter-spacing: 3px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.section-block h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    color: var(--light-gold);
    margin: 2rem 0 1rem;
    letter-spacing: 2px;
}

.section-block p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.section-block ul {
    list-style: none;
    padding: 0;
}

.section-block li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.section-block li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.5rem;
}

.section-block li:last-child {
    border-bottom: none;
}

/* Game Display */
.game-display {
    background: var(--black);
    border: 3px solid var(--gold);
    border-radius: 15px;
    padding: 3rem;
    margin: 4rem 0;
    box-shadow: 0 0 60px rgba(212, 175, 55, 0.3);
}

.game-display h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    color: var(--gold);
    text-align: center;
    margin-bottom: 2rem;
    letter-spacing: 4px;
}

.game-container {
    display: flex;
    justify-content: center;
}

.game-container iframe {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
}

/* Footer */
footer {
    background: linear-gradient(180deg, var(--black) 0%, var(--dark-purple) 100%);
    border-top: 3px solid var(--gold);
    padding: 3rem;
    margin-top: 5rem;
}

.footer-container {
    max-width: 1800px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-text p {
    margin: 0.5rem 0;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
}

.footer-links a {
    font-family: 'Orbitron', sans-serif;
    color: var(--gold);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--light-gold);
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.8);
}

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

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

.age-gate-box {
    background: linear-gradient(135deg, var(--dark-purple), var(--deep-purple));
    border: 4px solid var(--gold);
    border-radius: 20px;
    padding: 4rem;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 0 80px rgba(212, 175, 55, 0.6);
}

.age-gate-box h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
}

.age-gate-box p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--light-gold);
}

.age-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-buttons button {
    font-family: 'Orbitron', sans-serif;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: 2px solid var(--gold);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn-enter {
    background: var(--gold);
    color: var(--dark-purple);
}

.btn-enter:hover {
    background: var(--light-gold);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.8);
}

.btn-exit {
    background: transparent;
    color: var(--gold);
}

.btn-exit:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .navigation {
        position: fixed;
        top: 90px;
        left: 0;
        width: 100%;
        background: var(--dark-purple);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-bottom: 2px solid var(--gold);
    }
    
    .navigation.active {
        transform: translateX(0);
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .main-content {
        padding: 3rem 1.5rem;
    }
    
    .section-block {
        padding: 2rem;
    }
    
    .footer-container {
        flex-direction: column;
        text-align: center;
    }
}
