/* Главная страница использует базовые стили из global.css */

.news-section {
    position: relative;
    padding: clamp(72px, 9vw, 108px) 0 clamp(88px, 10vw, 124px);
    background:
        radial-gradient(circle at 14% 12%, rgba(240, 164, 41, 0.08), transparent 24%),
        radial-gradient(circle at 82% 0%, rgba(255, 209, 138, 0.05), transparent 20%),
        linear-gradient(180deg, #0d141c 0%, #111922 52%, #0b1219 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    overflow: clip;
}

.news-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.1;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.62), transparent 96%);
}

.news-section::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 209, 138, 0.05) 50%, transparent 100%);
    opacity: 0.55;
}

.section-heading {
    position: relative;
    z-index: 1;
    margin-bottom: 28px;
    text-align: center;
}

.news-heading {
    text-align: left;
    max-width: 1080px;
    margin: 0 auto 26px;
}

.section-kicker {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: var(--accent-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.section-title {
    margin: 0;
    font-size: clamp(30px, 4.6vw, 52px);
    line-height: 0.96;
    letter-spacing: -0.045em;
    font-weight: 900;
}

.news-slider {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 14px;
    max-width: 1080px;
    margin: 0 auto;
}

.news-track-viewport {
    overflow: hidden;
}

.news-track {
    display: flex;
    transition: transform 360ms cubic-bezier(.22, 1, .36, 1);
    will-change: transform;
}

.news-card {
    width: 100%;
    flex: 0 0 100%;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.07);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.025)),
        #111821;
    box-shadow:
        0 24px 54px rgba(0,0,0,0.24),
        inset 0 1px 0 rgba(255,255,255,0.04);
}

.news-card-media {
    position: relative;
    aspect-ratio: 21 / 8;
    min-height: 260px;
    max-height: 320px;
    overflow: hidden;
    background: #121920;
}

.news-card-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 34%;
    background: linear-gradient(180deg, transparent, rgba(8, 13, 18, 0.72));
    pointer-events: none;
}

.news-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-play {
    position: absolute;
    left: 18px;
    top: 18px;
    z-index: 2;
    width: 58px;
    height: 42px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(14,20,29,0.9), rgba(12,17,24,0.78));
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(0,0,0,0.26);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
}

.news-play svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
    margin-left: 2px;
}

.news-play:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 209, 138, 0.36);
    background: linear-gradient(180deg, rgba(240,164,41,0.92), rgba(186,122,24,0.9));
    box-shadow: 0 18px 36px rgba(143, 88, 14, 0.28);
}

.news-card-content {
    padding: 0;
}

.news-card-titlebar {
    padding: 18px 24px 14px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)),
        linear-gradient(90deg, rgba(240,164,41,0.08), transparent 24%);
    border-top: 1px solid rgba(255,255,255,0.045);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.news-card-titlebar h3 {
    margin: 0;
    font-size: clamp(22px, 2.3vw, 28px);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.news-card-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    padding: 14px 24px 18px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    flex-wrap: wrap;
}

.news-card-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.03);
}

.news-card-meta span:last-child {
    color: var(--accent-soft);
}

.news-nav {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.025));
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(0,0,0,0.18);
    transition: transform var(--transition), border-color var(--transition), background var(--transition), opacity var(--transition);
}

.news-nav svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.news-nav:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 209, 138, 0.28);
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.04));
}

.news-nav.is-disabled {
    opacity: 0.45;
    cursor: default;
}

.news-dots {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    max-width: 1080px;
    margin: 18px auto 0;
}

.news-dot {
    width: 34px;
    height: 4px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    background: rgba(255,255,255,0.12);
    cursor: pointer;
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.news-dot.is-active {
    background: linear-gradient(90deg, #ffd390, #f0a429);
    box-shadow: 0 0 16px rgba(240,164,41,0.3);
    transform: none;
}
.modal-video-card {
    width: min(1240px, calc(100vw - 32px));
    padding: 28px;
    text-align: left;
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(16, 24, 34, 0.98), rgba(9, 14, 20, 0.98)),
        #0b1118;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 42px 120px rgba(0,0,0,0.52),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

.modal-video-header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 88px 0 88px;
    margin-bottom: 20px;
}

.modal-icon-close {
    position: absolute;
    left: 28px;
    top: 28px;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: transform var(--transition), border-color var(--transition), background var(--transition), box-shadow var(--transition);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 18px 34px rgba(0,0,0,0.24);
}

.modal-icon-close svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.modal-icon-close:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 209, 138, 0.34);
    background: linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.05));
    box-shadow: 0 22px 42px rgba(0,0,0,0.3);
}

.video-frame-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    background:
        radial-gradient(circle at 50% 0%, rgba(240,164,41,0.08), transparent 34%),
        #05080d;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.04),
        0 24px 56px rgba(0,0,0,0.3);
}

.video-frame-wrap::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.video-frame-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 900px) {
    .news-slider {
        grid-template-columns: 1fr;
    }

    .news-nav {
        display: none;
    }

    .modal-video-card {
        width: min(100vw - 20px, 100%);
        padding: 22px;
        border-radius: 24px;
    }

    .modal-video-header {
        padding-right: 0;
        padding-left: 60px;
    }

    .modal-icon-close {
        left: 20px;
        top: 20px;
        width: 46px;
        height: 46px;
        border-radius: 15px;
    }
}

