@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;600;700&family=Orbitron:wght@400;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0e1a;
    color: #e0e0e0;
    min-height: 100vh;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(128, 0, 128, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 255, 128, 0.1) 0%, transparent 50%);
}

/* Header & Navigation */
header {
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #7b2cbf;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(123, 44, 191, 0.3);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-svg {
    width: 60px;
    height: 60px;
}

.site-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #7b2cbf 0%, #00ff80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

nav a:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #7b2cbf, #00ff80);
    transition: width 0.3s ease;
}

nav a:hover,
nav a.active {
    color: #00ff80;
}

nav a:hover:after,
nav a.active:after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background: #00ff80;
    transition: 0.3s;
    border-radius: 3px;
}

.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);
}

/* Main Content */
main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.content-section {
    background: rgba(20, 25, 45, 0.8);
    border: 2px solid #7b2cbf;
    border-radius: 20px;
    padding: 3rem;
    margin-bottom: 2rem;
    box-shadow: 0 10px 40px rgba(123, 44, 191, 0.2);
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #7b2cbf 0%, #00ff80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    color: #00ff80;
    margin: 2.5rem 0 1rem;
    font-weight: 700;
    letter-spacing: 1px;
}

h3 {
    font-size: 1.5rem;
    color: #7b2cbf;
    margin: 2rem 0 1rem;
    font-weight: 700;
}

p {
    line-height: 1.9;
    margin-bottom: 1.5rem;
    color: #b8b8b8;
    font-size: 1.1rem;
}

.alert-box {
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.2) 0%, rgba(0, 255, 128, 0.2) 100%);
    border: 2px solid #7b2cbf;
    border-left: 6px solid #00ff80;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 15px;
}

.alert-box h3 {
    color: #00ff80;
    margin-top: 0;
}

.alert-box ul {
    margin-left: 2rem;
    color: #e0e0e0;
}

.alert-box li {
    margin: 1rem 0;
    font-size: 1.1rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: linear-gradient(135deg, rgba(123, 44, 191, 0.3) 0%, rgba(0, 255, 128, 0.1) 100%);
    border: 2px solid #7b2cbf;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 255, 128, 0.3);
    border-color: #00ff80;
}

.feature-card h3 {
    color: #00ff80;
    font-size: 1.3rem;
}

.game-frame {
    text-align: center;
    background: rgba(10, 14, 26, 0.5);
    padding: 2rem;
    border-radius: 20px;
    border: 2px solid #7b2cbf;
    margin: 2rem 0;
}

.game-frame iframe {
    max-width: 100%;
    border-radius: 15px;
    border: 3px solid #7b2cbf;
    box-shadow: 0 0 30px rgba(0, 255, 128, 0.3);
}

footer {
    background: rgba(20, 25, 45, 0.95);
    border-top: 2px solid #7b2cbf;
    padding: 3rem 2rem;
    margin-top: 4rem;
    text-align: center;
}

footer h3 {
    color: #00ff80;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.footer-links a {
    color: #7b2cbf;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: #00ff80;
    text-shadow: 0 0 10px rgba(0, 255, 128, 0.5);
}

/* Age Verification Modal */
.age-verification {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.age-verification.show {
    display: flex;
}

.age-verification-content {
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f3a 100%);
    border: 3px solid #7b2cbf;
    padding: 3rem;
    border-radius: 25px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 0 50px rgba(123, 44, 191, 0.5);
}

.age-verification-content h2 {
    color: #00ff80;
    margin-bottom: 2rem;
    font-family: 'Orbitron', sans-serif;
}

.age-verification-content p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: #e0e0e0;
}

.age-verification-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.age-verification-buttons button {
    padding: 1.2rem 3rem;
    border: none;
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-verification-buttons button:hover {
    transform: scale(1.05);
}

.btn-confirm {
    background: linear-gradient(135deg, #7b2cbf 0%, #00ff80 100%);
    color: white;
}

.btn-decline {
    background: #2d2d2d;
    color: #e0e0e0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 250px;
        background: rgba(10, 14, 26, 0.98);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        gap: 1rem;
        transition: right 0.3s ease;
        border-left: 2px solid #7b2cbf;
    }

    nav ul.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .site-title {
        font-size: 1.5rem;
    }

    .logo-svg {
        width: 45px;
        height: 45px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .content-section {
        padding: 1.5rem;
    }

    main {
        padding: 2rem 1rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .age-verification-content {
        margin: 1rem;
        padding: 2rem;
    }
}
