@import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: #0a0f0d;
    color: #e0e0e0;
    line-height: 1.7;
}

.container {
    max-width: 100%;
    margin: 0 auto;
}

header {
    background: linear-gradient(90deg, #1a3a2e 0%, #0f2419 100%);
    border-bottom: 3px solid #00ff88;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 255, 136, 0.2);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

.logo {
    font-size: 2.2rem;
    font-weight: 700;
    color: #00ff88;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.logo-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #00ff88 0%, #00cc6e 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #00ff88;
    transition: all 0.3s;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 5px;
}

nav a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    padding: 10px 20px;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav a:hover {
    color: #00ff88;
    border: 2px solid #00ff88;
}

.hero {
    background: linear-gradient(135deg, #1a3a2e 0%, #0f2419 100%);
    padding: 100px 30px;
    text-align: center;
    border-bottom: 3px solid #00ff88;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 25px;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 5px;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.hero p {
    font-size: 1.5rem;
    color: #b0b0b0;
    letter-spacing: 2px;
}

.content-section {
    background: #151b18;
    border: 2px solid #00ff88;
    padding: 70px 50px;
    margin: 50px 30px;
}

.content-section h2 {
    font-size: 3rem;
    margin-bottom: 35px;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 4px;
    border-bottom: 3px solid #00ff88;
    padding-bottom: 15px;
}

.content-section p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    line-height: 1.9;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.info-card {
    background: #0a0f0d;
    border: 2px solid #00ff88;
    padding: 35px;
    transition: all 0.3s;
}

.info-card:hover {
    background: #1a3a2e;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.3);
}

.info-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 18px;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.warning-section {
    background: linear-gradient(135deg, #2d1b1b 0%, #1a0f0f 100%);
    border-left: 5px solid #ff3333;
    padding: 40px;
    margin: 50px 30px;
}

.warning-section h3 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    color: #ff3333;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.warning-section ul {
    list-style: none;
    padding: 0;
}

.warning-section li {
    padding: 15px 0;
    padding-left: 40px;
    position: relative;
    font-size: 1.2rem;
    border-bottom: 1px solid rgba(255, 51, 51, 0.2);
}

.warning-section li:last-child {
    border-bottom: none;
}

.warning-section li:before {
    content: "⚠";
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.game-section {
    background: #0a0f0d;
    border: 3px solid #00ff88;
    padding: 50px;
    margin: 50px 30px;
    text-align: center;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.2);
}

.game-section h2 {
    margin-bottom: 35px;
    font-size: 3rem;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.game-wrapper {
    width: 100%;
    max-width: 1200px;
    height: 700px;
    border: 3px solid #00ff88;
    margin: 0 auto;
    display: block;
}

footer {
    background: linear-gradient(90deg, #1a3a2e 0%, #0f2419 100%);
    border-top: 3px solid #00ff88;
    padding: 50px 30px;
    text-align: center;
    margin-top: 80px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
    margin-bottom: 25px;
}

.footer-links a {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links a:hover {
    color: #00ff88;
}

.age-verification {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-verification.active {
    display: flex;
}

.age-box {
    background: linear-gradient(135deg, #1a3a2e 0%, #0f2419 100%);
    border: 4px solid #00ff88;
    padding: 60px;
    text-align: center;
    max-width: 550px;
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.4);
}

.age-box h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #00ff88;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.age-box p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    line-height: 1.8;
}

.age-actions {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.btn {
    padding: 18px 45px;
    border: 3px solid;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Rajdhani', sans-serif;
}

.btn:hover {
    transform: scale(1.08);
}

.btn-confirm {
    background: #00ff88;
    border-color: #00ff88;
    color: #0a0f0d;
}

.btn-decline {
    background: transparent;
    border-color: #ff3333;
    color: #ff3333;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 76px;
        left: -100%;
        width: 100%;
        background: #0a0f0d;
        padding: 20px;
        transition: left 0.3s;
        border-bottom: 3px solid #00ff88;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav a {
        display: block;
        padding: 18px;
        border-bottom: 1px solid rgba(0, 255, 136, 0.2);
    }

    .hero h1 {
        font-size: 2.5rem;
        letter-spacing: 3px;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .content-section {
        padding: 50px 25px;
    }

    .content-section h2 {
        font-size: 2.2rem;
    }

    .game-wrapper {
        height: 500px;
    }

    .age-box {
        padding: 40px 25px;
        margin: 20px;
    }

    .age-actions {
        flex-direction: column;
    }

    .logo {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }
}
