:root {
    --brand-blue: #1f45d8;
    --brand-blue-deep: #10215d;
    --brand-sky: #b9d4ff;
    --brand-sky-strong: #7eb4ff;
    --brand-red: #e3342f;
    --brand-red-deep: #b81f1a;
    --brand-white: #ffffff;
    --ink-950: #101828;
    --ink-800: #24324a;
    --ink-700: #344054;
    --ink-500: #667085;
    --line: rgba(31, 69, 216, 0.12);
    --surface: #ffffff;
    --surface-alt: #f5f8ff;
    --surface-soft: #eef4ff;
    --success: #12b76a;
    --warning: #f79009;
    --danger: #e3342f;
    --shadow-lg: 0 32px 80px rgba(16, 33, 93, 0.16);
    --shadow-md: 0 18px 40px rgba(16, 33, 93, 0.12);
    --shadow-sm: 0 10px 24px rgba(16, 33, 93, 0.08);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --radius-sm: 14px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", sans-serif;
    color: var(--ink-800);
    background:
        radial-gradient(circle at top left, rgba(126, 180, 255, 0.18), transparent 26%),
        linear-gradient(180deg, #f9fbff 0%, #f3f7ff 45%, #ffffff 100%);
    min-height: 100vh;
}

body.is-site-loading {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-wordmark,
.section-title,
.admin-sidebar__title,
.admin-page-title {
    font-family: "Sora", sans-serif;
}

a {
    color: inherit;
}

.site-main,
.admin-main {
    padding-bottom: 4rem;
}

.site-loader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: grid;
    place-items: center;
    padding: 1.5rem;
    overflow: hidden;
    background:
        radial-gradient(circle at top left, rgba(126, 180, 255, 0.2), transparent 24%),
        radial-gradient(circle at bottom right, rgba(227, 52, 47, 0.16), transparent 22%),
        linear-gradient(135deg, rgba(248, 251, 255, 0.99), rgba(237, 244, 255, 0.98) 54%, rgba(255, 243, 243, 0.96));
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.site-loader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.site-loader__backdrop {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(31, 69, 216, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31, 69, 216, 0.035) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(circle at center, black, transparent 82%);
}

.site-loader__panel {
    position: relative;
    display: grid;
    justify-items: center;
    gap: 1.2rem;
    min-width: min(100%, 320px);
    padding: 2rem 1.75rem 1.6rem;
    border-radius: 36px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.92));
    border: 1px solid rgba(255, 255, 255, 0.75);
    box-shadow:
        0 36px 100px rgba(16, 33, 93, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(14px);
}

.site-loader__halo {
    position: absolute;
    border-radius: 999px;
    filter: blur(34px);
    opacity: 0.34;
    pointer-events: none;
}

.site-loader__halo--blue {
    width: 180px;
    height: 180px;
    top: -38px;
    left: -22px;
    background: rgba(31, 69, 216, 0.34);
}

.site-loader__halo--red {
    width: 150px;
    height: 150px;
    right: -18px;
    bottom: 8px;
    background: rgba(227, 52, 47, 0.28);
}

.site-loader__stage {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 160px;
    height: 160px;
    isolation: isolate;
}

.site-loader__orbit {
    position: absolute;
    inset: 50%;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    transform-origin: center center;
}

.site-loader__orbit--outer {
    width: 148px;
    height: 148px;
    border: 2px solid rgba(31, 69, 216, 0.1);
    border-top-color: rgba(31, 69, 216, 0.9);
    border-right-color: rgba(227, 52, 47, 0.9);
    animation: site-loader-spin 1.2s linear infinite;
}

.site-loader__orbit--inner {
    width: 112px;
    height: 112px;
    border: 2px dashed rgba(31, 69, 216, 0.18);
    animation: site-loader-spin-reverse 2.4s linear infinite;
}

.site-loader__spark {
    position: absolute;
    border-radius: 999px;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.12);
}

.site-loader__spark--one {
    top: 14px;
    right: 24px;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--brand-red), #ff8a74);
    animation: site-loader-float 1.5s ease-in-out infinite;
}

.site-loader__spark--two {
    left: 18px;
    bottom: 24px;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-sky));
    animation: site-loader-float 1.5s ease-in-out infinite 0.25s;
}

.site-loader__logo-wrap {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 96px;
    height: 96px;
    border-radius: 999px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.99), rgba(232, 240, 255, 0.94)),
        white;
    box-shadow:
        0 18px 44px rgba(16, 33, 93, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.96);
    animation: site-loader-pulse 1.8s ease-in-out infinite;
}

.site-loader__logo-wrap::before {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 999px;
    border: 1px solid rgba(31, 69, 216, 0.08);
}

.site-loader__logo {
    position: relative;
    z-index: 1;
    width: 76px;
    height: 76px;
    object-fit: contain;
    transform: translateY(1px);
    filter: drop-shadow(0 6px 14px rgba(16, 33, 93, 0.12));
}

.site-loader__copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.35rem;
    justify-items: center;
}

.site-loader__brand {
    margin: 0;
    font-family: "Sora", sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1;
}

.site-loader__brand span:first-child {
    color: var(--brand-blue);
}

.site-loader__brand span:last-child {
    color: var(--brand-red);
}

.site-loader__label {
    margin: 0;
    color: var(--ink-700);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-align: center;
}

@keyframes site-loader-spin {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes site-loader-spin-reverse {
    from {
        transform: translate(-50%, -50%) rotate(360deg);
    }
    to {
        transform: translate(-50%, -50%) rotate(0deg);
    }
}

@keyframes site-loader-pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.04);
    }
}

@keyframes site-loader-float {
    0%,
    100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -6px, 0);
    }
}

.site-shell {
    position: relative;
    overflow-x: clip;
}

.site-shell::before,
.site-shell::after {
    content: "";
    position: fixed;
    inset: auto;
    z-index: -1;
    border-radius: 999px;
    filter: blur(24px);
    opacity: 0.5;
}

.site-shell::before {
    width: 18rem;
    height: 18rem;
    top: -4rem;
    right: -4rem;
    background: rgba(227, 52, 47, 0.18);
}

.site-shell::after {
    width: 22rem;
    height: 22rem;
    bottom: 12rem;
    left: -8rem;
    background: rgba(31, 69, 216, 0.12);
}

.top-ribbon {
    background: linear-gradient(90deg, var(--brand-blue-deep), var(--brand-blue) 58%, var(--brand-red));
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.92rem;
}

.top-ribbon__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.7rem 0;
}

.top-ribbon__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    font-weight: 700;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(18px);
    background: rgba(255, 255, 255, 0.78);
    border-bottom: 1px solid rgba(31, 69, 216, 0.08);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.9rem;
    padding: 1.1rem 0;
}

.site-nav__menu {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
    padding: 0 1rem 0 2.1rem;
}

.site-nav__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 0.28rem;
    width: 54px;
    height: 54px;
    margin-left: auto;
    border: 0;
    border-radius: 18px;
    background: rgba(31, 69, 216, 0.08);
    color: var(--brand-blue-deep);
    box-shadow: inset 0 0 0 1px rgba(31, 69, 216, 0.1);
}

.site-nav__toggle span {
    display: block;
    width: 21px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 1.15rem;
    text-decoration: none;
    flex: 0 0 auto;
    min-width: 0;
    margin-right: 0.6rem;
}

.brand-lockup--icon-only {
    gap: 0;
}

.site-header .brand-lockup--icon-only {
    margin-right: 1.1rem;
}

.site-header .brand-lockup--icon-only img {
    width: 82px;
    height: 82px;
}

.brand-lockup img {
    width: 66px;
    height: 66px;
    object-fit: contain;
    border-radius: 18px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(185, 212, 255, 0.88));
    box-shadow: var(--shadow-sm);
    padding: 0.35rem;
}

.brand-wordmark {
    margin: 0;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1;
}

.brand-wordmark span:first-child {
    color: var(--brand-blue);
}

.brand-wordmark span:last-child {
    color: var(--brand-red);
}

.brand-subtitle {
    margin: 0.3rem 0 0;
    color: var(--ink-500);
    font-size: 0.9rem;
}

.site-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-menu a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 1.15rem;
    border-radius: 999px;
    color: var(--ink-700);
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.25s ease;
}

.site-menu a:hover,
.site-menu .is-active a {
    color: var(--brand-blue);
    background: rgba(31, 69, 216, 0.08);
    box-shadow: inset 0 0 0 1px rgba(31, 69, 216, 0.14);
}

