:root {
    --bg-color: #0a0a0a;
    --accent-orange: #ff4d00;
    --text-main: #e0e0e0;
    --border-color: rgba(255, 255, 255, 0.075); /* Сетка стала чуть заметнее */
    --font-mono: 'JetBrains Mono', monospace;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-mono);
    height: 100vh;
    overflow: hidden;
}

/* --- ШАПКА --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #222;
    z-index: 1000;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}

.nav-logo img { height: 35px; }

.nav-links a {
    text-decoration: none;
    color: #888;
    font-size: 14px;
    margin-left: 25px;
    transition: 0.2s;
}

.nav-links a:hover {
    color: var(--accent-orange);
}

/* --- ГЛАВНЫЙ ЭКРАН --- */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
}

/* СЕТКА */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(var(--border-color) 1px, transparent 1px),
        linear-gradient(90deg, var(--border-color) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -1;
}

.main-logo {
    width: 150px;
    margin-bottom: 25px;
}

.hero h1 {
    font-size: clamp(2rem, 8vw, 4rem);
    text-transform: uppercase;
    color: white;
    margin-bottom: 10px;
}

.hero h1::after {
    content: "_";
    animation: blink 1s infinite;
    color: var(--accent-orange);
}

.hero p {
    font-size: 16px;
    color: #666;
}

/* --- ТЕГ BETA (СКРУГЛЕННЫЙ) --- */
.beta-tag {
    margin-top: 35px;
    padding: 6px 20px;
    background-color: var(--accent-orange);
    color: #000;
    font-weight: bold;
    border-radius: 50px; /* Сделал форму "пилюли" */
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(255, 77, 0, 0.2);
}

/* --- КРАСНЫЙ ГРАДИЕНТ СНИЗУ (25% прозрачность) --- */
.bottom-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 25vh;
    background: linear-gradient(to top, rgba(255, 0, 0, 0.25), transparent);
    pointer-events: none;
    z-index: 1;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}