.about-page {
    position: relative;
    min-height: calc(100vh - 120px);
    overflow: hidden;
}

.about-canvas {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.about-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    background-size: cover;
    background-position: center;
}

.about-bg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(4px);
}

.about-wrap {
    position: relative;
    z-index: 2;
    padding: 32px 0 50px;
    color: #fff;
}

.about-title {
    text-align: center;
    margin-bottom: 22px;
}

.about-title h1 {
    margin: 0;
    font-size: 38px;
}

.about-title p {
    margin-top: 8px;
    opacity: 0.9;
}

.about-top {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.about-left {
    width: 34%;
    display: grid;
    gap: 16px;
}

.about-right {
    width: 66%;
    display: grid;
    gap: 16px;
}

.about-right-top {
    display: flex;
    gap: 16px;
}

.about-card {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(2,6,23,0.16);
    padding: 16px;
}

.author-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.author-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.45);
    display: grid;
    place-items: center;
    font-size: 28px;
    font-weight: 700;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-meta h3 {
    margin: 0;
    font-size: 20px;
}

.author-sign {
    margin-top: 8px;
    font-size: 13px;
    padding: 6px 10px;
    background: rgba(255,255,255,0.16);
    border-radius: 8px;
}

.typing-line {
    margin-top: 14px;
    font-size: 14px;
}

.card-h {
    margin: 0 0 10px;
}

.contact-msg {
    opacity: 0.9;
}

.intro-card {
    width: 48%;
}

.intro-item {
    margin-bottom: 8px;
    font-size: 15px;
}

.weather-card {
    width: 52%;
}

.weather-card h5 {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 600;
}

.about-slides .swiper {
    height: 280px;
}

.about-slides .swiper-slide {
    border-radius: 12px;
    overflow: hidden;
}

.about-slides img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-bottom {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}

.media-card {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    max-height: 260px;
    background: rgba(255,255,255,0.14);
}

.media-title {
    position: absolute;
    left: 14px;
    top: 12px;
    z-index: 2;
    font-weight: 800;
}

.media-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.55s ease;
}

.media-card:hover img {
    transform: scale(1.05);
}

.media-empty {
    width: 100%;
    height: 100%;
    min-height: 190px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(59,130,246,0.26), rgba(139,92,246,0.26));
}

@media (max-width: 1100px) {
    .about-top,
    .about-right-top {
        flex-direction: column;
    }
    .about-left,
    .about-right,
    .intro-card,
    .weather-card,
    .media-card {
        width: 100%;
    }
    .about-bottom { grid-template-columns: 1fr; }
}