.site-menu .is-active a {
    color: var(--brand-blue-deep);
    background: linear-gradient(135deg, rgba(31, 69, 216, 0.14), rgba(126, 180, 255, 0.16));
    box-shadow:
        inset 0 0 0 1px rgba(31, 69, 216, 0.18),
        0 10px 24px rgba(31, 69, 216, 0.08);
}

.site-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.85rem 1.1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-red), #ff5b56);
    color: white;
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 14px 30px rgba(227, 52, 47, 0.22);
}

.site-nav__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    flex: 0 0 auto;
    flex-wrap: nowrap;
}

@media (min-width: 992px) {
    .brand-lockup {
        margin-left: -0.5rem;
    }

    .site-nav__menu {
        padding-left: 5.5rem;
        padding-right: 1.35rem;
    }

    .site-header .brand-lockup--icon-only {
        margin-right: 2.25rem;
    }
}

.site-nav__actions .site-cta,
.site-nav__actions .btn-brand-outline,
.site-nav__actions .meta-pill {
    white-space: nowrap;
}

.site-nav__form {
    margin: 0;
}

.site-user-toggle {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-red), #ff5b56);
    color: white;
    font-size: 1rem;
    box-shadow: 0 14px 30px rgba(227, 52, 47, 0.22);
    transition: 0.25s ease;
}

.site-user-toggle__avatar {
    position: relative;
    display: inline-flex;
    width: 18px;
    height: 18px;
}

.site-user-toggle__head,
.site-user-toggle__body {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: currentColor;
}

.site-user-toggle__head {
    top: 0;
    width: 7px;
    height: 7px;
    border-radius: 999px;
}

.site-user-toggle__body {
    bottom: 0;
    width: 15px;
    height: 9px;
    border-radius: 999px 999px 7px 7px;
}

.site-user-toggle__status {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 10px;
    height: 10px;
    border: 2px solid white;
    border-radius: 999px;
    background: #1f45d8;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.16);
}

.site-user-toggle:hover,
.site-user-toggle:focus {
    color: white;
    transform: translateY(-1px);
}

.site-user-menu {
    min-width: 220px;
    padding: 0.45rem;
    border: 1px solid rgba(31, 69, 216, 0.08);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.site-user-menu__header {
    display: grid;
    gap: 0.2rem;
    padding: 0.8rem 0.9rem 0.7rem;
}

.site-user-menu__header strong {
    color: var(--ink-950);
    font-size: 0.95rem;
}

.site-user-menu__header span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--ink-500);
    font-size: 0.82rem;
    font-weight: 700;
}

.site-user-menu__form {
    margin: 0;
}

.site-user-menu__item {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 44px;
    border-radius: 14px;
    color: var(--ink-700);
    font-weight: 700;
}

.site-user-menu__item i,
.admin-sidebar__menu a i,
.admin-sidebar__button i,
.stat-card__label i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 999px;
    background: rgba(31, 69, 216, 0.08);
    color: var(--brand-blue);
    flex-shrink: 0;
}

.site-user-menu__item:hover,
.site-user-menu__item:focus {
    background: rgba(31, 69, 216, 0.08);
    color: var(--brand-blue-deep);
}

.site-cta:hover {
    color: white;
    transform: translateY(-1px);
}

.live-broadcast-shell {
    width: 100%;
    padding: 0;
}

.live-broadcast {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background:
        radial-gradient(circle at top right, rgba(126, 180, 255, 0.18), transparent 22%),
        linear-gradient(135deg, #050816 0%, #0b1330 48%, #131f52 72%, #2a1024 100%);
    box-shadow: 0 30px 80px rgba(4, 10, 32, 0.35);
}

.live-broadcast__frame {
    position: relative;
    width: 100%;
    min-height: clamp(360px, 64vw, 760px);
    overflow: hidden;
    background: #000;
    box-shadow: none;
}

.live-broadcast__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.live-broadcast__logo-blocker {
    position: absolute;
    top: 0;
    left: 0;
    width: 120px;
    height: 56px;
    background: #000;
    z-index: 2;
}

.live-broadcast__overlay {
    position: absolute;
    inset: auto 0 0;
    z-index: 3;
    padding: 1.4rem 1.5rem 1.8rem;
    background: linear-gradient(180deg, transparent, rgba(10, 16, 42, 0.12) 34%, rgba(7, 11, 27, 0.88));
    color: white;
    display: none;
}

.live-broadcast__title {
    margin: 0.9rem 0 0.45rem;
    font-family: "Sora", sans-serif;
    font-size: clamp(1.8rem, 3.6vw, 3.4rem);
    font-weight: 800;
    line-height: 1.08;
    max-width: 18ch;
}

.live-broadcast__meta {
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: 1rem;
}

.live-broadcast__ticker {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 1.15rem;
    width: 100%;
    padding: 0.95rem 1.25rem 1rem;
    background:
        linear-gradient(90deg, rgba(6, 11, 31, 0.96), rgba(16, 33, 93, 0.9) 52%, rgba(89, 22, 37, 0.88));
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.live-broadcast__ticker-label {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(227, 52, 47, 0.94), rgba(255, 104, 97, 0.94));
    color: white;
    font-size: 0.84rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 10px 26px rgba(227, 52, 47, 0.22);
}

.live-broadcast__ticker-window {
    overflow: hidden;
    position: relative;
    min-width: 0;
    padding-block: 0.15rem;
}

.live-broadcast__ticker-window::before,
.live-broadcast__ticker-window::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 64px;
    z-index: 1;
    pointer-events: none;
}

.live-broadcast__ticker-window::before {
    left: 0;
    background: linear-gradient(90deg, rgba(7, 11, 27, 0.92), transparent);
}

.live-broadcast__ticker-window::after {
    right: 0;
    background: linear-gradient(270deg, rgba(32, 17, 40, 0.92), transparent);
}

.live-broadcast__ticker-track {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    min-width: max-content;
    animation: ticker-scroll 96s linear infinite;
}

.live-broadcast__ticker-item {
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 700;
    white-space: nowrap;
}

.live-broadcast__ticker-item::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 2.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-sky), white);
    box-shadow: 0 0 0 5px rgba(185, 212, 255, 0.1);
    vertical-align: middle;
}

.public-hero,
.page-hero,
.admin-hero {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.public-hero,
.page-hero {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.96)),
        radial-gradient(circle at top right, rgba(185, 212, 255, 0.22), transparent 32%);
    color: var(--ink-950);
    padding: 2rem clamp(1.1rem, 4vw, 3rem);
    border: 1px solid rgba(31, 69, 216, 0.08);
    box-shadow: 0 18px 44px rgba(16, 33, 93, 0.08);
}

.public-hero::before,
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, rgba(227, 52, 47, 0.9), rgba(31, 69, 216, 0.92));
}

.page-hero {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: 0;
    border-radius: 0;
    padding-left: clamp(1.2rem, 5vw, 4rem);
    padding-right: clamp(1.2rem, 5vw, 4rem);
}

.hero-kicker,
.page-kicker,
.admin-page-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.page-kicker {
    background: rgba(31, 69, 216, 0.08);
    color: var(--brand-blue-deep);
    border: 1px solid rgba(31, 69, 216, 0.08);
}

.hero-title,
.page-title-display,
.admin-page-title {
    margin: 1rem 0 0.75rem;
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1.05;
    font-weight: 800;
}

.page-title-display {
    max-width: 100%;
    margin: 0.8rem 0 0.45rem;
    color: var(--ink-950);
    font-size: clamp(1.85rem, 4vw, 3.1rem);
    line-height: 1.08;
}

.hero-lead,
.page-lead,
.admin-page-lead {
    max-width: 46rem;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.75;
}

.page-lead {
    max-width: 100%;
    color: var(--ink-500);
    font-size: 0.98rem;
    line-height: 1.65;
}

.hero-actions,
.page-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    margin-top: 1.8rem;
}

.page-hero-actions {
    margin-top: 1.05rem;
}

.page-hero .section-heading,
.page-hero-actions,
.album-hero-metrics {
    width: 100%;
}

.btn-brand,
.btn-brand-outline,
.btn-soft,
.btn-danger-soft {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 48px;
    padding: 0.9rem 1.2rem;
    border: 0;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.25s ease;
}

