@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:wght@300;400;500;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --cyan: #00d9ff;
    --magenta: #ff0080;
    --dark: #0c0c0c;
    --mid-dark: #1a1a1a;
    --lighter: #2a2a2a;
    --white: #ffffff;
    --light-gray: #cccccc;
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--dark);
    color: var(--white);
}

header {
    background: var(--mid-dark);
    padding: 1.5rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid var(--cyan);
    box-shadow: 0 5px 20px rgba(0, 217, 255, 0.4);
}

.wrapper {
    max-width: 100%;
    padding: 0 2.5rem;
    margin: 0 auto;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--dark);
    font-weight: 900;
    border: 3px solid var(--cyan);
}

.logo-name {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--cyan);
    letter-spacing: 3px;
}

.main-menu ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.main-menu a {
    color: var(--light-gray);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    padding-bottom: 5px;
}

.main-menu a:hover {
    color: var(--cyan);
    border-bottom-color: var(--magenta);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger div {
    width: 30px;
    height: 4px;
    background: var(--cyan);
    transition: all 0.3s ease;
}

.main-content {
    margin-top: 100px;
}

.intro-section {
    background: linear-gradient(135deg, var(--dark), var(--mid-dark));
    padding: 6rem 0;
    border-bottom: 5px solid var(--magenta);
}

.intro-section h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 5.5rem;
    color: var(--cyan);
    margin-bottom: 1.5rem;
    line-height: 1;
    letter-spacing: 2px;
}

.intro-section p {
    font-size: 1.6rem;
    color: var(--light-gray);
    max-width: 900px;
}

.notice-block {
    background: var(--lighter);
    padding: 3rem;
    margin: 5rem 0;
    border-left: 8px solid var(--magenta);
    border-right: 8px solid var(--cyan);
}

.notice-block h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 3.5rem;
    color: var(--cyan);
    margin-bottom: 2rem;
}

.notice-block ul {
    list-style: none;
    font-size: 1.3rem;
    line-height: 2.5;
}

.notice-block li {
    padding-left: 2.5rem;
    position: relative;
}

.notice-block li::before {
    content: '■';
    position: absolute;
    left: 0;
    color: var(--magenta);
    font-size: 2rem;
}

.text-section {
    padding: 6rem 0;
}

.text-section h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    color: var(--magenta);
    margin-bottom: 2rem;
    letter-spacing: 2px;
}

.text-section p {
    font-size: 1.3rem;
    color: var(--light-gray);
    line-height: 2;
    margin-bottom: 2rem;
}

.game-box {
    background: var(--mid-dark);
    padding: 3rem;
    margin: 6rem 0;
    border: 5px solid var(--cyan);
    box-shadow: 0 0 40px rgba(255, 0, 128, 0.3), 0 0 60px rgba(0, 217, 255, 0.2);
}

.game-box iframe {
    width: 100%;
    height: 700px;
    border: none;
    background: #000;
}

.blocks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin: 5rem 0;
}

.block-item {
    background: var(--lighter);
    padding: 3rem;
    border: 3px solid var(--cyan);
    transition: all 0.3s ease;
}

.block-item:hover {
    border-color: var(--magenta);
    transform: scale(1.03);
    box-shadow: 0 10px 40px rgba(255, 0, 128, 0.4);
}

.block-item h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2.5rem;
    color: var(--cyan);
    margin-bottom: 1.5rem;
}

.block-item p {
    font-size: 1.2rem;
    color: var(--light-gray);
    line-height: 1.8;
}

footer {
    background: var(--mid-dark);
    padding: 4rem 0 2rem;
    margin-top: 7rem;
    border-top: 5px solid var(--magenta);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-item h3 {
    font-family: 'Bebas Neue', cursive;
    font-size: 2rem;
    color: var(--cyan);
    margin-bottom: 1.5rem;
}

.footer-item p {
    color: var(--light-gray);
    line-height: 2;
    font-size: 1.1rem;
}

.footer-item ul {
    list-style: none;
}

.footer-item a {
    color: var(--light-gray);
    text-decoration: none;
    line-height: 2.5;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    display: block;
}

.footer-item a:hover {
    color: var(--magenta);
}

.footer-bar {
    text-align: center;
    padding-top: 3rem;
    border-top: 2px solid var(--lighter);
    color: var(--light-gray);
    font-size: 1.1rem;
}

.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 12, 12, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.age-gate.hidden {
    display: none;
}

.gate-box {
    background: var(--mid-dark);
    padding: 4rem;
    text-align: center;
    max-width: 650px;
    border: 5px solid var(--cyan);
    box-shadow: 0 0 50px rgba(0, 217, 255, 0.5), 0 0 80px rgba(255, 0, 128, 0.3);
}

.gate-box h2 {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    color: var(--magenta);
    margin-bottom: 2rem;
}

.gate-box p {
    font-size: 1.3rem;
    color: var(--light-gray);
    margin-bottom: 3rem;
    line-height: 1.9;
}

.gate-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.gate-button {
    padding: 1.5rem 4rem;
    font-size: 1.3rem;
    font-weight: 900;
    border: none;
    cursor: pointer;
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.gate-yes {
    background: linear-gradient(135deg, var(--cyan), var(--magenta));
    color: var(--dark);
}

.gate-yes:hover {
    transform: scale(1.08);
    box-shadow: 0 10px 40px rgba(0, 217, 255, 0.6);
}

.gate-no {
    background: transparent;
    color: var(--cyan);
    border: 3px solid var(--cyan);
}

.gate-no:hover {
    background: rgba(0, 217, 255, 0.2);
}

@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .main-menu ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--mid-dark);
        flex-direction: column;
        padding: 6rem 2rem;
        gap: 2rem;
        transition: right 0.4s ease;
        border-left: 4px solid var(--cyan);
    }

    .main-menu ul.active {
        right: 0;
    }

    .wrapper {
        padding: 0 1.5rem;
    }

    .intro-section h1 {
        font-size: 3.5rem;
    }

    .intro-section p {
        font-size: 1.3rem;
    }

    .blocks-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .game-box iframe {
        height: 500px;
    }
}
