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

body {
    font-family: 'Share Tech Mono', monospace;
    overflow: hidden;
    color: #fff;
    background: #000;
}

/* Контейнер для частиц - на весь экран */
#particles-js {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Центральный контент поверх частиц */
.content {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    pointer-events: none; /* Чтобы клики проходили сквозь текст к частицам */
}

h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.gradient-text {
    background: linear-gradient(90deg, #00ffff, #00ffaa, #ff00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #aaa;
    line-height: 1.5;
    max-width: 600px;
}

.terminal {
    background: rgba(10, 15, 30, 0.8);
    border: 1px solid #00ffff;
    border-radius: 5px;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    font-size: 1.5rem;
    text-align: left;
    min-width: 500px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    pointer-events: auto; /* Терминал можно выделять */
}

.typed-text {
    color: #00ffaa;
}

.cursor {
    color: #00ffff;
    animation: blink 1s infinite;
}

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

.hint {
    margin-top: 2rem;
    color: #888;
    font-size: 0.9rem;
}

.footer {
    position: absolute;
    bottom: 20px;
    color: #555;
    font-size: 0.8rem;
}

/* Адаптивность */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .subtitle { font-size: 1rem; }
    .terminal { min-width: 90%; font-size: 1.2rem; }
}
