:root {
    --tvci-page-max: 1380px;
    --tvci-bg: #050d18;
    --tvci-panel: rgba(9, 20, 34, 0.92);
    --tvci-border: rgba(255, 255, 255, 0.12);
    --tvci-text: #f5f1e8;
    --tvci-muted: rgba(245, 241, 232, 0.72);
    --tvci-gold: #f2c95f;
    --tvci-blue: #4fb7ff;
    --tvci-shadow: 0 24px 70px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.tvci-preview-body {
    margin: 0;
    min-height: auto;
    background:
        radial-gradient(circle at 90% 12%, rgba(216, 180, 106, 0.08), transparent 28%),
        linear-gradient(180deg, #14191d 0%, #050d18 100%);
    color: var(--tvci-text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.tvci-page {
    width: 100%;
    max-width: var(--tvci-page-max);
    margin-left: 0;
    margin-right: auto;
    padding: 0;
    color: var(--tvci-text);
}

.tvci-hero,
.tvci-jump-bar,
.tvci-panel,
.tvci-indicator-card,
.tvci-core-card,
.tvci-bottom-cta {
    border: 1px solid var(--tvci-border);
    box-shadow: var(--tvci-shadow);
}

.tvci-hero {
    position: relative;
    min-height: 205px;
    border-radius: 20px;
    overflow: hidden;
    background:
        var(--tvci-hero-image) center right / cover no-repeat,
        linear-gradient(135deg, rgba(13, 28, 44, 0.88));
}

.tvci-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(5, 12, 22, 0.35), transparent 46%),
        radial-gradient(circle at 86% 10%, rgba(242, 201, 95, 0.08), transparent 24%);
    pointer-events: none;
}

.tvci-hero__content {
    position: relative;
    z-index: 2;
    max-width: 840px;
    padding: 34px 38px 32px;
}

.tvci-eyebrow {
    color: var(--tvci-gold);
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 900;
    margin-bottom: 0.45rem;
}

.tvci-hero h1,
.tvci-panel h2,
.tvci-bottom-cta h2 {
    font-family: Georgia, "Times New Roman", serif;
    color: #fff8e8;
    letter-spacing: -0.048em;
}

.tvci-hero h1 {
    margin: 0;
    font-size: clamp(2.15rem, 4.2vw, 4rem);
    line-height: 0.98;
    font-weight: 520;
}

.tvci-hero p {
    margin: 0.85rem 0 0;
    max-width: 760px;
    color: rgba(245, 241, 232, 0.80);
    font-size: 1rem;
    line-height: 1.48;
}

.tvci-jump-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    margin-top: 14px;
    padding: 8px 14px;
    border-radius: 12px;
    background: rgba(9, 20, 34, 0.72);
}

.tvci-jump-bar > span {
    color: rgba(245, 241, 232, 0.78);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.tvci-jump-bar a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 34px;
    padding: 0.45rem 0.9rem;
    border-radius: 9px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(15, 32, 52, 0.72);
    color: rgba(245, 241, 232, 0.84);
    text-decoration: none !important;
    font-size: 0.86rem;
    font-weight: 750;
}

.tvci-jump-bar a:first-of-type {
    border-color: rgba(242, 201, 95, 0.35);
}

.tvci-jump-bar img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.tvci-panel {
    margin-top: 16px;
    padding: 22px;
    border-radius: 18px;
    background:
        radial-gradient(circle at 42% 0%, rgba(79, 183, 255, 0.07), transparent 34%),
        linear-gradient(180deg, rgba(10, 23, 39, 0.92), rgba(4, 10, 18, 0.94));
}

.tvci-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.tvci-title-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tvci-title-row > img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.tvci-panel h2,
.tvci-bottom-cta h2 {
    margin: 0;
    font-size: 1.62rem;
    line-height: 1.1;
    font-weight: 520;
}

.tvci-panel-header p {
    margin: 0.35rem 0 0;
    color: rgba(245, 241, 232, 0.68);
    font-size: 0.94rem;
}

.tvci-badge {
    display: inline-flex;
    align-items: center;
    min-height: 23px;
    padding: 0 0.65rem;
    border-radius: 999px;
    border: 1px solid rgba(242, 201, 95, 0.42);
    color: var(--tvci-gold);
    background: rgba(242, 201, 95, 0.07);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 0.62rem;
    font-weight: 950;
}

.tvci-view-link {
    color: #8cc8ff;
    text-decoration: none !important;
    font-size: 0.86rem;
    font-weight: 850;
    white-space: nowrap;
}

.tvci-indicator-grid {
    display: grid;
    gap: 14px;
}

.tvci-indicator-grid--large {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tvci-indicator-card {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    gap: 14px;
    align-items: flex-start;
    min-height: 142px;
    padding: 16px;
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(15, 32, 52, 0.92), rgba(7, 17, 30, 0.94));
}

.tvci-indicator-card img,
.tvci-core-card img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 10px;
}