@media (max-width: 720px) {
    .news-section {
        padding: 64px 0 78px;
    }

    .section-heading {
        margin-bottom: 26px;
    }

    .news-card {
        border-radius: 24px;
    }

    .news-play {
        width: 56px;
        height: 56px;
        left: 14px;
        top: 14px;
    }

    .news-card-titlebar,
    .news-card-meta {
        padding-left: 18px;
        padding-right: 18px;
    }

    .news-card-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .modal-video-card {
        padding: 18px 18px 16px;
    }

    .modal-video-header {
        padding-left: 52px;
        margin-bottom: 14px;
    }
}


.launcher-download-section {
    position: relative;
    padding: clamp(74px, 9vw, 118px) 0 clamp(94px, 10vw, 130px);
    background:
        radial-gradient(circle at 14% 18%, rgba(240, 164, 41, 0.11), transparent 22%),
        radial-gradient(circle at 82% 16%, rgba(116, 163, 255, 0.09), transparent 20%),
        radial-gradient(circle at 50% 100%, rgba(255, 210, 138, 0.06), transparent 30%),
        linear-gradient(180deg, #0d141c 0%, #111923 48%, #0a121a 100%);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    overflow: clip;
}

.launcher-download-section::before,
.launcher-download-section::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.launcher-download-section::before {
    background:
        linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.12;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.68), transparent 96%);
}

.launcher-download-section::after {
    background:
        radial-gradient(circle at 24% 32%, rgba(255, 211, 144, 0.12), transparent 18%),
        radial-gradient(circle at 72% 54%, rgba(89, 144, 255, 0.08), transparent 24%);
    filter: blur(22px);
    opacity: 0.9;
}

.launcher-shell {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(420px, 0.92fr) minmax(0, 1.12fr);
    gap: clamp(20px, 2.4vw, 34px);
    align-items: center;
}

.launcher-copy {
    display: grid;
    gap: 24px;
    margin-right: -8px;
    margin-left: -26px;
}

.launcher-platforms {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.065), rgba(255,255,255,0.03)),
        rgba(10, 16, 24, 0.72);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 20px 38px rgba(0,0,0,0.24);
    width: fit-content;
    max-width: 100%;
}

.launcher-platform {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 56px;
    padding: 0 20px;
    border-radius: 18px;
    border: 1px solid transparent;
    background: transparent;
    color: var(--text-soft);
    font: inherit;
    font-weight: 800;
    letter-spacing: 0.01em;
}

.launcher-platform-icon,
.launcher-platform-lock {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.launcher-platform-icon svg,
.launcher-platform-lock svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.launcher-platform.is-active {
    color: #111823;
    border-color: rgba(255, 223, 167, 0.42);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.26), rgba(255,255,255,0.06) 28%, transparent 28%),
        linear-gradient(180deg, #ffddaa 0%, #f0a429 100%);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.34),
        inset 0 -1px 0 rgba(145,85,0,0.16),
        0 12px 24px rgba(158, 96, 10, 0.25);
}

.launcher-platform.is-locked {
    color: rgba(212, 222, 234, 0.42);
    border-color: rgba(255,255,255,0.04);
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
    cursor: not-allowed;
    filter: saturate(0.35);
}

.launcher-platform-lock {
    width: 30px;
    height: 30px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.05);
    background: rgba(255,255,255,0.04);
}

.launcher-copy-card {
    position: relative;
    padding: clamp(30px, 4vw, 42px);
    border-radius: 32px;
    border: 1px solid rgba(255,255,255,0.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.024) 48%, rgba(255,255,255,0.02) 100%),
        linear-gradient(125deg, rgba(240,164,41,0.08), transparent 34%, transparent 100%),
        rgba(8, 13, 19, 0.88);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 30px 54px rgba(0,0,0,0.28),
        0 0 0 1px rgba(255,255,255,0.02);
    overflow: hidden;
}

.launcher-copy-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,0.08), transparent 30%, transparent 70%, rgba(255,255,255,0.04));
    pointer-events: none;
}

.launcher-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    color: var(--accent-soft);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.launcher-title {
    margin: 18px 0 14px;
    max-width: 11ch;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 0.96;
    letter-spacing: -0.05em;
    font-weight: 900;
}

.launcher-description {
    margin: 0;
    max-width: 620px;
    color: var(--text-soft);
    font-size: clamp(16px, 1.7vw, 18px);
    line-height: 1.7;
}

.launcher-guide {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.launcher-guide-item {
    display: grid;
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 16px 18px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.06);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02)),
        rgba(255,255,255,0.015);
}

.launcher-guide-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    border-radius: 18px;
    color: #111823;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.06em;
    background: linear-gradient(180deg, #ffe0ad 0%, #f0a429 100%);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.36),
        0 14px 28px rgba(158, 96, 10, 0.18);
}

.launcher-guide-item strong {
    display: block;
    margin-bottom: 6px;
    font-size: 17px;
}

.launcher-guide-item p {
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.launcher-actions {
    display: flex;
    justify-content: center;
    margin-top: 26px;
}

.launcher-download-button {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 64px;
    padding: 0 28px 0 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 223, 167, 0.48);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.24), rgba(255,255,255,0.05) 26%, transparent 26%),
        linear-gradient(180deg, #ffddaa 0%, #f0a429 100%);
    color: #0f1620;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: 0.01em;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.34),
        inset 0 -1px 0 rgba(145,85,0,0.16),
        0 18px 34px rgba(158, 96, 10, 0.24);
    transition: transform var(--transition), box-shadow var(--transition), filter var(--transition);
}