.btn-brand {
    background: linear-gradient(135deg, var(--brand-red), #ff605b);
    color: white;
    box-shadow: 0 14px 30px rgba(227, 52, 47, 0.26);
}

.btn-brand-outline {
    border: 1px solid rgba(255, 255, 255, 0.34);
    color: white;
    background: rgba(255, 255, 255, 0.08);
}

.page-hero .btn-brand-outline {
    border-color: rgba(31, 69, 216, 0.12);
    color: var(--brand-blue-deep);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: none;
}

.page-hero .meta-pill {
    background: rgba(31, 69, 216, 0.08);
    color: var(--brand-blue-deep);
    border: 1px solid rgba(31, 69, 216, 0.08);
}

.btn-soft {
    background: rgba(31, 69, 216, 0.08);
    color: var(--brand-blue);
}

.btn-danger-soft {
    background: rgba(227, 52, 47, 0.1);
    color: var(--brand-red);
}

.btn-brand:hover,
.btn-brand-outline:hover,
.btn-soft:hover,
.btn-danger-soft:hover {
    transform: translateY(-1px);
}

.nav-pills .btn-soft.active,
.nav-pills .show > .btn-soft {
    background: linear-gradient(135deg, rgba(31, 69, 216, 0.14), rgba(227, 52, 47, 0.12));
    color: var(--brand-blue-deep);
}

.section-block {
    margin-top: 2.5rem;
}

.section-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.15rem;
    border-bottom: 1px solid rgba(31, 69, 216, 0.08);
    position: relative;
}

.section-heading > :first-child {
    position: relative;
    max-width: 52rem;
    padding-left: 1.15rem;
}

.section-heading > :first-child::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.3rem;
    bottom: 0.35rem;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--brand-red), var(--brand-blue));
    box-shadow: 0 0 0 6px rgba(31, 69, 216, 0.06);
}

.section-title {
    margin: 0;
    position: relative;
    display: inline-block;
    padding-bottom: 0.85rem;
    font-size: clamp(1.7rem, 2.8vw, 3rem);
    color: var(--ink-950);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 88px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-red), var(--brand-blue));
    box-shadow: 0 10px 24px rgba(31, 69, 216, 0.16);
}

.section-copy {
    margin: 0.8rem 0 0;
    max-width: 46rem;
    color: var(--ink-500);
    font-size: 1.03rem;
    line-height: 1.85;
    text-wrap: pretty;
}

.glass-panel,
.story-card,
.admin-panel,
.stat-card,
.metric-card,
.detail-card,
.image-card-modern,
.contact-card,
.login-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(31, 69, 216, 0.08);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.story-card,
.admin-panel,
.detail-card,
.contact-card,
.login-card,
.image-card-modern {
    overflow: hidden;
}

.story-card__body,
.admin-panel__body,
.detail-card__body,
.contact-card__body,
.login-card__body {
    padding: 1.5rem;
}

.story-card__media,
.image-card-modern img,
.article-cover,
.gallery-cover,
.video-frame iframe,
.video-frame img {
    display: block;
    width: 100%;
}

.story-card__media,
.article-cover,
.gallery-cover,
.video-frame {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(31, 69, 216, 0.12), rgba(227, 52, 47, 0.1));
}

.story-card__media img,
.article-cover img,
.gallery-cover img,
.image-card-modern img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.story-card:hover .story-card__media img,
.image-card-modern:hover img,
.gallery-card-link:hover .gallery-cover img {
    transform: scale(1.04);
}

.story-tag,
.meta-pill,
.admin-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.38rem 0.72rem;
    border-radius: 999px;
    background: rgba(31, 69, 216, 0.1);
    color: var(--brand-blue);
    font-size: 0.82rem;
    font-weight: 800;
}

.story-title,
.detail-card__title {
    margin: 0.85rem 0 0.6rem;
    color: var(--ink-950);
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.4;
}

.story-excerpt,
.story-meta,
.detail-card__meta,
.muted-copy {
    color: var(--ink-500);
    line-height: 1.7;
}

.story-link {
    color: var(--brand-red);
    font-weight: 800;
    text-decoration: none;
}

.ticker-strip {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(31, 69, 216, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.96)),
        var(--surface);
    box-shadow: 0 14px 30px rgba(16, 33, 93, 0.05);
    overflow: hidden;
}

.ticker-label {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    align-self: center;
    padding: 0.48rem 0.8rem;
    border-radius: 999px;
    background: rgba(31, 69, 216, 0.08);
    color: var(--brand-blue-deep);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.04em;
}

.ticker-window {
    position: relative;
    overflow: hidden;
    min-width: 0;
}

.ticker-window::before,
.ticker-window::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 54px;
    z-index: 1;
    pointer-events: none;
}

.ticker-window::before {
    left: 0;
    background: linear-gradient(90deg, rgba(249, 251, 255, 0.98), transparent);
}

.ticker-window::after {
    right: 0;
    background: linear-gradient(270deg, rgba(248, 250, 255, 0.98), transparent);
}

.ticker-track {
    display: flex;
    align-items: center;
    gap: 2.1rem;
    min-width: max-content;
    animation: ticker-scroll 120s linear infinite;
}

.ticker-strip:hover .ticker-track {
    animation-play-state: paused;
}

.ticker-item {
    position: relative;
    color: var(--ink-700);
    font-weight: 700;
    font-size: 0.95rem;
    white-space: nowrap;
}

.ticker-item::after {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 2.1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-red));
    vertical-align: middle;
    opacity: 0.7;
}

@keyframes ticker-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

.feature-grid,
.card-grid,
.gallery-grid-modern {
    display: grid;
    gap: 1.4rem;
}

.feature-grid {
    grid-template-columns: minmax(0, 1.6fr) minmax(260px, 0.9fr);
}

.featured-stage {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.85fr);
    gap: 1.5rem;
    align-items: start;
}

.featured-spotlight {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(126, 180, 255, 0.32), transparent 30%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(238, 244, 255, 0.94)),
        linear-gradient(135deg, rgba(31, 69, 216, 0.1), rgba(227, 52, 47, 0.08));
    border: 1px solid rgba(31, 69, 216, 0.08);
    box-shadow: 0 34px 90px rgba(16, 33, 93, 0.14);
}

.featured-spotlight::before {
    content: "";
    position: absolute;
    inset: 18px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    pointer-events: none;
    z-index: 0;
}

.featured-spotlight__media {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: linear-gradient(135deg, #11275b, #2d56de);
}

.featured-spotlight__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.featured-spotlight:hover .featured-spotlight__media img {
    transform: scale(1.05);
}

.featured-spotlight__shade {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at center, transparent 0, transparent 26%, rgba(5, 8, 22, 0.3) 100%),
        linear-gradient(180deg, rgba(7, 11, 27, 0.02), rgba(7, 11, 27, 0.58));
}

.featured-spotlight__serial,
.featured-spotlight__status {
    position: absolute;
    z-index: 2;
}

.featured-spotlight__serial {
    top: 1.2rem;
    left: 1.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 22px;
    background: rgba(6, 12, 32, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(14px);
    color: white;
    font-family: "Sora", sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.featured-spotlight__status {
    top: 1.35rem;
    right: 1.35rem;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    min-height: 42px;
    padding: 0.75rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(14px);
    color: white;
    font-weight: 800;
}

.featured-spotlight__status-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: #ff5d57;
    box-shadow: 0 0 0 6px rgba(255, 93, 87, 0.18);
}

.featured-spotlight__play {
    position: absolute;
    left: 1.35rem;
    bottom: 1.35rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    min-height: 56px;
    padding: 0.95rem 1.2rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink-950);
    font-weight: 900;
    box-shadow: 0 14px 34px rgba(16, 33, 93, 0.2);
    z-index: 2;
}

.featured-spotlight__play i {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--brand-red), #ff655f);
    color: white;
    font-size: 0.92rem;
}

.featured-spotlight__body {
    position: relative;
    z-index: 1;
    padding: 1.7rem;
}

.featured-spotlight__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--brand-red);
    font-size: 0.85rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.featured-spotlight__eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-red), transparent);
}

.featured-spotlight__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.95rem;
}

.featured-spotlight__title {
    margin: 1rem 0 0.75rem;
    color: var(--ink-950);
    font-family: "Sora", sans-serif;
    font-size: clamp(1.8rem, 3.2vw, 3rem);
    font-weight: 800;
    line-height: 1.08;
    max-width: 16ch;
}

.featured-spotlight__excerpt {
    margin: 0;
    color: var(--ink-700);
    font-size: 1.02rem;
    line-height: 1.85;
    max-width: 58ch;
}

.featured-spotlight__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.25rem;
    color: var(--ink-500);
    font-weight: 700;
}

.featured-spotlight__meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.featured-spotlight__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin-top: 1.4rem;
}

