/* TeleLive — About page */
.tl-about {
    max-width: 820px;
    margin: 0 auto;
    padding: 20px 16px 56px;
}

.tl-about-glass {
    border-radius: 18px;
    border: 1px solid rgba(96, 165, 250, 0.16);
    background:
        linear-gradient(145deg, rgba(30, 86, 245, 0.08), rgba(18, 20, 30, 0.42)),
        var(--bg-elev-1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}
@supports ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
    .tl-about-glass {
        background: linear-gradient(145deg, rgba(30, 86, 245, 0.1), rgba(18, 20, 30, 0.28));
        backdrop-filter: blur(18px) saturate(160%);
        -webkit-backdrop-filter: blur(18px) saturate(160%);
    }
}

.tl-about-hero {
    position: relative;
    text-align: center;
    padding: 28px 20px 32px;
    margin-bottom: 28px;
    overflow: hidden;
    animation: tl-about-fade-up 0.7s ease both;
}

.tl-about-hero__glow {
    position: absolute;
    inset: -40% -20% auto;
    height: 70%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12), transparent 65%);
    pointer-events: none;
    animation: tl-about-glow-pulse 6s ease-in-out infinite;
}

.tl-about-hero__version {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #93c5fd;
    background: rgba(30, 86, 245, 0.14);
    border: 1px solid rgba(96, 165, 250, 0.28);
}

.tl-about-hero__brand {
    position: relative;
    margin: 0 0 6px;
    font-size: clamp(1.8rem, 5vw, 2.35rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.1;
    background: linear-gradient(135deg, #fff 0%, #93c5fd 55%, #60a5fa 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.tl-about-hero__tagline {
    position: relative;
    margin: 0 0 14px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
}

.tl-about-hero__intro {
    position: relative;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.75;
    color: var(--text-muted);
    max-width: 640px;
    margin-inline: auto;
}

.tl-about-section {
    margin-bottom: 22px;
    animation: tl-about-fade-up 0.65s ease both;
}

.tl-about-section:nth-child(2) { animation-delay: 0.08s; }
.tl-about-section:nth-child(3) { animation-delay: 0.14s; }
.tl-about-section:nth-child(4) { animation-delay: 0.2s; }

.tl-about-section__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.02rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--text);
}

.tl-about-section__title i {
    color: var(--brand);
    font-size: 0.95rem;
}

.tl-about-card {
    padding: 16px 18px;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-muted);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.tl-about-card:hover {
    border-color: rgba(96, 165, 250, 0.22);
    transform: translateY(-1px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.tl-about-card p { margin: 0 0 10px; }
.tl-about-card p:last-child { margin-bottom: 0; }
.tl-about-card ul {
    margin: 0;
    padding-inline-start: 1.15rem;
}
.tl-about-card li { margin-bottom: 8px; }
.tl-about-card li:last-child { margin-bottom: 0; }

/* Stats */
.tl-about-stats {
    margin: 32px 0;
    padding: 22px 18px 18px;
    animation: tl-about-fade-up 0.7s ease 0.24s both;
}

.tl-about-stats__title {
    margin: 0 0 16px;
    font-size: 1.05rem;
    font-weight: 800;
    text-align: center;
    color: var(--text);
}

.tl-about-stats__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.tl-about-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 14px 8px 12px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.tl-about-stat:hover {
    transform: translateY(-3px);
    background: rgba(30, 86, 245, 0.1);
    border-color: rgba(96, 165, 250, 0.25);
}

.tl-about-stat__icon {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 11px;
    font-size: 1rem;
    color: #93c5fd;
    background: rgba(30, 86, 245, 0.16);
}

.tl-about-stat__value {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
    font-weight: 800;
    color: var(--text);
    font-variant-numeric: tabular-nums;
    direction: ltr;
    unicode-bidi: isolate;
}

.tl-about-stat__label {
    font-size: 0.72rem;
    line-height: 1.35;
    color: var(--text-muted);
    font-weight: 600;
}

.tl-about-stats__note {
    margin: 14px 0 0;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
    opacity: 0.85;
}

.tl-about-stats__note i {
    color: #fbbf24;
    margin-inline-end: 4px;
}

/* Apps */
.tl-about-apps {
    margin: 28px 0;
    padding: 20px 18px;
    animation: tl-about-fade-up 0.7s ease 0.3s both;
}

.tl-about-apps__title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 6px;
    color: var(--text);
}

.tl-about-apps__desc {
    margin: 0 0 14px;
    font-size: 0.86rem;
    color: var(--text-muted);
    line-height: 1.55;
}

.tl-about-apps__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 16px;
    align-items: center;
}