.launcher-download-button:hover {
    transform: translateY(-2px);
    filter: saturate(1.06);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.36),
        inset 0 -1px 0 rgba(145,85,0,0.14),
        0 22px 38px rgba(158, 96, 10, 0.28),
        0 0 26px rgba(240, 164, 41, 0.16);
}

.launcher-download-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(17, 24, 35, 0.12);
    border: 1px solid rgba(17, 24, 35, 0.08);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.16);
}

.launcher-download-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.launcher-preview-wrap {
    position: relative;
    padding: clamp(0px, 0.4vw, 6px);
    margin-left: -12px;
}

.launcher-preview-card {
    position: relative;
    padding: clamp(22px, 2.2vw, 28px);
    border-radius: 36px;
    border: 1px solid rgba(255,255,255,0.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02) 44%, rgba(255,255,255,0.015) 100%),
        radial-gradient(circle at 16% 8%, rgba(240,164,41,0.16), transparent 18%),
        radial-gradient(circle at 88% 10%, rgba(78, 131, 236, 0.14), transparent 18%),
        rgba(6, 10, 16, 0.92);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.08),
        0 34px 60px rgba(0,0,0,0.34);
    overflow: hidden;
}

.launcher-preview-glow {
    position: absolute;
    inset: -20% auto auto 6%;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(240,164,41,0.22), transparent 68%);
    filter: blur(10px);
    pointer-events: none;
}

.launcher-preview-screen {
    position: relative;
    z-index: 1;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.06),
        0 22px 40px rgba(0,0,0,0.28);
}

.launcher-preview-screen::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.08), transparent 24%),
        radial-gradient(circle at 22% 50%, rgba(255, 184, 79, 0.09), transparent 22%),
        radial-gradient(circle at 76% 44%, rgba(255,255,255,0.04), transparent 22%);
    pointer-events: none;
}

.launcher-art-screen {
    padding: 18px;
    min-height: 540px;
    background:
        radial-gradient(circle at 68% 14%, rgba(255, 205, 122, 0.08), transparent 16%),
        radial-gradient(circle at 16% 62%, rgba(73, 123, 232, 0.08), transparent 18%),
        linear-gradient(180deg, #060b12 0%, #070d14 100%);
}

.launcher-app-topbar {
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding: 12px 14px;
    border-radius: 18px 18px 0 0;
    border: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(180deg, rgba(12,18,27,0.98), rgba(7,12,19,0.92));
}

.launcher-brand-mini,
.launcher-top-status,
.launcher-top-pill,
.launcher-social-item,
.launcher-file-state {
    display: inline-flex;
    align-items: center;
}

.launcher-brand-mini {
    gap: 10px;
    font-size: 13px;
    font-weight: 800;
    color: var(--text);
}

.launcher-brand-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 7px;
    background: linear-gradient(180deg, #ffcc80 0%, #f08f1e 100%);
    color: #111823;
    font-size: 14px;
    font-weight: 900;
}

.launcher-top-status {
    gap: 8px;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.03);
    color: var(--text-soft);
    font-size: 13px;
    font-weight: 700;
}

.launcher-status-indicator {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #3fe27d;
    box-shadow: 0 0 14px rgba(63, 226, 125, 0.82);
}

.launcher-top-pill {
    justify-self: end;
    min-height: 36px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
}

.launcher-window-actions {
    display: inline-flex;
    gap: 10px;
}

.launcher-window-actions span {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(255,255,255,0.04);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.launcher-app-body {
    display: grid;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
    border-left: 1px solid rgba(255,255,255,0.06);
    border-right: 1px solid rgba(255,255,255,0.06);
    background: linear-gradient(180deg, rgba(6,10,18,0.95), rgba(4,8,14,0.94));
}

.launcher-social-panel,
.launcher-news-panel,
.launcher-app-bottom {
    border: 1px solid rgba(255,255,255,0.07);
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.012));
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.launcher-social-panel,
.launcher-news-panel {
    border-radius: 0 0 26px 26px;
}

.launcher-social-panel {
    padding: 22px 18px;
}

.launcher-panel-title {
    margin-bottom: 6px;
    color: var(--text);
    font-size: 17px;
    font-weight: 800;
}

.launcher-panel-subtitle {
    margin-bottom: 16px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
}

.launcher-social-list {
    display: grid;
    gap: 12px;
}

.launcher-social-item {
    gap: 12px;
    min-height: 58px;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.07);
    background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
    font-size: 15px;
    font-weight: 800;
}

.launcher-social-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f0a429;
    box-shadow: 0 0 12px rgba(240,164,41,0.75);
}

.launcher-news-panel {
    padding: 18px;
}

.launcher-news-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}

.launcher-news-card {
    position: relative;
    min-height: 144px;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.07);
    overflow: hidden;
    background:
        radial-gradient(circle at 80% 10%, rgba(255, 213, 141, 0.18), transparent 26%),
        radial-gradient(circle at 14% 100%, rgba(91, 136, 233, 0.16), transparent 24%),
        linear-gradient(135deg, rgba(18,27,40,0.94), rgba(10,16,25,0.98));
}

.launcher-news-accent {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 32px;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffca70, #f0a429);
    box-shadow: 0 0 14px rgba(240,164,41,0.35);
}

.launcher-news-shimmer {
    position: absolute;
    inset: -40% auto 0 -35%;
    width: 52%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.13), transparent);
    transform: skewX(-20deg);
    animation: launcherSweep 3.2s linear infinite;
    opacity: 0.65;
}

