@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Exo+2:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #7b2cbf;
    --secondary: #3a0ca3;
    --accent: #f72585;
    --dark: #10002b;
    --light: #e0aaff;
    --text: #ffffff;
}

body {
    font-family: 'Exo 2', sans-serif;
    background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 50%, var(--primary) 100%);
    min-height: 100vh;
    color: var(--text);
    line-height: 1.7;
}

.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: rgba(16, 0, 43, 0.95);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--primary);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--accent), var(--light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.logo-icon {
    width: 45px;
    height: 45px;
    margin-right: 10px;
    vertical-align: middle;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    font-size: 1rem;
}

nav a:hover {
    color: var(--accent);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--accent);
    transition: 0.3s;
    border-radius: 2px;
}

/* Main Content */
main {
    padding-top: 100px;
}

.hero {
    text-align: center;
    padding: 80px 20px;
    background: radial-gradient(ellipse at center, rgba(123, 44, 191, 0.3) 0%, transparent 70%);
}

.hero h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 0 30px var(--accent);
}

.hero p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--light);
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(90deg, var(--accent), var(--primary));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(247, 37, 133, 0.4);
}

/* Notices */
.notices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 60px 20px;
}

.notice-card {
    background: rgba(58, 12, 163, 0.4);
    padding: 35px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--primary);
    transition: transform 0.3s;
}

.notice-card:hover {
    transform: translateY(-5px);
}

.notice-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--accent);
}

.notice-card p {
    color: var(--light);
    font-size: 1rem;
}

.notice-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

/* Game Section */
.game-section {
    padding: 60px 20px;
    text-align: center;
}

.game-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.game-wrapper {
    background: rgba(16, 0, 43, 0.8);
    border-radius: 20px;
    padding: 20px;
    border: 2px solid var(--primary);
    max-width: 100%;
    margin: 0 auto;
}

.game-wrapper iframe {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
}

/* Features */
.features {
    padding: 80px 20px;
}

.features h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-item {
    background: linear-gradient(145deg, rgba(123, 44, 191, 0.2), rgba(58, 12, 163, 0.3));
    padding: 40px;
    border-radius: 20px;
    border-left: 4px solid var(--accent);
}

.feature-item h3 {
    font-family: 'Orbitron', monospace;
    margin-bottom: 15px;
    color: var(--light);
}

/* Info Section */
.info-section {
    padding: 60px 20px;
    background: rgba(16, 0, 43, 0.5);
}

.info-section h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.info-section p {
    max-width: 900px;
    margin: 0 auto 20px;
    text-align: center;
    color: var(--light);
}

/* Footer */
footer {
    background: var(--dark);
    padding: 50px 20px;
    border-top: 1px solid var(--primary);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-section h4 {
    font-family: 'Orbitron', monospace;
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-section a {
    color: var(--light);
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(123, 44, 191, 0.3);
    color: var(--light);
    font-size: 0.9rem;
}

/* Age Verification Modal */
.age-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(16, 0, 43, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.age-modal.hidden {
    display: none;
}

.age-modal-content {
    background: linear-gradient(145deg, var(--secondary), var(--dark));
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    max-width: 500px;
    border: 2px solid var(--accent);
}

.age-modal-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    margin-bottom: 20px;
}

.age-modal-content p {
    margin-bottom: 30px;
    color: var(--light);
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-yes {
    background: linear-gradient(90deg, #00c853, #00e676);
}

.btn-no {
    background: linear-gradient(90deg, #d32f2f, #f44336);
}

/* Page Specific Styles */
.page-header {
    padding: 60px 20px;
    text-align: center;
    background: radial-gradient(ellipse at center, rgba(123, 44, 191, 0.3) 0%, transparent 70%);
}

.page-header h1 {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-content {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.page-content h2 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--accent);
}

.page-content p, .page-content li {
    margin-bottom: 15px;
    color: var(--light);
}

.page-content ul {
    padding-left: 30px;
}

/* Play Page */
.play-container {
    padding: 40px 20px;
}

.game-info {
    background: rgba(58, 12, 163, 0.3);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
}

.game-info h3 {
    font-family: 'Orbitron', monospace;
    margin-bottom: 15px;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .notices {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(16, 0, 43, 0.98);
        padding: 20px;
        display: none;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .notices {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .game-wrapper iframe {
        height: 450px;
    }
    
    .age-modal-content {
        margin: 20px;
        padding: 30px;
    }
    
    .age-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.4rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .game-wrapper iframe {
        height: 350px;
    }
}
