@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;600;700;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Orbitron', sans-serif;
    background: #000000;
    color: #ffffff;
    line-height: 1.8;
    overflow-x: hidden;
}

.container {
    max-width: 100%;
    margin: 0 auto;
}

header {
    background: linear-gradient(180deg, #ff006e 0%, #8338ec 100%);
    padding: 25px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(255, 0, 110, 0.5);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(90deg, #ffbe0b, #fb5607, #ff006e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #ffbe0b 0%, #ff006e 100%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 7px;
}

.hamburger span {
    width: 32px;
    height: 4px;
    background: linear-gradient(90deg, #ffbe0b, #ff006e);
    transition: all 0.3s;
    border-radius: 2px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 10px;
}

nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s;
    padding: 12px 24px;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.1);
}

nav a:hover {
    background: linear-gradient(90deg, #ff006e, #8338ec);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 0, 110, 0.5);
}

.hero {
    background: linear-gradient(135deg, #3a0ca3 0%, #f72585 50%, #ff9e00 100%);
    padding: 120px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.03) 10px,
        rgba(255, 255, 255, 0.03) 20px
    );
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 30px;
    font-weight: 900;
    position: relative;
    z-index: 1;
    text-shadow: 0 0 20px rgba(255, 190, 11, 0.8), 0 0 40px rgba(255, 0, 110, 0.6);
}

.hero p {
    font-size: 1.6rem;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.content-block {
    background: linear-gradient(135deg, #1a001a 0%, #330033 100%);
    border: 3px solid #ff006e;
    border-radius: 30px;
    padding: 70px 60px;
    margin: 60px 40px;
    box-shadow: 0 0 50px rgba(255, 0, 110, 0.3);
}

.content-block h2 {
    font-size: 3.5rem;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(90deg, #ffbe0b, #ff006e, #8338ec);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.content-block p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    line-height: 2;
}

.feature-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    margin-top: 60px;
}

.feature-box {
    background: rgba(0, 0, 0, 0.6);
    border: 3px solid;
    border-image: linear-gradient(135deg, #ffbe0b, #ff006e, #8338ec) 1;
    padding: 40px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #ff006e 0%, #8338ec 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.feature-box:hover::before {
    opacity: 0.2;
}

.feature-box:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 0, 110, 0.6);
}

.box-icon {
    font-size: 4rem;
    margin-bottom: 25px;
    display: block;
}

.feature-box h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 900;
    color: #ffbe0b;
}

.alert-block {
    background: linear-gradient(135deg, #3a0000 0%, #1a0000 100%);
    border-left: 8px solid #ff006e;
    border-radius: 15px;
    padding: 50px;
    margin: 60px 40px;
}

.alert-block h3 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #ff006e;
    font-weight: 900;
}

.alert-block ul {
    list-style: none;
    padding: 0;
}

.alert-block li {
    padding: 18px 0;
    padding-left: 45px;
    position: relative;
    font-size: 1.25rem;
    border-bottom: 2px solid rgba(255, 0, 110, 0.2);
}

.alert-block li:last-child {
    border-bottom: none;
}

.alert-block li:before {
    content: "⚡";
    position: absolute;
    left: 0;
    font-size: 1.8rem;
}

.game-zone {
    background: #000000;
    border: 5px solid;
    border-image: linear-gradient(90deg, #ffbe0b, #ff006e, #8338ec) 1;
    border-radius: 30px;
    padding: 60px;
    margin: 60px 40px;
    text-align: center;
}

.game-zone h2 {
    margin-bottom: 40px;
    font-size: 3.5rem;
    background: linear-gradient(90deg, #ffbe0b, #ff006e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.game-embed {
    width: 100%;
    max-width: 1200px;
    height: 700px;
    border: 4px solid #ff006e;
    border-radius: 15px;
    margin: 0 auto;
    display: block;
    box-shadow: 0 0 50px rgba(255, 0, 110, 0.4);
}

footer {
    background: linear-gradient(180deg, #8338ec 0%, #ff006e 100%);
    padding: 60px 40px;
    text-align: center;
    margin-top: 100px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-bottom: 30px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: #ffbe0b;
    text-shadow: 0 0 10px rgba(255, 190, 11, 0.8);
}

.age-check {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.97);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.age-check.active {
    display: flex;
}

.age-panel {
    background: linear-gradient(135deg, #3a0ca3 0%, #f72585 100%);
    border: 5px solid #ffbe0b;
    border-radius: 30px;
    padding: 70px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 0 80px rgba(255, 190, 11, 0.6);
}

.age-panel h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: 900;
    color: #ffbe0b;
    text-shadow: 0 0 20px rgba(255, 190, 11, 0.5);
}

.age-panel p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    line-height: 2;
}

.age-options {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.btn {
    padding: 20px 50px;
    border: 4px solid;
    font-size: 1.3rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 15px;
    font-family: 'Orbitron', sans-serif;
}

.btn:hover {
    transform: scale(1.1);
}

.btn-accept {
    background: #ffbe0b;
    border-color: #ffbe0b;
    color: #000000;
}

.btn-reject {
    background: transparent;
    border-color: #ff006e;
    color: #ff006e;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        position: fixed;
        top: 97px;
        left: -100%;
        width: 100%;
        background: rgba(0, 0, 0, 0.98);
        padding: 25px;
        transition: left 0.3s;
        border-bottom: 4px solid #ff006e;
    }

    nav.active {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
    }

    nav a {
        display: block;
        padding: 20px;
        margin: 5px 0;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1.3rem;
    }

    .content-block {
        padding: 50px 30px;
    }

    .content-block h2 {
        font-size: 2.5rem;
    }

    .game-embed {
        height: 500px;
    }

    .age-panel {
        padding: 50px 30px;
        margin: 20px;
    }

    .age-options {
        flex-direction: column;
    }

    .logo {
        font-size: 1.8rem;
    }
}