.launcher-news-content {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: flex-end;
}

.launcher-news-line {
    height: 10px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(255,255,255,0.22), rgba(255,255,255,0.06));
    margin-bottom: 10px;
}
.launcher-news-line.lg { width: 72%; }
.launcher-news-line.md { width: 54%; }
.launcher-news-line.sm { width: 38%; }

.launcher-news-title {
    margin-top: 6px;
    color: #f7f9fc;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
    letter-spacing: -0.02em;
    max-width: 16ch;
}

.launcher-app-bottom {
    padding: 12px 14px 16px;
    border-radius: 0 0 24px 24px;
    border-top: 0;
    background: linear-gradient(180deg, rgba(6,10,18,0.96), rgba(4,7,12,0.98));
}

.launcher-file-state {
    gap: 10px;
    min-height: 44px;
    padding: 0 12px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.05);
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 700;
    background: rgba(255,255,255,0.015);
}

.launcher-bottom-row {
    display: grid;
    grid-template-columns: 148px minmax(0, 1fr);
    gap: 14px;
    margin-top: 12px;
    align-items: center;
}

.launcher-play-button {
    min-height: 48px;
    border: 1px solid rgba(255, 191, 98, 0.54);
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.15), rgba(255,255,255,0.03) 22%, transparent 22%), linear-gradient(180deg, #1a2330 0%, #101822 100%);
    color: var(--text);
    font-size: 16px;
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 10px 20px rgba(0,0,0,0.22);
}

.launcher-progress-wrap {
    position: relative;
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.07);
    background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
    overflow: hidden;
    font-size: 14px;
    font-weight: 900;
}

.launcher-progress-bar {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 8px;
    bottom: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffbd63 0%, #ff8d2d 56%, #ff6900 100%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.36), 0 0 18px rgba(255,128,24,0.28);
}

.launcher-progress-wrap span {
    position: relative;
    z-index: 1;
}

@keyframes launcherSweep {
    0% { transform: translateX(-10%) skewX(-20deg); }
    100% { transform: translateX(320%) skewX(-20deg); }
}

.launcher-float {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.035)),
        rgba(8, 13, 19, 0.78);
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 16px 28px rgba(0,0,0,0.24);
}

.launcher-float-status {
    top: 28px;
    left: 28px;
}

.launcher-float-sync {
    top: 28px;
    right: 28px;
    color: var(--accent-soft);
}

.launcher-float-files {
    left: 28px;
    bottom: 28px;
}

.launcher-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #35d37f;
    box-shadow: 0 0 16px rgba(53, 211, 127, 0.8);
}

@media (max-width: 1080px) {
    .launcher-shell {
        grid-template-columns: 1fr;
    }

    .launcher-title {
        max-width: none;
    }

    .launcher-preview-wrap {
        padding: 0;
    }
}

@media (max-width: 700px) {
    .launcher-platforms {
        width: 100%;
        justify-content: space-between;
    }

    .launcher-platform {
        flex: 1 1 0;
        justify-content: center;
        padding: 0 14px;
    }

    .launcher-copy-card {
        padding: 24px 20px;
        border-radius: 26px;
    }

    .launcher-guide-item {
        grid-template-columns: 52px minmax(0, 1fr);
        padding: 14px;
    }

    .launcher-guide-num {
        width: 52px;
        height: 52px;
        border-radius: 16px;
        font-size: 14px;
    }

    .launcher-download-button {
        width: 100%;
        justify-content: center;
    }

    .launcher-preview-card {
        padding: 16px;
        border-radius: 28px;
    }

    .launcher-art-screen {
        padding: 12px;
        min-height: auto;
    }

    .launcher-app-topbar {
        grid-template-columns: 1fr;
        justify-items: start;
    }

    .launcher-top-pill {
        justify-self: start;
    }

    .launcher-news-grid,
    .launcher-bottom-row {
        grid-template-columns: 1fr;
    }

    .launcher-news-title {
        font-size: 15px;
    }

    .launcher-float {
        position: static;
        margin-bottom: 12px;
        width: fit-content;
        max-width: 100%;
    }

    .launcher-float:last-of-type {
        margin-bottom: 14px;
    }
}

@media (max-width: 900px) {
    .launcher-app-body {
        grid-template-columns: 1fr;
    }

    .launcher-social-panel,
    .launcher-news-panel {
        border-radius: 0;
    }
}


/* Launcher showcase refresh */
.launcher-preview-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.launcher-preview-card.launcher-showcase {
    position: relative;
    isolation: isolate;
    width: min(100%, 820px);
    padding: 28px;
    border-radius: 34px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 16%, rgba(255, 177, 67, 0.16), transparent 24%),
        radial-gradient(circle at 86% 18%, rgba(98, 126, 255, 0.18), transparent 26%),
        linear-gradient(180deg, rgba(19, 27, 38, 0.98), rgba(8, 13, 21, 0.98));
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow:
        0 30px 80px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

.launcher-showcase::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(circle at 50% 50%, #000 38%, transparent 100%);
    opacity: 0.22;
}

.launcher-showcase::after {
    content: "";
    position: absolute;
    inset: auto -10% -18% 18%;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,138,33,0.24), transparent 68%);
    filter: blur(26px);
    opacity: 0.9;
    z-index: -1;
}

.launcher-preview-glow {
    inset: 8% auto auto 6%;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,176,77,0.18), transparent 72%);
    filter: blur(8px);
    animation: launcherPulse 5.5s ease-in-out infinite;
}

