@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;700&display=swap');

:root { 
    --red: #ff0000; 
    --red-glow: rgba(255, 0, 0, 0.5); 
}

* { 
    margin: 0; padding: 0; box-sizing: border-box; 
    font-family: 'Oswald', sans-serif; 
    user-select: none; 
    -webkit-user-drag: none;
}

body { 
    background: #000; color: #fff; 
    overflow-x: hidden; min-height: 100vh; 
    cursor: none; 
}

/* КУРСОР */
.custom-cursor {
    width: 8px; height: 8px; background: var(--red);
    border-radius: 50%; position: fixed; pointer-events: none;
    z-index: 9999; box-shadow: 0 0 10px var(--red);
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, background 0.3s ease;
}
@media (max-width: 1024px) { .custom-cursor { display: none; } body { cursor: auto; } }

/* КОНТЕЙНЕР */
.app-container { 
    max-width: 100%; 
    width: 100%;
    margin: 0 auto; min-height: 100vh; 
    padding: 25px; position: relative; z-index: 5;
}

.hero-content, .navbar, .bottom-blocks, .about-footer, .steps-list, .page-title {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

/* LOGO */
.nav-brand { display: flex; align-items: center; }
.pfp-hex-circle { 
    width: 45px; height: 45px; border: 2px solid var(--red); 
    border-radius: 50%; overflow: hidden; box-shadow: 0 0 15px var(--red-glow);
    display: flex; align-items: center; justify-content: center;
}
.pfp-hex-circle img { width: 100%; height: 100%; object-fit: cover; }

/* NAVBAR */
.navbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.t-main { display: block; font-weight: 700; font-size: 18px; }
.t-sub { font-size: 10px; color: var(--red); font-weight: 700; }
.burger-wrap span { display: block; width: 25px; height: 2px; background: #fff; margin: 6px 0; }

/* HERO АНИМАЦИИ */
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

.hero { position: relative; margin-bottom: 50px; min-height: 400px; }
.glitch-h { font-size: 50px; line-height: 0.9; font-style: italic; font-weight: 900; }
.red-txt { color: var(--red); }
.separator-heavy { width: 50px; height: 5px; background: var(--red); margin: 20px 0; }
.hero-desc { font-size: 12px; color: #555; }

.main-char-layer { 
    position: absolute; 
    top: -20px; 
    right: calc(50% - 250px);
    width: 320px;
    z-index: -1; 
}
@media (max-width: 500px) { .main-char-layer { right: -60px; } }
.parallax-img { 
    width: 100%; 
    filter: drop-shadow(0 0 30px #000); 
    animation: float 6s ease-in-out infinite;
}

/* КНОПКА ПУЛЬСАЦИЯ */
@keyframes pulse-red {
    0% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

.cta-zone { margin-top: 80px; text-align: center; }
.btn-container { display: inline-block; width: 100%; max-width: 450px; position: relative; }
.online-tag { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: #00ff66; color: #000; font-size: 10px; font-weight: 900; padding: 2px 12px; border-radius: 4px; z-index: 10; }
.btn-mega-cut { 
    width: 100%; padding: 22px; background: var(--red); border: none; color: #fff; 
    font-size: 24px; font-weight: 900; clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%); 
    cursor: pointer; animation: pulse-red 2s infinite;
}

/* БЛОКИ ПРОЯВЛЕНИЕ */
.bottom-blocks { margin-top: 60px; display: flex; flex-direction: column; gap: 40px; }
.c-block { 
    display: flex; align-items: center; background: rgba(20,20,20,0.8); 
    border: 1px solid rgba(255,255,255,0.05); border-radius: 20px; 
    padding: 15px; cursor: pointer; transition: all 0.4s ease;
    opacity: 0; transform: translateY(30px);
}
.c-block:hover { border-color: var(--red); background: rgba(30,30,30,0.9); }
.c-img-wrap { width: 140px; margin-top: -60px; }
.c-img-wrap img { width: 100%; }
.c-info p { font-size: 14px; color: #bbb; line-height: 1.4; }

/* ЭФФЕКТЫ */
.overlay-fx { position: fixed; inset: 0; background: radial-gradient(circle at top, rgba(255,0,0,0.15), transparent); z-index: -1; }
.scanlines { position: fixed; inset: 0; background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.25) 50%); z-index: 100; pointer-events: none; background-size: 100% 4px; }

/* КУСТОМ ПОЛИТИКА */
.policy-popup { 
    position: fixed; inset: 0; background: rgba(0,0,0,0.8); 
    backdrop-filter: blur(10px); z-index: 2000; display: none; 
    align-items: center; justify-content: center; opacity: 0; 
}
.policy-content { 
    background: #0a0a0a; border: 1px solid #333; padding: 40px; 
    max-width: 400px; width: 90%; position: relative;
    border-top: 4px solid var(--red);
}
.policy-accent { position: absolute; top: 10px; right: 10px; width: 40px; height: 40px; border-top: 2px solid var(--red); border-right: 2px solid var(--red); opacity: 0.5; }
.policy-content h3 { color: var(--red); margin-bottom: 20px; letter-spacing: 2px; }
.policy-content p { font-size: 14px; color: #ccc; margin-bottom: 15px; line-height: 1.6; }
.policy-content button { 
    width: 100%; padding: 15px; background: transparent; border: 1px solid var(--red); 
    color: #fff; font-weight: 700; cursor: pointer; transition: 0.3s; 
}
.policy-content button:hover { background: var(--red); box-shadow: 0 0 20px var(--red-glow); }

/* MENU */
.menu-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 1000; display: none; align-items: center; justify-content: center; }
.m-nav a { display: block; font-size: 32px; text-decoration: none; color: #fff; margin: 20px 0; font-weight: 700; text-align: center; }
.legal-info { text-align: center; margin-top: 40px; font-size: 10px; color: #444; text-decoration: underline; cursor: pointer; }

/* VIEW START */
.view { display: none; opacity: 0; }
.view.active { display: block; opacity: 1; }
.step-card { 
    display: flex; align-items: center; gap: 20px; background: rgba(255,255,255,0.02); 
    margin-bottom: 15px; padding: 20px; border-radius: 15px; border-left: 4px solid var(--red); 
    opacity: 0; transform: translateX(-20px);
}
.btn-download-final {
    width: 100%; padding: 20px; background: #fff; color: #000; border: none; font-weight: 900;
    margin-top: 20px; clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%); cursor: pointer;
}
