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

body {
    background: #0d0d0f;
    color: #e0e0ff;
    font-family: 'JetBrains Mono', monospace;
    min-height: 100vh;
    background-image: radial-gradient(circle at 25% 15%, rgba(80, 80, 255, 0.07) 0%, transparent 15%),
    radial-gradient(circle at 75% 85%, rgba(120, 60, 255, 0.06) 0%, transparent 20%);
    overflow-x: hidden;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem 8rem;
    text-align: center;
    position: relative;
}

.glitch {
    font-size: clamp(2.8rem, 7.5vw, 6.8rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #00f0ff;
    text-shadow: 0 0 10px #00f0ff33, 0 0 30px #00f0ff22;
    position: relative;
    line-height: 0.92;
    animation: flicker 4s infinite alternate;
}

.glitch .line1 {
    display: block;
}

.glitch .line2 {
    display: block;
    font-size: .7em;
    opacity: 0.92;
    letter-spacing: -0.01em;
    font-weight: bold;
}

.glitch::before,
.glitch::after {
    content: "Разработка цифровых продуктов";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.75;
}

.glitch::before {
    left: 2px;
    text-shadow: -2px 0 #ff00aa88;
    clip: rect(0, 9999px, 0, 0);
    animation: glitch-anim 3.2s infinite linear alternate-reverse;
}

.glitch::after {
    left: -2px;
    text-shadow: 2px 0 #00ff9d88;
    clip: rect(0, 9999px, 0, 0);
    animation: glitch-anim2 2.7s infinite linear alternate-reverse;
}

.subtitle {
    margin: 1.8rem 0 3.5rem;
    font-size: clamp(1rem, 2.8vw, 1.35rem);
    color: #8899ff;
    opacity: 0.82;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Контакты внизу */
.footer-contact {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    color: #a0a0ff;
    opacity: 0.75;
    transition: all 0.3s ease;
}

.footer-contact:hover {
    opacity: 1;
    color: #00f0ff;
    text-shadow: 0 0 12px #00f0ff44;
}

.telegram-icon {
    width: 1.3em;
    height: 1.3em;
    margin-right: 0.5em;
    vertical-align: -0.14em;
}

/* Остальные стили info-block без изменений */
.info-block {
    max-width: 820px;
    font-size: 1.05rem;
    line-height: 1.65;
    color: #b0b0ff;
    opacity: 0.78;
    text-align: left;
    padding: 2.2rem 2.8rem;
    background: rgba(20, 20, 35, 0.35);
    border: 1px solid rgba(80, 80, 180, 0.15);
    border-radius: 8px;
    transition: all 0.4s ease;
}

.info-block:hover {
    opacity: 0.93;
    border-color: rgba(0, 240, 255, 0.22);
    box-shadow: 0 0 40px rgba(0, 240, 255, 0.09);
}

.info-block h3 {
    color: #66ccff;
    font-size: 1.3rem;
    margin: 2rem 0 0.9rem;
    opacity: 0.9;
}

.info-block ul {
    list-style: none;
    padding-left: 1.8em;
    margin: 0.6em 0 2em;
}

.info-block li {
    position: relative;
    margin: 0.75em 0;
}

.info-block li::before {
    content: "→";
    position: absolute;
    left: -1.4em;
    color: #00ff9d;
    opacity: 0.65;
}

.matrix-rain {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: -2;
    opacity: 0.065;
}