.launcher-showcase-topline {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.launcher-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.035));
    color: var(--text);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.01em;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.launcher-chip-live {
    border-color: rgba(255, 183, 87, 0.28);
    box-shadow: 0 10px 24px rgba(255, 140, 35, 0.12);
}

.launcher-ambient,
.launcher-orbit {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.launcher-ambient {
    border-radius: 50%;
    filter: blur(8px);
    opacity: 0.7;
}

.launcher-ambient-left {
    left: -80px;
    top: 120px;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(255,179,71,0.18), transparent 72%);
    animation: launcherFloatSlow 8s ease-in-out infinite;
}

.launcher-ambient-right {
    right: -50px;
    bottom: 90px;
    width: 210px;
    height: 210px;
    background: radial-gradient(circle, rgba(78,110,255,0.18), transparent 72%);
    animation: launcherFloatSlow 9s ease-in-out infinite reverse;
}

.launcher-orbit {
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.08);
}

.launcher-orbit-one {
    top: 72px;
    right: 58px;
    width: 110px;
    height: 110px;
    border-color: rgba(255, 189, 100, 0.16);
    animation: launcherSpin 14s linear infinite;
}

.launcher-orbit-two {
    left: 44px;
    bottom: 144px;
    width: 74px;
    height: 74px;
    border-color: rgba(113, 141, 255, 0.18);
    animation: launcherSpin 10s linear infinite reverse;
}

.launcher-image-stage {
    position: relative;
    z-index: 1;
    aspect-ratio: 901 / 578;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.09);
    background: linear-gradient(180deg, rgba(10,16,25,0.96), rgba(6,10,17,0.98));
    box-shadow:
        0 26px 60px rgba(0,0,0,0.34),
        inset 0 0 0 1px rgba(255,255,255,0.03);
    transform: perspective(1600px) rotateX(5deg) rotateY(-4deg);
    transform-origin: center;
}

.launcher-frame-outline,
.launcher-frame-shine,
.launcher-scanline {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.launcher-frame-outline {
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.05), inset 0 0 0 12px rgba(5,9,15,0.18);
    z-index: 2;
}

.launcher-frame-shine {
    z-index: 2;
    background: linear-gradient(115deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.02) 24%, transparent 42%);
    mix-blend-mode: screen;
    opacity: 0.48;
}

.launcher-scanline {
    z-index: 2;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.08), transparent);
    height: 28%;
    animation: launcherScan 6s ease-in-out infinite;
}

.launcher-realshot {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: scale(1.02);
    transform-origin: center;
    filter: saturate(1.06) contrast(1.04);
}

.launcher-info-ribbon {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
    gap: 14px;
    margin-top: 18px;
}

.launcher-info-card,
.launcher-info-metrics {
    min-height: 118px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.08);
    background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.launcher-info-card {
    padding: 18px 18px 16px;
}

.launcher-info-card.accent {
    background: linear-gradient(180deg, rgba(255, 174, 77, 0.12), rgba(255,255,255,0.035));
}

.launcher-info-label {
    display: inline-flex;
    margin-bottom: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    color: var(--accent-soft);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.launcher-info-card strong {
    display: block;
    margin-bottom: 8px;
    color: #f6f8fc;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.2;
}

.launcher-info-card p {
    margin: 0;
    color: var(--text-soft);
    font-size: 13px;
    line-height: 1.6;
}

.launcher-info-metrics {
    display: grid;
    gap: 10px;
    min-width: 184px;
    padding: 14px;
}

.launcher-metric-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.05);
    color: var(--text-soft);
    font-size: 12px;
    font-weight: 800;
}

.launcher-metric-pill strong {
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.launcher-float {
    min-height: 42px;
    font-size: 12px;
    letter-spacing: 0.01em;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.14), rgba(255,255,255,0.045)),
        rgba(8, 13, 19, 0.74);
}

.launcher-float-status {
    top: 86px;
    left: -10px;
}

.launcher-float-sync {
    top: 156px;
    right: -8px;
    color: #ffcf88;
}

.launcher-float-files {
    left: auto;
    right: 34px;
    bottom: 168px;
}

@keyframes launcherPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.08); opacity: 1; }
}

@keyframes launcherFloatSlow {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(0, -14px, 0); }
}

@keyframes launcherSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes launcherScan {
    0% { transform: translateY(-120%); opacity: 0; }
    20% { opacity: 0.35; }
    50% { opacity: 0.18; }
    100% { transform: translateY(380%); opacity: 0; }
}

@media (max-width: 1080px) {
    .launcher-preview-card.launcher-showcase {
        width: 100%;
    }

    .launcher-info-ribbon {
        grid-template-columns: 1fr 1fr;
    }

    .launcher-info-metrics {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        min-width: 0;
    }

    .launcher-float-status {
        left: 12px;
    }

    .launcher-float-sync {
        right: 12px;
    }
}

@media (max-width: 700px) {
    .launcher-preview-card.launcher-showcase {
        padding: 18px;
        border-radius: 28px;
    }

    .launcher-image-stage {
        border-radius: 22px;
        transform: none;
        animation: none;
    }

    .launcher-showcase-topline,
    .launcher-info-ribbon {
        grid-template-columns: 1fr;
    }

    .launcher-info-metrics {
        grid-template-columns: 1fr;
    }

    .launcher-chip {
        width: 100%;
        justify-content: center;
    }

    .launcher-ambient-right,
    .launcher-orbit-one,
    .launcher-orbit-two {
        display: none;
    }

    .launcher-float {
        position: static;
        margin-top: 10px;
        width: 100%;
        justify-content: center;
    }
}