.featured-stat {
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(238, 244, 255, 0.92));
    border: 1px solid rgba(31, 69, 216, 0.08);
}

.featured-stat__label {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--ink-500);
    font-size: 0.76rem;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.featured-stat strong {
    color: var(--ink-950);
    font-family: "Sora", sans-serif;
    font-size: 0.98rem;
    font-weight: 800;
}

.featured-spotlight__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.6rem;
}

.featured-stage__aside {
    display: grid;
    gap: 1rem;
}

.featured-note,
.featured-mini-card {
    display: block;
    padding: 1.3rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(31, 69, 216, 0.08);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
}

.featured-note {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(185, 212, 255, 0.32), transparent 42%),
        linear-gradient(160deg, rgba(255, 255, 255, 0.98), rgba(240, 245, 255, 0.95));
}

.featured-note__orb {
    position: absolute;
    top: -32px;
    right: -22px;
    width: 118px;
    height: 118px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(227, 52, 47, 0.22), rgba(31, 69, 216, 0.06) 62%, transparent 72%);
    pointer-events: none;
}

.featured-note__label {
    display: inline-flex;
    align-items: center;
    padding: 0.42rem 0.75rem;
    border-radius: 999px;
    background: rgba(31, 69, 216, 0.1);
    color: var(--brand-blue);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.featured-note__title {
    margin: 1rem 0 0.55rem;
    color: var(--ink-950);
    font-family: "Sora", sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
}

.featured-note__copy,
.featured-mini-card__copy {
    margin: 0;
    color: var(--ink-500);
    line-height: 1.75;
}

.featured-note__divider {
    width: 100%;
    height: 1px;
    margin: 1rem 0;
    background: linear-gradient(90deg, rgba(31, 69, 216, 0.16), rgba(227, 52, 47, 0.08), transparent);
}

.featured-note__mini-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.featured-note__mini-metrics span {
    display: block;
    margin-bottom: 0.2rem;
    color: var(--ink-500);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.featured-note__mini-metrics strong {
    color: var(--ink-950);
    font-family: "Sora", sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
}

.featured-mini-list {
    display: grid;
    gap: 1rem;
}

.featured-mini-card {
    position: relative;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.featured-mini-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 34px rgba(16, 33, 93, 0.1);
}

.featured-mini-card::after {
    content: "";
    position: absolute;
    left: 1.3rem;
    right: 1.3rem;
    bottom: 0;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-red));
    opacity: 0.7;
}

.featured-mini-card__title {
    margin: 0.85rem 0 0.45rem;
    color: var(--ink-950);
    font-family: "Sora", sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    line-height: 1.45;
}

.card-grid--three,
.gallery-grid-modern {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid--four {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.catalog-filter-shell {
    padding: 0;
    background: transparent;
    border: 0;
}

.catalog-filter-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 46px;
    padding: 0.7rem 0.95rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(31, 69, 216, 0.1);
    color: var(--ink-700);
    box-shadow: 0 8px 20px rgba(16, 33, 93, 0.05);
}

.catalog-filter-pill span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    height: 28px;
    padding-inline: 0.45rem;
    border-radius: 999px;
    background: rgba(31, 69, 216, 0.08);
    color: inherit;
    font-size: 0.78rem;
    font-weight: 900;
}

.nav-pills .catalog-filter-pill.active,
.nav-pills .show > .catalog-filter-pill {
    background: linear-gradient(135deg, rgba(31, 69, 216, 0.12), rgba(31, 69, 216, 0.06));
    border-color: rgba(31, 69, 216, 0.16);
    color: var(--brand-blue-deep);
    box-shadow: 0 12px 24px rgba(16, 33, 93, 0.08);
}

.catalog-category-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(31, 69, 216, 0.08);
}

.catalog-category-head h3 {
    margin: 0 0 0.25rem;
    color: var(--ink-950);
    font-family: "Sora", sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
}

.catalog-category-head p {
    margin: 0;
    color: var(--ink-500);
}

.catalog-featured {
    display: grid;
    grid-template-columns: minmax(320px, 1.05fr) minmax(0, 1fr);
    gap: 0;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(31, 69, 216, 0.08);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 40px rgba(16, 33, 93, 0.08);
}

.catalog-featured__media {
    display: block;
    min-height: 100%;
    background: linear-gradient(135deg, rgba(31, 69, 216, 0.12), rgba(227, 52, 47, 0.08));
}

.catalog-featured__media img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
}

.catalog-featured__body {
    display: flex;
    flex-direction: column;
    padding: 1.6rem 1.65rem;
}

.catalog-featured__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--ink-500);
    font-size: 0.84rem;
    font-weight: 700;
}

.catalog-featured__title {
    margin: 0.95rem 0 0.75rem;
    color: var(--ink-950);
    font-family: "Sora", sans-serif;
    font-size: clamp(1.55rem, 2.5vw, 2.15rem);
    font-weight: 800;
    line-height: 1.12;
}

.catalog-featured__excerpt {
    margin: 0;
    color: var(--ink-500);
    line-height: 1.75;
}

.catalog-featured__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.2rem;
}

.catalog-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.15rem;
}

.catalog-card {
    display: grid;
    grid-template-columns: 172px minmax(0, 1fr);
    min-height: 100%;
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(31, 69, 216, 0.08);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.catalog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(16, 33, 93, 0.1);
    border-color: rgba(31, 69, 216, 0.14);
}

.catalog-card__media {
    display: block;
    height: 100%;
    min-height: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(31, 69, 216, 0.12), rgba(227, 52, 47, 0.08));
}

.catalog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.catalog-card:hover .catalog-card__media img {
    transform: scale(1.04);
}

.catalog-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1rem 1rem 0.95rem;
}

.catalog-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    color: var(--ink-500);
    font-size: 0.82rem;
    font-weight: 700;
}

.catalog-card__category {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(31, 69, 216, 0.08);
    color: var(--brand-blue-deep);
    font-size: 0.78rem;
    font-weight: 800;
}

.catalog-card__title {
    margin: 0.7rem 0 0.45rem;
    color: var(--ink-950);
    font-family: "Sora", sans-serif;
    font-size: 1.02rem;
    font-weight: 800;
    line-height: 1.32;
}

.catalog-card__excerpt {
    margin: 0;
    color: var(--ink-500);
    font-size: 0.94rem;
    line-height: 1.65;
}

.catalog-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-top: auto;
    padding-top: 1rem;
}

.catalog-card__author {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--ink-500);
    font-size: 0.84rem;
    font-weight: 700;
}

.catalog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--brand-red);
    font-size: 0.92rem;
    font-weight: 800;
    text-decoration: none;
}

.catalog-card__link:hover {
    color: var(--brand-red-deep);
}

.video-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.video-frame iframe {
    height: 100%;
    min-height: 100%;
    border: 0;
}

.video-overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 1.6rem;
    background: linear-gradient(180deg, transparent, rgba(16, 33, 93, 0.92));
    color: white;
}

.feature-video-overlay {
    pointer-events: none;
}

.feature-video-card {
    border-radius: 28px;
}

.feature-video-frame {
    aspect-ratio: 16 / 9;
}

.feature-video-overlay .hero-title {
    margin: 0.85rem 0 0.55rem;
    max-width: 12ch;
    color: white;
    font-size: clamp(1.85rem, 3.5vw, 3rem);
    line-height: 0.98;
    text-shadow: 0 14px 30px rgba(0, 0, 0, 0.34);
}

.feature-video-overlay p {
    max-width: 36rem;
    color: rgba(255, 255, 255, 0.88);
}

.actu-stage {
    align-items: start;
}

.video-feature-copy {
    display: none;
    padding: 1.15rem 1.15rem 1.25rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 255, 0.98));
}

.video-feature-copy__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.video-feature-copy__link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--brand-blue);
    font-size: 0.86rem;
    font-weight: 800;
    text-decoration: none;
}

.video-feature-copy__title {
    margin: 0.75rem 0 0.5rem;
    color: var(--ink-950);
    font-family: "Sora", sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    line-height: 1.12;
}

.video-feature-copy__text {
    color: var(--ink-600);
    line-height: 1.65;
}

.video-playlist-shell {
    display: grid;
    gap: 1rem;
    padding: 1.1rem;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(244, 247, 255, 0.98));
    box-shadow: var(--shadow-md);
}

.video-playlist-shell__header {
    display: grid;
    gap: 0.55rem;
}

.video-playlist-shell__copy {
    color: var(--ink-500);
    font-size: 0.92rem;
    line-height: 1.65;
}

