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

body {
    font-family: 'Raleway', sans-serif;
    background: #0d1117;
    color: #c9d1d9;
    line-height: 1.7;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(56, 189, 248, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
    background-attachment: fixed;
}

.nav-container {
    background: rgba(13, 17, 23, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(56, 189, 248, 0.2);
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-title {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #38bdf8 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    overflow: visible;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.burger div {
    width: 25px;
    height: 2px;
    background: #38bdf8;
    transition: 0.3s;
}

.burger.active div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger.active div:nth-child(2) {
    opacity: 0;
}

.burger.active div:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: #8b949e;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    position: relative;
}

.nav-menu a:hover {
    color: #38bdf8;
    background: rgba(56, 189, 248, 0.1);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #38bdf8;
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 80%;
}

.page-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.hero-area {
    text-align: center;
    padding: 5rem 0;
    margin-bottom: 4rem;
}

.hero-area h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #38bdf8 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-area p {
    font-size: 1.4rem;
    color: #8b949e;
    max-width: 800px;
    margin: 0 auto;
}

.alert-panel {
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.3);
    border-left: 4px solid #38bdf8;
    padding: 2.5rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.alert-panel h2 {
    color: #38bdf8;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.alert-panel ul {
    list-style: none;
    padding-left: 0;
}

.alert-panel li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: #c9d1d9;
}

.alert-panel li:before {
    content: "⚡";
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.game-area {
    background: rgba(13, 17, 23, 0.6);
    border: 1px solid rgba(56, 189, 248, 0.2);
    padding: 3rem;
    border-radius: 20px;
    margin: 4rem 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.game-area h2 {
    text-align: center;
    color: #38bdf8;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    font-weight: 700;
}

.game-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid rgba(56, 189, 248, 0.3);
    box-shadow: 0 15px 50px rgba(56, 189, 248, 0.2);
}

.game-container iframe {
    width: 100%;
    height: 640px;
    border: none;
    display: block;
    background: #000;
}

.info-section {
    background: rgba(13, 17, 23, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    padding: 3rem;
    border-radius: 20px;
    margin: 3rem 0;
}

.info-section h2 {
    color: #8b5cf6;
    margin-bottom: 2rem;
    font-size: 2.2rem;
    font-weight: 700;
}

.info-section h3 {
    color: #38bdf8;
    margin: 2rem 0 1rem 0;
    font-size: 1.6rem;
    font-weight: 600;
}

.info-section p {
    color: #8b949e;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.page-title {
    background: rgba(13, 17, 23, 0.6);
    border: 1px solid rgba(56, 189, 248, 0.2);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 3rem;
    text-align: center;
}

.page-title h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #38bdf8 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.page-title p {
    color: #8b949e;
    font-size: 1.1rem;
}

.content-block {
    background: rgba(13, 17, 23, 0.6);
    border: 1px solid rgba(56, 189, 248, 0.2);
    padding: 3rem;
    border-radius: 20px;
    margin-bottom: 2rem;
}

.content-block h2 {
    color: #38bdf8;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(56, 189, 248, 0.3);
}

.content-block h3 {
    color: #8b5cf6;
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.content-block p {
    color: #8b949e;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

footer {
    background: rgba(13, 17, 23, 0.9);
    border-top: 1px solid rgba(56, 189, 248, 0.2);
    padding: 3rem 2rem;
    margin-top: 5rem;
    text-align: center;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: #8b949e;
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.footer-links a:hover {
    color: #38bdf8;
}

.footer-text {
    color: #6e7681;
    font-size: 0.95rem;
}

.age-verification {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 17, 23, 0.98);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.age-popup {
    background: rgba(13, 17, 23, 0.95);
    border: 2px solid rgba(56, 189, 248, 0.3);
    padding: 4rem;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 20px 60px rgba(56, 189, 248, 0.3);
}

.age-popup h2 {
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #38bdf8 0%, #8b5cf6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.age-popup p {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    color: #8b949e;
}

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

.age-btn {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.age-btn-yes {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.age-btn-yes:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.age-btn-no {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: white;
}

.age-btn-no:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
}

.hidden {
    display: none !important;
}

@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: rgba(13, 17, 23, 0.98);
        width: 100%;
        padding: 2rem;
        border-bottom: 1px solid rgba(56, 189, 248, 0.2);
        transition: left 0.3s;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-area h1 {
        font-size: 2.5rem;
    }

    .hero-area p {
        font-size: 1.1rem;
    }

    .game-container iframe {
        height: 540px;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}