/* Launcher minimal preview */
.launcher-preview-card.launcher-showcase-minimal {
    padding: 30px 20px;
    min-height: 100%;
}

.launcher-showcase-minimal::before {
    mask-image: radial-gradient(circle at 50% 50%, #000 22%, transparent 84%);
    opacity: 0.15;
}

.launcher-showcase-minimal .launcher-preview-glow {
    inset: 4% auto auto 10%;
    width: 320px;
    height: 320px;
    filter: blur(18px);
}

.launcher-showcase-minimal .launcher-ambient-left {
    left: -92px;
    top: 90px;
    width: 220px;
    height: 220px;
}

.launcher-showcase-minimal .launcher-ambient-right {
    right: -86px;
    bottom: 72px;
    width: 240px;
    height: 240px;
}

.launcher-showcase-minimal .launcher-orbit-one {
    top: 18px;
    right: 28px;
    width: 128px;
    height: 128px;
}

.launcher-showcase-minimal .launcher-orbit-two {
    left: 6px;
    bottom: 42px;
    width: 86px;
    height: 86px;
}

.launcher-spark,
.launcher-side-glow,
.launcher-corner {
    position: absolute;
    pointer-events: none;
}

.launcher-spark {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,210,127,0.95) 0%, rgba(255,158,54,0.5) 55%, transparent 72%);
    box-shadow: 0 0 22px rgba(255,163,71,0.48);
    z-index: 2;
    animation: launcherSpark 4.2s ease-in-out infinite;
}

.launcher-spark-one {
    top: 88px;
    right: 108px;
}

.launcher-spark-two {
    left: 56px;
    bottom: 92px;
    animation-delay: 1.6s;
}

.launcher-side-glow {
    top: 50%;
    width: 180px;
    height: 260px;
    transform: translateY(-50%);
    filter: blur(34px);
    opacity: 0.6;
    z-index: 0;
}

.launcher-side-glow-left {
    left: -54px;
    background: radial-gradient(circle at 70% 50%, rgba(255,152,38,0.22), transparent 68%);
}

.launcher-side-glow-right {
    right: -64px;
    background: radial-gradient(circle at 30% 50%, rgba(82,112,255,0.18), transparent 68%);
}

.launcher-showcase-minimal .launcher-image-stage {
    width: min(100%, 1260px);
    margin: 0 auto;
    border-radius: 28px;
    transform: perspective(2100px) rotateX(6deg) rotateY(-10deg) rotateZ(-0.35deg) scale(1.03);
    transform-style: preserve-3d;
    will-change: transform;
    animation: launcherTilt3D 8.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
    box-shadow:
        0 42px 100px rgba(0,0,0,0.46),
        0 0 0 1px rgba(255,255,255,0.05),
        inset 0 0 0 1px rgba(255,255,255,0.03);
}

.launcher-corner {
    display: none;
}

.launcher-corner-tl,
.launcher-corner-tr {
    top: 16px;
    border-top: 2px solid rgba(255,176,77,0.72);
}

.launcher-corner-bl,
.launcher-corner-br {
    bottom: 16px;
    border-bottom: 2px solid rgba(255,176,77,0.72);
}

.launcher-corner-tl,
.launcher-corner-bl {
    left: 16px;
    border-left: 2px solid rgba(255,176,77,0.72);
}

.launcher-corner-tr,
.launcher-corner-br {
    right: 16px;
    border-right: 2px solid rgba(255,176,77,0.72);
}

@keyframes launcherSpark {
    0%, 100% { transform: translate3d(0, 0, 0) scale(0.95); opacity: 0.45; }
    50% { transform: translate3d(0, -10px, 0) scale(1.12); opacity: 1; }
}

@keyframes launcherTilt3D {
    0% {
        transform: perspective(2100px) rotateX(6deg) rotateY(-10deg) rotateZ(-0.45deg) translate3d(0, 0, 0) scale(1.03);
    }
    25% {
        transform: perspective(2100px) rotateX(3.5deg) rotateY(-4deg) rotateZ(-0.18deg) translate3d(0, -4px, 0) scale(1.034);
    }
    50% {
        transform: perspective(2100px) rotateX(-4deg) rotateY(8deg) rotateZ(0.4deg) translate3d(0, -9px, 0) scale(1.038);
    }
    75% {
        transform: perspective(2100px) rotateX(1.5deg) rotateY(2deg) rotateZ(0.12deg) translate3d(0, -4px, 0) scale(1.034);
    }
    100% {
        transform: perspective(2100px) rotateX(6deg) rotateY(-10deg) rotateZ(-0.45deg) translate3d(0, 0, 0) scale(1.03);
    }
}

@media (max-width: 1080px) {
    .launcher-shell {
        grid-template-columns: 1fr;
    }

    .launcher-copy {
        margin-right: 0;
    }

    .launcher-preview-wrap {
        margin-left: 0;
    }

    .launcher-preview-card.launcher-showcase-minimal {
        padding: 24px 14px;
    }
}

@media (max-width: 700px) {
    .launcher-preview-card.launcher-showcase-minimal {
        padding: 20px 14px;
    }

    .launcher-side-glow,
    .launcher-spark {
        display: none;
    }

    .launcher-showcase-minimal .launcher-image-stage {
        transform: none;
        animation: none;
    }

    .launcher-realshot {
        transform: none;
    }
}