.video-playlist {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.playlist-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    border-radius: 22px;
    background: white;
    box-shadow: 0 18px 36px rgba(15, 23, 56, 0.08);
    text-decoration: none;
    overflow: hidden;
    transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.playlist-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 46px rgba(15, 23, 56, 0.14);
}

.playlist-card__media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.playlist-card img,
.playlist-card iframe {
    width: 100%;
    height: 100%;
    min-height: 100%;
    border: 0;
    object-fit: cover;
}

.playlist-card__serial {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.35rem;
    min-height: 2.35rem;
    padding: 0.35rem 0.55rem;
    border-radius: 999px;
    background: rgba(9, 20, 60, 0.82);
    color: white;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.playlist-card__body {
    display: grid;
    gap: 0.7rem;
    min-width: 0;
    padding: 1rem;
}

.playlist-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.playlist-card__date {
    color: var(--ink-500);
    font-size: 0.8rem;
    font-weight: 700;
}

.playlist-card__title {
    margin: 0 0 0.35rem;
    color: var(--ink-950);
    font-weight: 800;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.playlist-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--brand-red);
    font-size: 0.9rem;
    font-weight: 800;
}

.content-copy {
    line-height: 1.85;
    color: var(--ink-700);
}

@media (max-width: 1199px) {
    .feature-grid.actu-stage {
        grid-template-columns: 1fr;
    }

    .video-playlist {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.content-copy p:last-child {
    margin-bottom: 0;
}

.site-footer {
    margin-top: 4rem;
    background:
        linear-gradient(180deg, #0f172a 0%, #13213f 58%, #18284c 100%);
    color: rgba(255, 255, 255, 0.92);
    border-top: 1px solid rgba(185, 212, 255, 0.08);
}

.site-footer__inner {
    padding: 3.2rem 0 1.3rem;
}

.site-footer__brand {
    align-items: center;
}

.site-footer__bottom {
    row-gap: 0.9rem;
}

.site-footer__credit {
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
}

.site-footer__credit-link {
    position: relative;
    display: inline-block;
    min-height: 52px;
    padding: 0.15rem 0 0.8rem;
    color: white;
    text-decoration: none;
    isolation: isolate;
    text-align: right;
}

.site-footer__credit-content {
    position: relative;
    z-index: 1;
    display: grid;
    justify-items: end;
    gap: 0.08rem;
}

.site-footer__credit-label,
.site-footer__credit-name {
    position: relative;
}

.site-footer__credit-label {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.25);
}

.site-footer__credit-name {
    color: white;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.3);
}

.site-footer__credit-watermark {
    display: none;
}

.site-footer__credit-link:hover .site-footer__credit-name {
    color: #ffffff;
}

.site-footer__credit-link:hover {
    color: white;
    transform: translateY(-1px);
}

.site-footer .brand-wordmark span:first-child {
    color: #dbe8ff;
}

.site-footer .brand-wordmark span:last-child {
    color: #ff857d;
}

.site-footer .brand-subtitle,
.site-footer p,
.site-footer li,
.site-footer .text-white-50 {
    color: rgba(255, 255, 255, 0.74) !important;
}

.footer-title {
    color: white;
    font-size: 1.05rem;
    font-weight: 800;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: grid;
    gap: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-links a:hover {
    color: white;
    transform: translateX(2px);
}

.legal-footer-panel {
    display: grid;
    gap: 0.95rem;
    padding: 1rem;
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-footer-links {
    display: grid;
    gap: 0.7rem;
}

.legal-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    width: 100%;
    min-height: 46px;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    color: white;
    font-weight: 700;
    text-align: left;
    transition: 0.25s ease;
}

.legal-footer-link:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.12);
}

.site-footer .newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.98);
    border-color: rgba(255, 255, 255, 0.18);
    color: var(--ink-950);
}

.site-footer .newsletter-form .form-control::placeholder {
    color: rgba(36, 50, 74, 0.64);
}

.site-footer .newsletter-form .form-control:focus {
    border-color: rgba(126, 180, 255, 0.55);
    box-shadow: 0 0 0 0.2rem rgba(126, 180, 255, 0.16);
}

.site-footer .border-top {
    border-color: rgba(255, 255, 255, 0.14) !important;
}

.newsletter-form .form-control,
.admin-form .form-control,
.admin-form .form-select,
.admin-form textarea,
.contact-form .form-control,
.contact-form textarea,
.login-form .form-control {
    border-radius: 16px;
    border: 1px solid rgba(31, 69, 216, 0.14);
    min-height: 52px;
    padding: 0.95rem 1rem;
    box-shadow: none;
}

.admin-form textarea,
.contact-form textarea {
    min-height: 160px;
}

.newsletter-form .form-control:focus,
.admin-form .form-control:focus,
.admin-form .form-select:focus,
.admin-form textarea:focus,
.contact-form .form-control:focus,
.contact-form textarea:focus,
.login-form .form-control:focus {
    border-color: rgba(31, 69, 216, 0.32);
    box-shadow: 0 0 0 4px rgba(31, 69, 216, 0.08);
}

.contact-form > .btn-brand,
.contact-form > .btn-brand-outline,
.login-form > .btn-brand,
.login-form > .btn-brand-outline,
.register-form > .btn-brand,
.register-form > .btn-brand-outline {
    margin-top: 0.65rem;
}

.flash-stack {
    display: grid;
    gap: 0.9rem;
    margin: 1.4rem 0;
}

.flash-message {
    border-radius: 18px;
    padding: 1rem 1.1rem;
    font-weight: 700;
    border: 1px solid transparent;
}

.flash-message--success {
    color: #065f46;
    background: rgba(18, 183, 106, 0.12);
    border-color: rgba(18, 183, 106, 0.2);
}

.flash-message--error {
    color: #991b1b;
    background: rgba(227, 52, 47, 0.1);
    border-color: rgba(227, 52, 47, 0.18);
}

.flash-message--warning {
    color: #92400e;
    background: rgba(247, 144, 9, 0.12);
    border-color: rgba(247, 144, 9, 0.2);
}

.legal-modal__content {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 32px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.96)),
        white;
    box-shadow: 0 36px 100px rgba(16, 33, 93, 0.22);
}

.legal-modal__body {
    position: relative;
    padding: 2rem 1.5rem 1.6rem;
}

.legal-modal__glow {
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    filter: blur(32px);
    opacity: 0.28;
    pointer-events: none;
}

.legal-modal__glow--red {
    top: -100px;
    right: -70px;
    background: rgba(227, 52, 47, 0.42);
}

.legal-modal__glow--blue {
    top: -110px;
    right: -60px;
    background: rgba(31, 69, 216, 0.4);
}

.legal-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(16, 33, 93, 0.08);
    color: var(--ink-700);
}

.legal-modal__title {
    position: relative;
    z-index: 1;
    margin: 1rem 0 0.65rem;
    color: var(--ink-950);
    font-family: "Sora", sans-serif;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.08;
}

.legal-modal__lead {
    position: relative;
    z-index: 1;
    max-width: 44rem;
    margin: 0;
    color: var(--ink-500);
    line-height: 1.8;
}

.legal-modal__grid,
.legal-page-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.legal-modal__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.legal-note-card,
.legal-page-card {
    position: relative;
    overflow: hidden;
    padding: 1.15rem 1.05rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(31, 69, 216, 0.08);
    box-shadow: 0 18px 40px rgba(16, 33, 93, 0.08);
}

.legal-note-card::before,
.legal-page-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--brand-red), var(--brand-blue));
}

.legal-note-card h3,
.legal-page-card h3 {
    margin: 0 0 0.55rem;
    color: var(--ink-950);
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    font-weight: 800;
}

.legal-note-card p,
.legal-page-card p {
    margin: 0;
    color: var(--ink-500);
    line-height: 1.75;
}

.legal-modal__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 1.5rem;
}

.legal-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ad-popup-modal__content {
    overflow: hidden;
    border: 0;
    border-radius: 32px;
    background:
        radial-gradient(circle at top right, rgba(126, 180, 255, 0.2), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(245, 248, 255, 0.96));
    box-shadow: 0 36px 100px rgba(16, 33, 93, 0.24);
}

.ad-popup-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(16, 33, 93, 0.08);
    color: var(--ink-700);
}

.ad-popup-modal__header,
.ad-popup-modal__footer {
    padding: 1.25rem 1.25rem 0;
}