.tvci-indicator-card h3,
.tvci-core-card h3 {
    margin: 0;
    color: #fff8e8;
    font-size: 0.98rem;
    line-height: 1.25;
}

.tvci-indicator-card p,
.tvci-core-card p {
    margin: 0.45rem 0 0;
    color: rgba(245, 241, 232, 0.68);
    font-size: 0.86rem;
    line-height: 1.42;
}

.tvci-creator {
    display: block;
    margin-top: 0.55rem;
    color: rgba(245, 241, 232, 0.52);
    font-size: 0.76rem;
}

.tvci-creator strong {
    color: rgba(245, 241, 232, 0.78);
}

.tvci-indicator-card a,
.tvci-core-card a {
    display: inline-flex;
    margin-top: 0.7rem;
    color: #8cc8ff;
    text-decoration: none !important;
    font-size: 0.82rem;
    font-weight: 850;
}

.tvci-core-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.tvci-core-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 14px;
    align-items: flex-start;
    min-height: 190px;
    padding: 16px;
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(15, 32, 52, 0.94), rgba(7, 17, 30, 0.96));
}

.tvci-core-card span {
    display: block;
    color: rgba(245, 241, 232, 0.56);
    font-size: 0.74rem;
    line-height: 1.2;
    margin-top: 2px;
}

.tvci-core-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 0.7rem;
}

.tvci-core-actions a {
    margin-top: 0;
}

.tvci-core-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    margin-top: 14px;
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 10px;
    color: rgba(245, 241, 232, 0.72);
    background: rgba(2, 7, 15, 0.20);
}

.tvci-core-note img {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.tvci-core-note p {
    margin: 0;
    font-size: 0.92rem;
}

.tvci-bottom-cta {
    position: relative;
    overflow: hidden;
    margin-top: 16px;
    min-height: 150px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 24px;
    padding: 28px 34px;
    border-radius: 18px;
    background:
        linear-gradient(90deg, rgba(5, 12, 22, 0.96) 0%, rgba(5, 12, 22, 0.82) 45%, rgba(5, 12, 22, 0.32) 100%),
        var(--tvci-cta-image) center right / cover no-repeat,
        linear-gradient(180deg, rgba(10, 23, 39, 0.92), rgba(4, 10, 18, 0.94));
}

.tvci-bottom-cta h2 {
    font-size: 2rem;
}

.tvci-bottom-cta p {
    margin: 0.45rem 0 0;
    color: rgba(245, 241, 232, 0.72);
}

.tvci-bottom-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.tvci-gold-btn,
.tvci-outline-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 44px;
    border-radius: 9px;
    padding: 0.68rem 1rem;
    text-decoration: none !important;
    font-size: 0.86rem;
    font-weight: 950;
}

.tvci-gold-btn {
    color: #120c02;
    background: linear-gradient(180deg, #ffd96f 0%, #efb535 100%);
}

.tvci-outline-btn {
    color: #fff8e8;
    border: 1px solid rgba(255,255,255,0.20);
    background: rgba(2, 7, 15, 0.32);
}

.tvci-gold-btn img,
.tvci-outline-btn img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

@media (max-width: 1199.98px) {
    .tvci-indicator-grid--large {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .tvci-bottom-cta {
        grid-template-columns: 1fr;
    }

    .tvci-bottom-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .tvci-page {
        padding: 0 12px;
    }

    .tvci-hero {
        border-radius: 18px;
    }

    .tvci-hero__content {
        padding: 28px 22px;
    }

    .tvci-hero h1 {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .tvci-jump-bar,
    .tvci-panel-header,
    .tvci-bottom-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .tvci-jump-bar a {
        width: 100%;
    }

    .tvci-panel {
        padding: 16px;
    }

    .tvci-title-row {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .tvci-indicator-grid--large,
    .tvci-core-grid {
        grid-template-columns: 1fr;
    }

    .tvci-indicator-card,
    .tvci-core-card {
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .tvci-indicator-card img,
    .tvci-core-card img {
        width: 42px;
        height: 42px;
    }

    .tvci-bottom-cta {
        padding: 22px;
    }

    .tvci-bottom-cta h2 {
        font-size: 1.65rem;
    }
}