.tl-about-apps__badges a {
    display: inline-block;
    line-height: 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.tl-about-apps__badges a:hover {
    transform: translateY(-3px) scale(1.02);
    opacity: 0.92;
}

.tl-about-apps__badges img {
    height: 48px;
    width: auto;
    max-width: 180px;
    display: block;
}

.tl-about-telegram-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    padding: 10px 16px;
    border-radius: 10px;
    background: rgba(34, 158, 217, 0.14);
    border: 1px solid rgba(34, 158, 217, 0.35);
    color: #229ED9;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: background 0.15s ease, transform 0.15s ease;
}

.tl-about-telegram-btn:hover {
    background: rgba(34, 158, 217, 0.22);
    transform: translateY(-1px);
}

.tl-about-trust {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    animation: tl-about-fade-up 0.7s ease 0.36s both;
}

.tl-about-trust__title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 14px;
    color: var(--text);
}

.tl-about-trust__row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
}

.tl-about-contact {
    flex: 1;
    min-width: 220px;
    font-size: 0.88rem;
    line-height: 1.7;
    color: var(--text-muted);
    padding: 16px 18px;
}

.tl-about-contact .about-lbl {
    display: block;
    font-weight: 700;
    color: var(--text);
    font-size: 0.82rem;
    margin-bottom: 4px;
}

.tl-about-contact .about-phone {
    direction: ltr;
    unicode-bidi: embed;
    display: inline-block;
}

.tl-about-memorial {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    animation: tl-about-fade-up 0.7s ease 0.42s both;
}

.tl-about-memorial__title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 16px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}

.tl-about-memorial__title i { color: var(--text-muted); font-size: 0.92rem; }

.tl-about-memorial__card {
    padding: 18px 16px 16px;
    text-align: center;
    transition: border-color 0.2s ease;
}

.tl-about-memorial__card:hover {
    border-color: rgba(255, 255, 255, 0.12);
}

.tl-about-memorial__photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px;
}

.tl-about-memorial__photos img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--line);
    transition: transform 0.3s ease;
}

.tl-about-memorial__photos img:hover {
    transform: scale(1.03);
}

.tl-about-memorial__text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.85;
    color: var(--text-muted);
}

.tl-about-memorial__name {
    display: block;
    margin-top: 10px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.01em;
}

@keyframes tl-about-fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tl-about-glow-pulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

@media (max-width: 720px) {
    .tl-about-stats__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .tl-about-stat:last-child {
        grid-column: 1 / -1;
        max-width: 220px;
        margin-inline: auto;
        width: 100%;
    }
}

@media (max-width: 520px) {
    .tl-about-hero { padding: 22px 14px 26px; }
    .tl-about-memorial__photos { gap: 8px; }
    .tl-about-memorial__photos img { border-radius: 10px; }
}

@media (prefers-reduced-motion: reduce) {
    .tl-about-hero,
    .tl-about-section,
    .tl-about-stats,
    .tl-about-apps,
    .tl-about-trust,
    .tl-about-memorial {
        animation: none;
    }
    .tl-about-hero__glow { animation: none; }
    .tl-about-card:hover,
    .tl-about-stat:hover,
    .tl-about-memorial__photos img:hover {
        transform: none;
    }
}