.ad-popup-modal__title {
    margin: 0.9rem 0 0;
    color: var(--ink-950);
    font-family: "Sora", sans-serif;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    font-weight: 800;
    line-height: 1.14;
}

.ad-popup-modal__media-wrap {
    padding: 1rem 1.25rem 0;
}

.ad-popup-modal__media-link {
    display: block;
    overflow: hidden;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(31, 69, 216, 0.08), rgba(227, 52, 47, 0.08));
    border: 1px solid rgba(31, 69, 216, 0.08);
    text-decoration: none;
}

.ad-popup-modal__image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 72vh;
    object-fit: cover;
}

.ad-popup-modal__footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.85rem;
    padding-bottom: 1.25rem;
}

.admin-shell {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    min-height: 100vh;
    background: linear-gradient(180deg, #eff5ff 0%, #ffffff 100%);
}

.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 1.4rem;
    background:
        linear-gradient(180deg, rgba(16, 33, 93, 0.98), rgba(31, 69, 216, 0.96) 64%, rgba(227, 52, 47, 0.94));
    color: white;
}

.admin-sidebar__panel {
    position: relative;
    display: grid;
    gap: 1.6rem;
    height: 100%;
    padding: 1.2rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-sidebar__menu {
    display: grid;
    gap: 0.55rem;
}

.admin-sidebar-toggle,
.admin-sidebar__close,
.admin-sidebar-overlay {
    display: none;
}

.admin-sidebar__menu a,
.admin-sidebar__button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    min-height: 48px;
    padding: 0.85rem 1rem;
    border-radius: 16px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 700;
    transition: 0.25s ease;
}

.admin-sidebar__menu a i,
.admin-sidebar__button i {
    background: rgba(255, 255, 255, 0.12);
    color: white;
}

.admin-sidebar__menu .is-active a,
.admin-sidebar__menu a:hover,
.admin-sidebar__button:hover {
    background: rgba(255, 255, 255, 0.12);
    color: white;
}

.admin-content {
    padding: 1.5rem;
}

.admin-topbar__lead {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.admin-hero {
    padding: 2.5rem;
    background:
        linear-gradient(135deg, rgba(16, 33, 93, 0.98), rgba(31, 69, 216, 0.92) 62%, rgba(227, 52, 47, 0.88));
    color: white;
}

.admin-page-actions,
.admin-card-actions,
.detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.member-space-page .fa,
.member-space-page .fas,
.member-space-page .far {
    display: inline-block;
    line-height: 1;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.member-space-page .fa,
.member-space-page .fas {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.member-space-page .far {
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
}

.member-space-page .page-kicker i,
.member-space-page .story-tag i,
.member-space-page .meta-pill i,
.member-space-page .btn-soft i,
.member-space-page .btn-brand i,
.member-space-page .btn-brand-outline i,
.member-space-page .favorite-toggle__button i,
.member-space-page .detail-actions i {
    min-width: 1em;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
    margin-top: 1.7rem;
}

.stat-card {
    padding: 1.4rem;
}

.stat-card__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ink-500);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: 0.8rem;
}

.stat-card__value {
    margin: 0.5rem 0 0.2rem;
    color: var(--ink-950);
    font-size: 2.2rem;
    font-weight: 900;
}

.data-table-wrap {
    overflow-x: auto;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th,
.data-table td {
    padding: 1rem;
    border-bottom: 1px solid rgba(31, 69, 216, 0.08);
    vertical-align: top;
}

.data-table th {
    color: var(--ink-500);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.data-table tr:hover td {
    background: rgba(31, 69, 216, 0.025);
}

.action-cluster {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.detail-item {
    padding: 1rem;
    border-radius: 18px;
    background: var(--surface-alt);
    border: 1px solid rgba(31, 69, 216, 0.08);
}

.detail-item__label {
    display: block;
    margin-bottom: 0.35rem;
    color: var(--ink-500);
    font-size: 0.84rem;
    font-weight: 800;
    text-transform: uppercase;
}

.editorial-copy {
    white-space: pre-line;
}

.auth-shell {
    min-height: calc(100vh - 220px);
    display: grid;
    place-items: center;
    padding: 3rem 0;
}

.login-card {
    width: min(100%, 480px);
}

.register-card {
    width: min(100%, 760px);
}

.register-form {
    gap: 1.25rem;
}

.auth-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.auth-field {
    display: grid;
    gap: 0.45rem;
}

.auth-field--wide {
    grid-column: 1 / -1;
}

.auth-password-field {
    position: relative;
}

.auth-password-field .form-control {
    padding-right: 7.2rem;
}

.auth-password-toggle {
    position: absolute;
    top: 50%;
    right: 0.6rem;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    min-height: 38px;
    padding: 0.45rem 0.7rem;
    border: 0;
    border-radius: 12px;
    background: rgba(31, 69, 216, 0.08);
    color: var(--brand-blue-deep);
    font-size: 0.84rem;
    font-weight: 800;
}

.auth-password-toggle:hover {
    background: rgba(31, 69, 216, 0.13);
}

.login-form .form-control.is-valid {
    border-color: rgba(16, 185, 129, 0.55);
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.08);
}

.login-form .form-control.is-invalid {
    border-color: rgba(227, 52, 47, 0.5);
    box-shadow: 0 0 0 4px rgba(227, 52, 47, 0.08);
}

.auth-feedback {
    min-height: 1.1rem;
    font-size: 0.84rem;
    font-weight: 700;
}

.auth-feedback.is-valid {
    color: #0f8a5f;
}

.auth-feedback.is-invalid {
    color: #c0392b;
}

.auth-live-panel {
    display: grid;
    gap: 0.85rem;
    padding: 1rem 1.05rem;
    border: 1px solid rgba(31, 69, 216, 0.1);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(245, 248, 255, 0.94), rgba(255, 255, 255, 0.98));
}

.auth-live-panel__header {
    display: grid;
    gap: 0.15rem;
}

.auth-live-panel__header strong {
    color: var(--ink-950);
}

.auth-live-panel__header span {
    color: var(--ink-500);
    font-size: 0.92rem;
}

.password-checklist {
    display: grid;
    gap: 0.55rem;
    padding: 0;
    list-style: none;
}

.password-checklist li {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--ink-500);
    font-size: 0.92rem;
    font-weight: 700;
}

.password-checklist li::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(148, 163, 184, 0.7);
    box-shadow: 0 0 0 5px rgba(148, 163, 184, 0.12);
}

.password-checklist li.is-valid {
    color: #0f8a5f;
}

.password-checklist li.is-valid::before {
    background: #10b981;
    box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.15);
}

.password-checklist li.is-invalid {
    color: var(--ink-600);
}

.register-form .btn-brand:disabled {
    opacity: 0.62;
    cursor: not-allowed;
    box-shadow: none;
}

.contact-layout,
.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.9fr);
    gap: 1.5rem;
}

.gallery-grid-modern {
    margin-top: 1.5rem;
}

.album-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.album-card-premium {
    position: relative;
    display: block;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(31, 69, 216, 0.1);
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 248, 255, 0.96)),
        var(--surface);
    box-shadow: var(--shadow-sm);
    text-decoration: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.album-card-premium::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 5px;
    background: linear-gradient(90deg, var(--brand-blue-deep), var(--brand-blue) 62%, var(--brand-red));
    z-index: 2;
}

.album-card-premium:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(31, 69, 216, 0.2);
}

.album-card-premium__media {
    position: relative;
    aspect-ratio: 16 / 11;
    overflow: hidden;
    background: linear-gradient(135deg, #0b1330, #1f45d8);
}

.album-card-premium__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.album-card-premium:hover .album-card-premium__media img {
    transform: scale(1.05);
}

.album-card-premium__overlay {
    position: absolute;
    inset: auto 1rem 1rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-wrap: wrap;
}

.album-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.8rem;
    border-radius: 999px;
    background: rgba(7, 11, 27, 0.72);
    color: white;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    backdrop-filter: blur(12px);
}

.album-card-premium__body {
    padding: 1.4rem 1.35rem 1.35rem;
}

