/* Контейнер для всех колонок */
.rain-container {
    position: fixed;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}
/* Каждая колонка — вертикальный список символов */
.column {
    position: absolute;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    transition: transform 0s;
    will-change: transform;
    pointer-events: none;
    top: -1000px; /* ВСЕ КОЛОНКИ СТАРТУЮТ НАД ВЬЮПОРТОМ */
}
/* Отдельный символ */
.char {
    display: block;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.2;
    white-space: pre;
}
/* Голова (первый символ в column-reverse = нижний) — белая, непрозрачная */
.column .char:first-child {
    color: #ffffff;
    opacity: 1 !important;
}
/* Остальные символы — зелёные, с плавающей прозрачностью (задаётся в style) */
.column .char:not(:first-child) {
    color: #2eff8c;
   
}
/* Responsive */
@media (max-width: 768px) {
    .char {
        font-size: 14px;
    }
}