.updates-section {
    position: relative;
    padding: clamp(72px, 8vw, 104px) 0;
    background:
        radial-gradient(circle at 14% 0%, rgba(240, 164, 41, 0.09), transparent 22%),
        radial-gradient(circle at 82% 12%, rgba(116, 163, 255, 0.08), transparent 20%),
        linear-gradient(180deg, #0a1219 0%, #0f1822 50%, #0a131c 100%);
    border-top: 1px solid rgba(255,255,255,0.04);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    overflow: clip;
}

.updates-section::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255,255,255,0.012) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,0.012) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.66), transparent 96%);
    opacity: 0.12;
}

.updates-heading,
.updates-viewport,
.updates-status {
    position: relative;
    z-index: 1;
}

.updates-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}

.updates-controls {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.updates-nav {
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03));
    color: var(--text);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(0,0,0,0.18);
    transition: transform var(--transition), border-color var(--transition), background var(--transition), opacity var(--transition);
}

.updates-nav svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.updates-nav:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 209, 138, 0.34);
    background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
}

.updates-nav.is-disabled {
    opacity: 0.42;
    cursor: default;
    pointer-events: none;
}

.updates-nav.is-hidden {
    display: none;
}

.updates-viewport {
    overflow: hidden;
}

.updates-track {
    display: flex;
    gap: 22px;
    transition: transform 380ms cubic-bezier(.22, 1, .36, 1);
    will-change: transform;
}

.update-card {
    flex: 0 0 calc((100% - 66px) / 4);
    min-width: 0;
    display: flex;
    flex-direction: column;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    background:
        radial-gradient(circle at top, rgba(240,164,41,0.12), transparent 42%),
        linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.025)),
        #111922;
    box-shadow:
        0 22px 54px rgba(0,0,0,0.24),
        inset 0 1px 0 rgba(255,255,255,0.06);
}

.update-card-media {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: #0d141c;
}


.update-card-media::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(124, 132, 142, 0.24);
    backdrop-filter: blur(0px) saturate(100%);
    -webkit-backdrop-filter: blur(0px) saturate(100%);
    opacity: 0;
    transition: opacity 180ms ease, backdrop-filter 180ms ease, -webkit-backdrop-filter 180ms ease;
    z-index: 2;
    pointer-events: none;
}

.update-card:hover .update-card-media::before,
.update-card-link:focus-visible .update-card-media::before {
    opacity: 1;
    backdrop-filter: blur(8px) saturate(90%);
    -webkit-backdrop-filter: blur(8px) saturate(90%);
}

.update-card:hover .update-card-media img,
.update-card-link:focus-visible .update-card-media img {
    transform: scale(1.03);
    filter: grayscale(0.35) brightness(0.82);
}

.update-card-overlay-icon svg {
    width: 22px;
    height: 22px;
}

.update-card-overlay {
    position: absolute;
    inset: 0;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 180ms ease, transform 180ms ease;
    pointer-events: none;
}

.update-card:hover .update-card-overlay,
.update-card-link:focus-visible .update-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.update-card-overlay-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(9, 13, 19, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #fff2d6;
    box-shadow: 0 14px 28px rgba(0,0,0,0.22);
}

.update-card-overlay-text {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 18px;
    border-radius: 999px;
    background: rgba(9, 13, 19, 0.58);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #fff8ea;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.update-card-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 44%;
    background: linear-gradient(180deg, transparent, rgba(7, 11, 16, 0.24) 30%, rgba(7, 11, 16, 0.72));
    pointer-events: none;
}

.update-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 560ms cubic-bezier(.22, 1, .36, 1);
}

.update-card:hover .update-card-media img,
.update-card-link:focus-visible .update-card-media img {
    transform: scale(1.03);
}

.update-card-link {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    color: inherit;
    text-decoration: none;
}

.update-card-link:focus-visible {
    outline: 2px solid rgba(255, 209, 138, 0.65);
    outline-offset: -4px;
    border-radius: 24px;
}

.update-card-body {
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-height: 228px;
    padding: 22px 20px 24px;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.025), rgba(255,255,255,0)),
        linear-gradient(180deg, rgba(12,18,26,0.06), rgba(12,18,26,0));
}

.update-card-title {
    margin: 0;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text);
}

.update-card-description {
    margin: 0;
    color: rgba(232, 237, 242, 0.72);
    font-size: 14px;
    line-height: 1.65;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.update-card-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 4px;
}

.update-card-linktext {
    color: #fff4d8;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.update-card-linkicon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #ffe3a7;
    background: linear-gradient(180deg, rgba(255,209,138,0.16), rgba(255,209,138,0.06));
    border: 1px solid rgba(255,209,138,0.18);
}

.update-card-linkicon svg {
    width: 18px;
    height: 18px;
}

.update-card-surface {
    position: absolute;
    inset: 18px 18px auto auto;
    z-index: 4;
}

.update-card-badge {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.14);
    background: rgba(10, 14, 20, 0.58);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: #fff4d8;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.update-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 2px;
}

.update-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.05);
    color: #d8e0e7;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.update-chip.is-version {
    color: var(--accent-soft);
    border-color: rgba(255, 209, 138, 0.16);
    background: linear-gradient(180deg, rgba(240,164,41,0.14), rgba(240,164,41,0.05));
}


.update-card-meta.is-single {
    margin-bottom: 6px;
}