.album-card-premium__eyebrow {
    display: inline-block;
    color: var(--brand-blue);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.album-card-premium__title {
    margin: 0.75rem 0 0.7rem;
    color: var(--ink-950);
    font-family: "Sora", sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    line-height: 1.22;
}

.album-card-premium__text {
    margin: 0;
    color: var(--ink-500);
    line-height: 1.7;
}

.album-card-premium__footer {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(31, 69, 216, 0.08);
    color: var(--ink-700);
    font-size: 0.95rem;
}

.album-card-premium__footer strong {
    color: var(--ink-950);
}

.album-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.album-metric {
    padding: 1rem 1.1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
}

.album-metric span {
    display: block;
    margin-bottom: 0.35rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.album-metric strong {
    color: white;
    font-size: 1rem;
    font-weight: 800;
}

.image-card-modern__caption {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.1rem;
}

.empty-state {
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px dashed rgba(31, 69, 216, 0.2);
    background: rgba(255, 255, 255, 0.74);
    color: var(--ink-500);
    text-align: center;
}

.line-clamp-2,
.line-clamp-3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-2 {
    -webkit-line-clamp: 2;
}

.line-clamp-3 {
    -webkit-line-clamp: 3;
}

@media (max-width: 1199px) {
    .feature-grid,
    .contact-layout,
    .article-layout,
    .admin-shell {
        grid-template-columns: 1fr;
    }

    body.admin-menu-open {
        overflow: hidden;
    }

    .admin-sidebar {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1200;
        width: min(320px, calc(100vw - 1rem));
        height: 100vh;
        padding: 0.8rem;
        transform: translateX(-104%);
        visibility: hidden;
        overflow-y: auto;
        box-shadow: 0 24px 60px rgba(7, 16, 44, 0.35);
        transition: transform 0.28s ease, visibility 0.28s ease;
    }

    .admin-shell.is-sidebar-open .admin-sidebar {
        transform: translateX(0);
        visibility: visible;
    }

    .admin-sidebar__panel {
        min-height: calc(100vh - 1.6rem);
        height: auto;
        padding: 1.2rem 1rem 1rem;
    }

    .admin-sidebar__close {
        position: absolute;
        top: 0.9rem;
        right: 0.9rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 42px;
        border: 0;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.12);
        color: white;
        cursor: pointer;
    }

    .admin-sidebar-overlay {
        position: fixed;
        inset: 0;
        z-index: 1100;
        display: block;
        border: 0;
        background: rgba(8, 17, 47, 0.46);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.25s ease;
    }

    .admin-shell.is-sidebar-open .admin-sidebar-overlay {
        opacity: 1;
        pointer-events: auto;
    }

    .admin-sidebar-toggle {
        display: inline-flex;
        align-items: center;
        gap: 0.65rem;
        min-height: 46px;
        padding: 0.8rem 1rem;
        border: 0;
        border-radius: 16px;
        background: rgba(31, 69, 216, 0.1);
        color: var(--brand-blue-deep);
        font-weight: 800;
        cursor: pointer;
        box-shadow: inset 0 0 0 1px rgba(31, 69, 216, 0.14);
    }

    .admin-topbar__lead {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-content {
        padding: 1.1rem;
    }

    .site-nav {
        gap: 0.85rem;
    }

    .site-menu a {
        padding: 0 0.92rem;
    }

    .site-cta,
    .btn-brand-outline {
        padding: 0.8rem 1rem;
    }
}

@media (min-width: 992px) {
    .page-hero {
        margin-top: 0;
    }
}

@media (max-width: 991px) {
    .live-broadcast__frame {
        min-height: 300px;
    }

    .live-broadcast__ticker {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 0.9rem 1rem 1rem;
    }

    .ticker-strip {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .public-hero,
    .page-hero,
    .admin-hero {
        padding: 2.4rem 1.5rem;
    }

    .page-hero {
        margin-top: 0;
        padding: 1.45rem 1rem 1.35rem;
    }

    .card-grid--three,
    .card-grid--four,
    .catalog-card-grid,
    .album-grid,
    .gallery-grid-modern,
    .stat-grid,
    .detail-grid {
        grid-template-columns: 1fr 1fr;
    }

    .catalog-featured {
        grid-template-columns: 1fr;
    }

    .catalog-featured__body {
        padding: 1.2rem;
    }

    .catalog-card {
        grid-template-columns: 148px minmax(0, 1fr);
    }

    .featured-stage {
        grid-template-columns: 1fr;
    }

    .featured-spotlight__stats {
        grid-template-columns: 1fr 1fr;
    }

    .admin-main,
    .admin-content,
    .admin-topbar__lead > div {
        min-width: 0;
    }

    .admin-hero {
        padding: 1.35rem 1rem 1.2rem;
        border-radius: 24px;
    }

    .admin-page-title {
        font-size: clamp(1.65rem, 7vw, 2.15rem);
        line-height: 1.06;
    }

    .admin-page-lead {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .admin-panel__body,
    .detail-card__body {
        padding: 1rem;
    }

    .section-heading {
        gap: 0.85rem;
    }

    .admin-page-actions,
    .action-cluster,
    .detail-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .admin-page-actions > *,
    .action-cluster > *,
    .detail-actions > *,
    .detail-actions form {
        width: 100%;
    }

    .detail-item {
        padding: 0.9rem;
        overflow-wrap: anywhere;
    }

    .data-table-wrap {
        overflow: visible;
    }

    .data-table,
    .data-table thead,
    .data-table tbody,
    .data-table tr,
    .data-table th,
    .data-table td {
        display: block;
        width: 100%;
    }

    .data-table {
        min-width: 0;
        border-collapse: separate;
    }

    .data-table thead {
        display: none;
    }

    .data-table tbody {
        display: grid;
        gap: 0.9rem;
    }

    .data-table tr {
        padding: 1rem;
        border: 1px solid rgba(31, 69, 216, 0.08);
        border-radius: 20px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 255, 0.96));
        box-shadow: 0 12px 28px rgba(16, 33, 93, 0.06);
    }

    .data-table td {
        display: grid;
        grid-template-columns: minmax(110px, 42%) minmax(0, 1fr);
        gap: 0.8rem;
        align-items: start;
        padding: 0.5rem 0;
        border-bottom: 1px solid rgba(31, 69, 216, 0.08);
        overflow-wrap: anywhere;
    }

    .data-table td:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .data-table td::before {
        content: attr(data-label);
        color: var(--ink-500);
        font-size: 0.78rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    .data-table td[colspan] {
        display: block;
        padding: 0;
        border-bottom: 0;
    }

    .data-table td[colspan]::before {
        content: none;
    }

    .data-table td img {
        width: min(100%, 132px) !important;
        height: auto !important;
    }

    .data-table td .action-cluster {
        margin-top: 0.15rem;
    }

    .top-ribbon__inner,
    .section-heading,
    .admin-topbar {
        flex-direction: column;
        align-items: start;
    }

    .legal-modal__grid,
    .legal-page-grid {
        grid-template-columns: 1fr;
    }

    .site-nav {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 1rem;
    }

    .site-nav__toggle {
        display: inline-flex;
        justify-self: end;
    }

    .site-nav__menu,
    .site-nav__actions {
        width: 100%;
        padding: 0;
        margin-top: 0.25rem;
        justify-content: flex-start;
        grid-column: 1 / -1;
    }

    .site-nav.is-collapsible .site-nav__menu,
    .site-nav.is-collapsible .site-nav__actions {
        display: none;
    }

    .site-nav.is-collapsible.is-menu-open .site-nav__menu {
        display: flex;
    }

    .site-nav.is-collapsible.is-menu-open .site-nav__actions {
        display: flex;
    }

    .site-menu {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.55rem;
        justify-content: flex-start;
    }

    .site-menu li {
        width: 100%;
    }

    .site-menu a {
        width: 100%;
        min-height: 0;
        justify-content: flex-start;
        padding: 0.9rem 1rem;
        border-radius: 18px;
    }

    .site-nav__actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.7rem;
    }

    .site-nav__actions > * {
        width: 100%;
    }

    .site-nav__actions .dropdown,
    .site-nav__actions .site-nav__form {
        width: 100%;
    }

    .site-nav__actions .site-cta,
    .site-nav__actions .btn-brand-outline,
    .site-user-toggle {
        width: 100%;
        justify-content: center;
    }

    .site-user-menu {
        width: 100%;
        min-width: 0;
    }

    .site-footer__bottom {
        align-items: flex-start !important;
        text-align: left;
    }

    .site-footer__brand {
        flex-wrap: wrap;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .feature-grid {
        gap: 1rem;
    }

    .feature-video-card {
        border-radius: 24px;
        overflow: hidden;
        box-shadow: 0 22px 50px rgba(19, 33, 78, 0.14);
    }

    .feature-video-frame {
        border-radius: 0;
        box-shadow: none;
    }

    .feature-video-overlay {
        display: none;
    }

    .video-feature-copy {
        display: block;
    }

    .video-feature-copy__title {
        margin: 0.7rem 0 0.55rem;
        font-size: clamp(1.45rem, 6.4vw, 1.9rem);
        line-height: 1.02;
    }

    .video-feature-copy__text {
        font-size: 0.93rem;
        line-height: 1.58;
    }

    .video-playlist-shell {
        padding: 0.85rem;
        border-radius: 22px;
    }

    .video-playlist {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .playlist-card {
        border-radius: 18px;
    }

    .playlist-card__body {
        padding: 0.9rem;
    }

    .playlist-card iframe,
    .playlist-card img {
        aspect-ratio: 16 / 9;
        min-height: 184px;
    }

    .playlist-card__title {
        font-size: 1.02rem;
        line-height: 1.25;
    }

    .playlist-card .story-excerpt {
        font-size: 0.92rem;
        line-height: 1.55;
    }

    .register-card {
        width: 100%;
    }

    .auth-form-grid {
        grid-template-columns: 1fr;
    }

    .auth-password-field .form-control {
        padding-right: 5.2rem;
    }

    .auth-password-toggle {
        min-height: 34px;
        padding: 0.4rem 0.55rem;
    }

    .auth-password-toggle span {
        display: none;
    }

    .auth-live-panel {
        padding: 0.95rem;
    }

    .top-ribbon .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .top-ribbon__inner {
        padding: 0.8rem 0;
    }

    .live-broadcast__frame {
        min-height: 240px;
    }

    .live-broadcast__logo-blocker {
        width: 84px;
        height: 42px;
    }

    .live-broadcast__ticker {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 0.9rem 0.85rem 1rem;
    }

    .live-broadcast__ticker-label {
        justify-self: start;
        padding: 0.58rem 0.85rem;
        font-size: 0.76rem;
        letter-spacing: 0.03em;
    }

    .live-broadcast__ticker-window {
        padding: 0.2rem 0;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.05);
    }

    .live-broadcast__ticker-item {
        font-size: 0.88rem;
        line-height: 1.45;
    }

    .live-broadcast__ticker-window::before,
    .live-broadcast__ticker-window::after {
        width: 22px;
    }

    .live-broadcast__ticker-track {
        gap: 1.5rem;
        animation-duration: 40s;
    }

    .live-broadcast__ticker-item::after {
        width: 6px;
        height: 6px;
        margin-left: 1.5rem;
    }

    .ticker-window::before,
    .ticker-window::after {
        width: 24px;
    }

    .site-menu,
    .hero-actions,
    .page-hero-actions,
    .admin-page-actions,
    .detail-actions {
        width: 100%;
    }

    .site-menu a,
    .site-cta,
    .btn-brand,
    .btn-brand-outline,
    .btn-soft,
    .btn-danger-soft {
        width: 100%;
    }

    .page-hero {
        margin-top: 0;
        padding: 1.2rem 0.95rem 1.15rem;
    }

    .site-footer__inner {
        padding: 2.5rem 0 1.1rem;
    }

    .site-footer .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .site-footer__brand {
        gap: 0.9rem;
        margin-bottom: 0.35rem !important;
    }

    .site-footer__brand img {
        width: 56px;
        height: 56px;
    }

    .site-footer__grid > div {
        padding: 1.15rem 0.55rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .site-footer__grid > div:last-child {
        padding-bottom: 0.4rem;
        border-bottom: 0;
    }

    .site-footer .brand-subtitle {
        margin-top: 0.2rem;
        font-size: 0.86rem;
    }

    .site-footer p {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .footer-title {
        margin-bottom: 0.8rem;
        font-size: 1.18rem;
    }

    .newsletter-form .d-flex {
        gap: 0.75rem !important;
    }

    .site-footer .newsletter-form .form-control {
        min-height: 56px;
        border-radius: 18px;
        font-size: 0.98rem;
        padding-inline: 1.05rem;
    }

    .site-footer .newsletter-form .btn-brand {
        min-height: 56px;
        border-radius: 999px;
        font-size: 1rem;
        font-weight: 800;
    }

    .footer-links {
        gap: 0.3rem;
        margin-top: 0.2rem;
    }

    .footer-links li {
        width: 100%;
    }

    .footer-links a {
        display: flex;
        align-items: center;
        min-height: 44px;
        padding: 0.65rem 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    }

    .footer-links li:last-child a {
        border-bottom: 0;
    }

    .legal-footer-panel {
        gap: 0.9rem;
        padding: 1rem;
        border-radius: 20px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    }

    .legal-footer-panel .story-tag {
        width: 100%;
        justify-content: center;
        min-height: 38px;
        padding: 0.55rem 0.8rem;
        border-radius: 999px;
        background: rgba(50, 79, 167, 0.34);
        color: #7fa1ff;
        text-align: center;
    }

    .legal-footer-link {
        min-height: 50px;
        padding: 0.9rem 1rem;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.08);
        font-size: 0.98rem;
    }

    .site-footer__bottom {
        margin-top: 1.5rem !important;
        padding-top: 1.1rem !important;
        padding-left: 0.55rem;
        padding-right: 0.55rem;
        align-items: flex-start !important;
        text-align: left;
    }

    .site-footer__credit {
        width: 100%;
        margin-left: 0;
        justify-content: flex-end;
    }

    .site-footer__bottom p,
    .site-footer__bottom a {
        font-size: 0.96rem;
        line-height: 1.6;
    }

    .site-footer__bottom a {
        font-weight: 700;
    }

    .card-grid--three,
    .card-grid--four,
    .catalog-card-grid,
    .album-grid,
    .gallery-grid-modern,
    .stat-grid,
    .detail-grid,
    .playlist-card,
    .featured-stage {
        grid-template-columns: 1fr;
    }

    .playlist-card {
        padding: 0.9rem;
    }

    .catalog-filter-pill,
    .catalog-category-head,
    .catalog-featured__meta,
    .catalog-featured__footer,
    .catalog-card__meta,
    .catalog-card__footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .catalog-card {
        grid-template-columns: 1fr;
    }

    .catalog-card__media {
        min-height: 200px;
    }

    .featured-spotlight__body {
        padding: 1.15rem;
    }

    .featured-spotlight__serial {
        width: 54px;
        height: 54px;
        border-radius: 18px;
        font-size: 1.15rem;
    }

    .featured-spotlight__status {
        top: auto;
        left: 1rem;
        right: auto;
        bottom: 5.2rem;
    }

    .featured-spotlight__play {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        justify-content: center;
    }

    .featured-spotlight__meta,
    .featured-spotlight__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .featured-spotlight__stats,
    .album-hero-metrics,
    .featured-note__mini-metrics {
        grid-template-columns: 1fr;
    }

    .album-card-premium__footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .playlist-card iframe {
        min-height: 190px;
    }
}

@media (max-width: 575px) {
    .data-table td {
        grid-template-columns: 1fr;
        gap: 0.28rem;
    }

    .stat-card {
        padding: 1rem;
    }

    .stat-card__value {
        font-size: 1.8rem;
    }
}

.story-card__actions,
.card-inline-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.85rem;
    flex-wrap: wrap;
}

.album-card-premium--interactive {
    display: flex;
    flex-direction: column;
}

.album-card-premium--interactive .album-card-premium__title a,
.playlist-card--interactive .playlist-card__title a {
    color: inherit;
}

.favorite-toggle {
    display: inline-flex;
    align-items: center;
}

.favorite-toggle form {
    margin: 0;
}

.favorite-toggle--inline {
    flex: 1 1 220px;
}

.favorite-toggle__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: 42px;
    padding: 0.7rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.82);
    color: #f8fafc;
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.favorite-toggle__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.55rem;
    min-height: 1.55rem;
    padding: 0 0.3rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: inherit;
    font-size: 0.72rem;
    font-weight: 800;
}

.favorite-toggle__button:hover {
    transform: translateY(-1px);
    border-color: rgba(255, 255, 255, 0.28);
    color: #ffffff;
}

.favorite-toggle__button.is-active {
    background: rgba(232, 93, 79, 0.12);
    border-color: rgba(232, 93, 79, 0.38);
    color: #ff8c7f;
}

.favorite-toggle__button--guest {
    background: rgba(15, 23, 42, 0.66);
}

.favorite-toggle--compact .favorite-toggle__button {
    min-width: 42px;
    min-height: 42px;
    padding: 0.7rem;
}

.favorite-toggle--compact .favorite-toggle__button span {
    display: none;
}

.favorite-toggle--compact .favorite-toggle__button .favorite-toggle__count {
    display: inline-flex;
}