.update-chip.is-date {
    background: linear-gradient(180deg, rgba(111, 170, 255, 0.14), rgba(111, 170, 255, 0.05));
    border-color: rgba(111, 170, 255, 0.16);
    color: #e7f0ff;
}

.updates-status {
    margin-top: 18px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
}

.updates-status.is-error {
    color: #ffb8b8;
}

@media (max-width: 1180px) {
    .update-card {
        flex-basis: calc((100% - 44px) / 3);
    }
}

@media (max-width: 900px) {
    .updates-heading {
        align-items: stretch;
        flex-direction: column;
    }

    .updates-controls {
        justify-content: flex-start;
    }

    .update-card {
        flex-basis: calc((100% - 22px) / 2);
    }
}

@media (max-width: 640px) {
    .updates-section {
        padding: 64px 0 76px;
    }

    .update-card {
        flex-basis: 100%;
    }

    .updates-nav {
        width: 48px;
        height: 48px;
    }
}


.updates-heading-copy {
    display: grid;
    gap: 12px;
}

.section-kicker-wrap {
    display: flex;
    align-items: center;
}

.update-card-media {
    position: relative;
}


/* v8 fixes */
.launcher-actions {
    display: flex;
    justify-content: center;
}

.updates-viewport {
    overflow-x: hidden;
    overflow-y: visible;
    padding-bottom: 26px;
    margin-bottom: -26px;
}

.update-card {
    box-shadow:
        0 28px 64px rgba(0,0,0,0.26),
        0 8px 24px rgba(240,164,41,0.06),
        inset 0 1px 0 rgba(255,255,255,0.05);
}

.update-card-media img {
    transition: transform 180ms ease, filter 180ms ease;
    will-change: transform, filter;
}

.update-card:hover .update-card-media img,
.update-card:focus-within .update-card-media img {
    transform: scale(1.03);
    filter: none;
}


/* performance + device adaptation */
.launcher-copy,
.launcher-preview-wrap,
.updates-heading-copy,
.update-card,
.launcher-copy-card,
.launcher-preview-card {
    min-width: 0;
}

.launcher-download-section::after,
.launcher-preview-glow,
.launcher-side-glow,
.launcher-orbit,
.launcher-spark,
.launcher-ambient {
    will-change: auto;
}

@media (max-width: 1180px) {
    .launcher-copy {
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 900px) {
    .launcher-download-section::before,
    .updates-section::before {
        background-size: 96px 96px;
        opacity: 0.07;
    }

    .launcher-download-section::after {
        opacity: 0.55;
        filter: blur(14px);
    }

    .launcher-shell {
        gap: 22px;
    }

    .launcher-copy-card {
        border-radius: 28px;
    }

    .launcher-info-ribbon {
        gap: 12px;
    }
}

@media (max-width: 700px) {
    .launcher-download-section {
        padding: 58px 0 64px;
    }

    .launcher-platforms {
        gap: 8px;
        padding: 8px;
        border-radius: 20px;
    }

    .launcher-platform {
        min-height: 52px;
        gap: 8px;
        padding: 0 10px;
        font-size: 13px;
    }

    .launcher-platform span:last-child {
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .launcher-title {
        margin: 14px 0 12px;
        font-size: clamp(30px, 10vw, 42px);
        line-height: 1;
    }

    .launcher-description {
        font-size: 15px;
        line-height: 1.62;
    }

    .launcher-guide {
        gap: 12px;
        margin-top: 22px;
    }

    .launcher-guide-item {
        gap: 12px;
    }

    .launcher-guide-item p,
    .launcher-info-card p {
        font-size: 13px;
        line-height: 1.55;
    }

    .launcher-preview-card.launcher-showcase,
    .launcher-preview-card.launcher-showcase-minimal {
        padding: 16px 12px;
        border-radius: 26px;
    }

    .launcher-image-stage {
        border-radius: 22px;
    }

    .launcher-info-ribbon,
    .launcher-info-metrics {
        grid-template-columns: 1fr;
    }

    .launcher-info-ribbon {
        margin-top: 14px;
    }

    .launcher-info-card,
    .launcher-info-metrics {
        min-height: 0;
    }

    .launcher-float {
        display: none;
    }
}

@media (max-width: 640px) {
    .updates-heading {
        gap: 14px;
        margin-bottom: 22px;
    }

    .updates-controls {
        width: 100%;
        justify-content: space-between;
    }

    .updates-track {
        gap: 16px;
    }

    .update-card {
        border-radius: 24px;
    }

    .update-card-body {
        padding: 18px 16px 16px;
    }
}

@media (max-width: 480px) {
    .launcher-download-section,
    .updates-section {
        padding-top: 52px;
    }

    .launcher-copy-card {
        padding: 20px 16px;
        border-radius: 22px;
    }

    .launcher-kicker {
        min-height: 34px;
        padding-inline: 12px;
        font-size: 10px;
        letter-spacing: 0.12em;
    }

    .launcher-guide-item {
        grid-template-columns: 44px minmax(0, 1fr);
        padding: 12px;
    }

    .launcher-guide-num {
        width: 44px;
        height: 44px;
        border-radius: 14px;
        font-size: 13px;
    }

    .launcher-download-button {
        min-height: 54px;
        padding-inline: 14px;
        border-radius: 16px;
    }

    .launcher-platform-icon,
    .launcher-platform-lock {
        display: none;
    }

    .update-card-title {
        font-size: 20px;
    }

    .update-card-description {
        font-size: 14px;
        line-height: 1.6;
    }
}
