@import url('https://fonts.googleapis.com/css2?family=Anton&family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --bg: #030303;
    --bg-2: #090806;

    --sand: #e8cda7;
    --sand-2: #f3ddb8;
    --sand-dark: #b99162;

    --copper: #c96b26;
    --copper-2: #f28a32;
    --copper-dark: #7a3512;

    --silver: #d7d7d7;
    --silver-soft: #a9a9a9;

    --card: rgba(232, 205, 167, .055);
    --card-2: rgba(232, 205, 167, .085);
    --line: rgba(232, 205, 167, .16);
    --line-strong: rgba(242, 138, 50, .48);

    --text: #f5efe5;
    --muted: #b9b0a4;
    --soft: #80776d;

    --radius: 18px;
    --radius-lg: 26px;
    --max: 1380px;
    --shadow: 0 25px 80px rgba(0, 0, 0, .62);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    max-width: 100%;
    min-height: 100vh;
    font-family: Inter, Arial, Helvetica, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 68% 2%, rgba(201, 107, 38, .22), transparent 25%),
        radial-gradient(circle at 12% 18%, rgba(232, 205, 167, .11), transparent 24%),
        radial-gradient(circle at 50% 80%, rgba(122, 53, 18, .16), transparent 34%),
        linear-gradient(180deg, #090806 0%, #030303 100%);
    overflow-x: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .16;
    background-image:
        linear-gradient(rgba(232,205,167,.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(232,205,167,.035) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(to bottom, black, transparent 76%);
    z-index: -2;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: .52;
    background:
        radial-gradient(circle at center, transparent 0%, rgba(0,0,0,.30) 55%, rgba(0,0,0,.90) 100%);
    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font-family: inherit;
}

img {
    display: block;
    max-width: 100%;
}

.site-shell {
    width: min(var(--max), calc(100% - 44px));
    max-width: var(--max);
    margin: 0 auto;
    padding-bottom: 34px;
    overflow: hidden;
}

.main-header {
    position: sticky;
    top: 0;
    z-index: 100;
    min-height: 86px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 16px 6px 14px;
    background:
        linear-gradient(180deg, rgba(3,3,3,.98), rgba(3,3,3,.76), transparent);
    backdrop-filter: blur(14px);
}

.brand {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 205px;
}

.brand-logo {
    width: 205px;
    height: 64px;
    object-fit: contain;
    object-position: left center;
    filter:
        drop-shadow(0 0 18px rgba(201, 107, 38, .20))
        drop-shadow(0 0 30px rgba(232, 205, 167, .08));
}

.brand-text {
    display: inline-flex;
    flex-direction: column;
    line-height: .88;
    letter-spacing: -.04em;
}

.brand-main {
    color: var(--sand);
    font-size: 35px;
    font-weight: 900;
    text-transform: uppercase;
}

.brand-sub {
    margin-top: 8px;
    padding-left: 34px;
    color: var(--silver);
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .54em;
    text-transform: uppercase;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex: 1;
    min-width: 0;
}

.nav a {
    position: relative;
    color: #d8d2c8;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color .22s ease;
}

.nav a:hover,
.nav a.active {
    color: var(--copper-2);
}

.nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    height: 2px;
    background: linear-gradient(90deg, var(--sand), var(--copper-2));
    box-shadow: 0 0 16px rgba(242, 138, 50, .9);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 290px;
    justify-content: flex-end;
}

.socials {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-link {
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    color: var(--silver);
    font-size: 10px;
    font-weight: 900;
    border-radius: 8px;
    border: 1px solid transparent;
    transition: .2s ease;
}

.social-link:hover {
    border-color: var(--line-strong);
    color: var(--copper-2);
    background: rgba(201, 107, 38, .10);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 100%;
    min-height: 48px;
    padding: 0 24px;
    border: 1px solid rgba(242, 138, 50, .24);
    border-radius: 7px;
    background:
        linear-gradient(135deg, var(--sand-2), var(--copper-2) 48%, var(--copper));
    color: #120905;
    box-shadow: 0 16px 38px rgba(201, 107, 38, .25);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .04em;
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 46px rgba(201, 107, 38, .40);
}

.btn-outline {
    color: var(--sand);
    background: rgba(0,0,0,.35);
    border-color: rgba(232,205,167,.25);
    box-shadow: none;
}

.btn-outline:hover {
    border-color: var(--line-strong);
    background: rgba(201, 107, 38, .10);
}

.btn-dark {
    color: var(--sand);
    background: rgba(255,255,255,.045);
    border-color: rgba(232,205,167,.20);
    box-shadow: none;
}

.icon {
    display: inline-grid;
    place-items: center;
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.hero {
    position: relative;
    min-height: 680px;
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    align-items: center;
    gap: 34px;
    padding: 38px 28px 36px;
    overflow: hidden;
    border-radius: 0 0 26px 26px;
    background: #050403;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: block;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: .95;
    transform: scale(1.001);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3,3,3,1) 0%, rgba(3,3,3,.95) 22%, rgba(3,3,3,.70) 42%, rgba(3,3,3,.18) 100%),
        linear-gradient(180deg, rgba(3,3,3,.10) 0%, rgba(3,3,3,.16) 48%, rgba(3,3,3,.88) 100%),
        radial-gradient(circle at 72% 48%, rgba(201, 107, 38, .18), transparent 34%);
    z-index: 1;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 230px;
    background: linear-gradient(180deg, transparent, var(--bg));
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 620px;
    min-width: 0;
    padding-top: 16px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--copper-2);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.hero-kicker::before {
    content: "";
    width: 28px;
    height: 2px;
    background: linear-gradient(90deg, var(--sand), var(--copper-2));
    box-shadow: 0 0 18px rgba(242, 138, 50, .86);
}

.hero-title {
    max-width: 100%;
    font-family: Anton, Impact, sans-serif;
    font-weight: 400;
    font-size: clamp(54px, 6.4vw, 95px);
    line-height: .94;
    letter-spacing: .015em;
    text-transform: uppercase;
    color: var(--sand-2);
    text-shadow: 0 10px 36px rgba(0,0,0,.68);
    overflow-wrap: break-word;
    word-break: normal;
}

.hero-title span {
    display: block;
    max-width: 100%;
    color: var(--copper-2);
    text-shadow:
        0 0 22px rgba(201, 107, 38, .26),
        0 10px 36px rgba(0,0,0,.68);
    overflow-wrap: break-word;
}

.hero-description {
    max-width: 430px;
    margin-top: 24px;
    color: #d2c6b7;
    font-size: 15px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
    width: 100%;
    max-width: 100%;
}

.hero-visual-placeholder {
    position: relative;
    z-index: 2;
    min-height: 430px;
}

.panel {
    position: relative;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(232,205,167,.060), rgba(232,205,167,.022)),
        rgba(0,0,0,.36);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.panel::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(135deg, rgba(201,107,38,.11), transparent 22%),
        radial-gradient(circle at 0 0, rgba(232,205,167,.12), transparent 22%);
    opacity: .86;
}

.featured {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: .55fr 1fr;
    gap: 26px;
    padding: 18px;
    margin-top: -16px;
}

.featured-info {
    position: relative;
    z-index: 1;
    min-width: 0;
    padding: 26px 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.section-label {
    color: var(--copper-2);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .14em;
}

.featured-title,
.section-title {
    font-family: Anton, Impact, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: .018em;
    color: var(--sand-2);
    overflow-wrap: break-word;
}

.featured-title {
    margin-top: 14px;
    font-size: clamp(34px, 3.6vw, 54px);
}

.featured-text {
    margin-top: 18px;
    color: var(--muted);
    line-height: 1.62;
    font-size: 14px;
    max-width: 440px;
}

.featured-list {
    display: grid;
    gap: 13px;
    margin: 24px 0 26px;
    list-style: none;
}

.featured-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #d5c9ba;
    font-size: 13px;
    line-height: 1.5;
}

.featured-list li::before {
    content: "✓";
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid var(--copper-2);
    color: var(--sand);
    font-size: 11px;
    font-weight: 900;
    box-shadow: 0 0 18px rgba(201, 107, 38, .35);
}

.featured-list strong {
    color: var(--copper-2);
}

.video-card {
    position: relative;
    z-index: 1;
    display: block;
    min-height: 340px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(232,205,167,.16);
    background:
        linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.86)),
        var(--featured-image) center / cover no-repeat,
        radial-gradient(circle at 50% 12%, rgba(201, 107, 38, .34), transparent 32%),
        #111;
}

.play-main {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 88px;
    height: 88px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    border: 1px solid rgba(232,205,167,.26);
    background: rgba(232,205,167,.14);
    backdrop-filter: blur(10px);
    color: var(--sand-2);
    font-size: 36px;
    cursor: pointer;
    transition: transform .18s ease, background .18s ease;
}

.play-main:hover {
    transform: scale(1.06);
    background: rgba(201, 107, 38, .38);
}

.player-bar {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 14px;
    display: grid;
    grid-template-columns: auto auto 1fr auto;
    gap: 12px;
    align-items: center;
    color: white;
    font-size: 12px;
}

.fake-progress {
    position: relative;
    height: 4px;
    border-radius: 999px;
    background: rgba(255,255,255,.22);
    overflow: hidden;
}

.fake-progress span {
    position: absolute;
    inset: 0 auto 0 0;
    width: 42%;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--sand), var(--copper-2));
    box-shadow: 0 0 18px rgba(242,138,50,.8);
}

.player-icons {
    display: flex;
    gap: 9px;
    opacity: .88;
    font-size: 13px;
}

.block {
    margin-top: 12px;
    padding: 18px 24px;
}

.block > * {
    position: relative;
    z-index: 1;
}

.block-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.section-title {
    font-size: clamp(28px, 3vw, 42px);
}

.see-all {
    color: var(--copper-2);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.clips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.clip-card {
    display: block;
    overflow: hidden;
}

.clip-card:hover .clip-thumb {
    transform: translateY(-3px);
    border-color: rgba(242, 138, 50, .68);
    box-shadow: 0 18px 36px rgba(0, 0, 0, .38);
}

.clip-thumb {
    position: relative;
    min-height: 150px;
    border-radius: 10px;
    border: 1px solid var(--line-strong);
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.90)),
        var(--clip-image) center / cover no-repeat,
        radial-gradient(circle at 25% 25%, rgba(201,107,38,.44), transparent 35%),
        #17130f;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.clip-duration {
    position: absolute;
    right: 8px;
    top: 8px;
    padding: 4px 7px;
    border-radius: 6px;
    background: rgba(0,0,0,.74);
    color: var(--sand-2);
    font-size: 11px;
    font-weight: 900;
}

.clip-play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(232, 205, 167, .16);
    border: 1px solid rgba(232, 205, 167, .26);
    color: #f3ddb8;
    font-size: 18px;
    backdrop-filter: blur(8px);
}

.clip-title {
    margin-top: 10px;
    color: var(--sand-2);
    font-family: Anton, Impact, sans-serif;
    font-size: 20px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .025em;
}

.clip-views {
    margin-top: 5px;
    color: var(--soft);
    font-size: 12px;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.topic-card {
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(232,205,167,.060), rgba(232,205,167,.018));
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.topic-card:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);
    background: rgba(201,107,38,.065);
}

.topic-image-wrap {
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 4px;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.topic-image {
    width: 190px;
    height: 190px;
    object-fit: contain;
    object-position: center center;
    display: block;
    filter:
        drop-shadow(0 0 18px rgba(242, 138, 50, .24))
        drop-shadow(0 12px 26px rgba(0, 0, 0, .62));
}

.topic-card h3 {
    max-width: 220px;
    margin: 0 auto;
    font-family: Anton, Impact, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.05;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .035em;
    color: var(--sand-2);
}

.topic-card p {
    margin-top: 0;
    color: var(--muted);
    font-size: 12px;
    text-align: center;
}

.community {
    display: grid;
    grid-template-columns: .95fr 1fr .62fr;
    gap: 12px;
    margin-top: 12px;
}

.community-card {
    min-height: 175px;
    min-width: 0;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(201,107,38,.12), rgba(232,205,167,.025)),
        rgba(255,255,255,.030);
    overflow: hidden;
    position: relative;
}

.community-card::after {
    content: "";
    position: absolute;
    inset: auto -20px -50px auto;
    width: 220px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,107,38,.22), transparent 70%);
    pointer-events: none;
}

.community-card h2 {
    position: relative;
    z-index: 1;
    color: var(--sand-2);
    font-family: Anton, Impact, sans-serif;
    font-size: 34px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1;
}

.community-card p {
    position: relative;
    z-index: 1;
    margin-top: 12px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
    max-width: 360px;
}

.community-card .btn {
    position: relative;
    z-index: 1;
    margin-top: 20px;
    min-height: 42px;
}

.question-box label {
    display: block;
    color: var(--copper-2);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.question-box h3 {
    color: var(--sand-2);
    font-size: 23px;
    margin-bottom: 16px;
}

.answer-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.answer-row input {
    width: 100%;
    min-height: 54px;
    padding: 0 18px;
    border: 1px solid rgba(232,205,167,.10);
    outline: none;
    border-radius: 8px;
    color: white;
    background: rgba(255,255,255,.06);
}

.answer-row input:focus {
    border-color: var(--line-strong);
    box-shadow: 0 0 0 4px rgba(201,107,38,.12);
}

.discord-card {
    background:
        linear-gradient(135deg, rgba(232,205,167,.13), rgba(201,107,38,.10)),
        rgba(255,255,255,.030);
}

.discord-mark {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    margin-bottom: 14px;
    color: var(--sand-2);
    background: rgba(201,107,38,.16);
    font-size: 28px;
    border: 1px solid rgba(232,205,167,.16);
}

.hosts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.host-card {
    display: grid;
    grid-template-columns: 118px 1fr;
    min-height: 145px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(232,205,167,.04);
    transition: transform .18s ease, border-color .18s ease;
}

.host-card:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);
}

.host-image {
    min-height: 145px;
    background:
        linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.62)),
        var(--host-image) center / cover no-repeat,
        radial-gradient(circle at 55% 12%, rgba(201,107,38,.38), transparent 40%),
        #19140f;
}

.host-info {
    min-width: 0;
    padding: 22px 18px;
}

.host-info h3 {
    color: var(--copper-2);
    font-family: Anton, Impact, sans-serif;
    font-size: 30px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 1;
}

.host-role {
    margin-top: 5px;
    color: var(--sand-2);
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.host-desc {
    margin-top: 10px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

.host-socials {
    display: flex;
    gap: 8px;
    margin-top: 15px;
}

.host-socials a {
    color: #d7c6ad;
    font-size: 10px;
    font-weight: 900;
}

.live {
    display: grid;
    grid-template-columns: .75fr 1.1fr .7fr;
    gap: 22px;
    align-items: center;
    padding: 26px 34px;
    min-height: 170px;
    margin-top: 12px;
    background:
        linear-gradient(90deg, rgba(201,107,38,.12), transparent 38%, rgba(232,205,167,.10)),
        rgba(255,255,255,.032);
}

.live > * {
    position: relative;
    z-index: 1;
}

.live h2 {
    margin-top: 6px;
    color: var(--sand-2);
    font-family: Anton, Impact, sans-serif;
    font-size: 48px;
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
}

.live-date {
    margin-top: 8px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.45;
    text-transform: uppercase;
}

.countdown {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 20px 18px;
    border-radius: 14px;
    border: 1px solid rgba(232,205,167,.12);
    background: rgba(0,0,0,.25);
}

.time-box {
    position: relative;
    text-align: center;
}

.time-box:not(:last-child)::after {
    content: "•";
    position: absolute;
    right: -6px;
    top: 16px;
    color: var(--copper-2);
    font-size: 30px;
    line-height: 1;
}

.time-box strong {
    display: block;
    color: var(--sand-2);
    font-family: Anton, Impact, sans-serif;
    font-size: 55px;
    font-weight: 400;
    line-height: .9;
}

.time-box span {
    display: block;
    margin-top: 12px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.live-image {
    min-height: 130px;
    border-radius: 14px;
    background:
        linear-gradient(90deg, rgba(0,0,0,.42), rgba(0,0,0,.12)),
        var(--next-live-image) center / cover no-repeat,
        radial-gradient(circle at center, rgba(201,107,38,.36), transparent 45%),
        #14100d;
}

.footer {
    display: grid;
    grid-template-columns: 1.25fr .72fr .72fr .72fr .9fr;
    gap: 30px;
    padding: 42px 34px 30px;
    margin-top: 12px;
    border-top: 1px solid var(--line-strong);
    background: linear-gradient(180deg, rgba(201,107,38,.060), transparent 28%);
}

.footer-brand {
    max-width: 280px;
}

.footer .brand {
    min-width: 0;
}

.footer .brand-logo {
    width: 220px;
    height: 76px;
}

.footer p {
    margin-top: 18px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.footer h4 {
    margin-bottom: 14px;
    color: var(--sand-2);
    font-size: 12px;
    font-weight: 950;
    text-transform: uppercase;
    letter-spacing: .11em;
}

.footer ul {
    list-style: none;
    display: grid;
    gap: 9px;
}

.footer a,
.footer li {
    color: var(--muted);
    font-size: 13px;
    transition: color .18s ease;
}

.footer a:hover {
    color: var(--copper-2);
}

.copyright {
    grid-column: 1 / -1;
    padding-top: 24px;
    margin-top: 8px;
    border-top: 1px solid rgba(232,205,167,.08);
    color: var(--soft);
    font-size: 12px;
    text-align: right;
}

@media (max-width: 1180px) {
    .nav {
        gap: 18px;
    }

    .header-actions {
        min-width: 230px;
    }

    .clips-grid,
    .hosts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .topics-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .featured,
    .community,
    .live {
        grid-template-columns: 1fr;
    }

    .video-card {
        min-height: 410px;
    }
}

@media (max-width: 920px) {
    .site-shell {
        width: 100%;
        max-width: 100%;
        padding: 0 12px 34px;
        overflow: hidden;
    }

    .main-header {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        align-items: center;
        gap: 14px 10px;
        min-height: auto;
        padding: 14px 0 10px;
        overflow: hidden;
    }

    .brand {
        min-width: 0;
        max-width: 100%;
    }

    .brand-logo {
        width: 178px;
        height: 58px;
    }

    .header-actions {
        min-width: 0;
        justify-self: end;
        gap: 0;
    }

    .header-actions .btn {
        min-height: 44px;
        max-width: 190px;
        padding: 0 16px;
        font-size: 10px;
        line-height: 1.1;
        white-space: normal;
    }

    .socials {
        display: none;
    }

    .nav {
        order: 3;
        grid-column: 1 / -1;
        width: 100%;
        max-width: 100%;
        justify-content: flex-start;
        gap: 30px;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 8px 0 13px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .nav::-webkit-scrollbar {
        display: none;
    }

    .nav a {
        flex: 0 0 auto;
        font-size: 13px;
    }

    .hero {
        grid-template-columns: 1fr;
        min-height: 720px;
        align-items: end;
        padding: 300px 22px 34px;
        border-radius: 0 0 24px 24px;
    }

    .hero-media img {
        object-position: center top;
    }

    .hero::before {
        background:
            linear-gradient(180deg, rgba(3,3,3,.10) 0%, rgba(3,3,3,.40) 44%, rgba(3,3,3,.94) 84%, rgba(3,3,3,1) 100%),
            radial-gradient(circle at 64% 25%, rgba(201, 107, 38, .18), transparent 36%);
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        padding-top: 0;
    }

    .hero-kicker {
        font-size: 11px;
        letter-spacing: .12em;
    }

    .hero-title {
        width: 100%;
        max-width: 100%;
        font-size: clamp(43px, 12.2vw, 58px);
        line-height: .92;
        letter-spacing: .005em;
        overflow-wrap: break-word;
        word-break: normal;
    }

    .hero-title span {
        max-width: 100%;
        overflow-wrap: break-word;
    }

    .hero-description {
        max-width: 100%;
        font-size: 15px;
    }

    .hero-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hero-actions .btn {
        width: 100%;
        min-width: 0;
        min-height: 58px;
        padding: 0 18px;
        font-size: 13px;
        white-space: normal;
    }

    .hero-visual-placeholder {
        display: none;
    }

    .featured {
        margin-top: -18px;
    }

    .topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .topic-card {
        min-height: 220px;
    }

    .footer {
        grid-template-columns: repeat(2, 1fr);
    }

    .copyright {
        text-align: left;
    }
}

@media (max-width: 640px) {
    .site-shell {
        padding-left: 12px;
        padding-right: 12px;
    }

    .main-header {
        gap: 12px 8px;
        padding-top: 14px;
    }

    .brand-logo {
        width: 150px;
        height: 52px;
    }

    .header-actions .btn {
        min-height: 42px;
        max-width: 170px;
        padding: 0 12px;
        font-size: 9.5px;
        letter-spacing: .02em;
    }

    .nav {
        gap: 26px;
        padding-top: 10px;
        padding-bottom: 13px;
    }

    .nav a {
        font-size: 12.5px;
    }

    .hero {
        min-height: 715px;
        padding: 285px 20px 34px;
    }

    .hero-title {
        font-size: clamp(40px, 11.8vw, 50px);
        line-height: .93;
        letter-spacing: 0;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.65;
    }

    .hero-actions .btn {
        min-height: 56px;
        font-size: 12px;
        padding: 0 14px;
    }

    .featured,
    .block {
        padding: 14px;
    }

    .featured-info {
        padding: 20px 12px;
    }

    .featured-title {
        font-size: clamp(34px, 11vw, 48px);
    }

    .video-card {
        min-height: 250px;
    }

    .play-main {
        width: 68px;
        height: 68px;
        font-size: 28px;
    }

    .player-bar {
        grid-template-columns: auto 1fr;
    }

    .player-bar span:nth-child(2),
    .player-icons {
        display: none;
    }

    .clips-grid,
    .topics-grid,
    .hosts-grid {
        grid-template-columns: 1fr;
    }

    .topic-card {
        min-height: 240px;
    }

    .topic-image-wrap {
        width: 170px;
        height: 170px;
    }

    .topic-image {
        width: 220px;
        height: 220px;
    }

    .topic-card h3 {
        font-size: 24px;
        max-width: 280px;
    }

    .community {
        grid-template-columns: 1fr;
    }

    .answer-row {
        grid-template-columns: 1fr;
    }

    .answer-row .btn {
        width: 100%;
        white-space: normal;
    }

    .host-card {
        grid-template-columns: 105px 1fr;
    }

    .live {
        padding: 22px 18px;
    }

    .countdown {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px 0;
    }

    .time-box:nth-child(2)::after {
        display: none;
    }

    .footer {
        grid-template-columns: 1fr;
        padding: 32px 18px;
    }

    .footer .brand-logo {
        width: 190px;
        height: 70px;
    }
}

@media (max-width: 430px) {
    .brand-logo {
        width: 142px;
        height: 48px;
    }

    .header-actions .btn {
        max-width: 158px;
        min-height: 42px;
        padding: 0 10px;
        font-size: 9px;
    }

    .hero {
        min-height: 700px;
        padding: 270px 18px 32px;
    }

    .hero-title {
        font-size: clamp(38px, 11vw, 46px);
    }

    .hero-description {
        font-size: 13.5px;
    }

    .hero-actions .btn {
        min-height: 54px;
        font-size: 11.5px;
    }
}

@media (max-width: 380px) {
    .brand-logo {
        width: 132px;
    }

    .header-actions .btn {
        max-width: 145px;
        font-size: 8.5px;
    }

    .hero-title {
        font-size: 37px;
    }
}

/* =====================================================
   AJUSTE FINAL - ICONOS ¿DE QUÉ HABLAMOS?
   Pegar al final de assets/css/nomadas.css
===================================================== */

#temas .topic-card {
    min-height: 250px !important;
    padding: 18px 14px 22px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    overflow: visible !important;
}

#temas .topic-image-wrap {
    width: 185px !important;
    height: 185px !important;
    margin: 0 auto 12px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
}

#temas .topic-image {
    width: 220px !important;
    height: 220px !important;
    max-width: none !important;
    object-fit: contain !important;
    object-position: center center !important;
    display: block !important;
    filter:
        drop-shadow(0 0 22px rgba(242, 138, 50, .26))
        drop-shadow(0 16px 30px rgba(0, 0, 0, .68)) !important;
}

#temas .topic-card h3 {
    max-width: 230px !important;
    margin: 0 auto !important;
    font-size: 21px !important;
    line-height: 1.08 !important;
    text-align: center !important;
}

#temas .topic-card p {
    margin-top: 4px !important;
    text-align: center !important;
}

/* Tablet */
@media (max-width: 920px) {
    #temas .topic-card {
        min-height: 260px !important;
    }

    #temas .topic-image-wrap {
        width: 190px !important;
        height: 190px !important;
    }

    #temas .topic-image {
        width: 230px !important;
        height: 230px !important;
    }
}

/* Móvil */
@media (max-width: 640px) {
    #temas .topic-card {
        min-height: 285px !important;
    }

    #temas .topic-image-wrap {
        width: 210px !important;
        height: 210px !important;
    }

    #temas .topic-image {
        width: 255px !important;
        height: 255px !important;
    }

    #temas .topic-card h3 {
        font-size: 24px !important;
        max-width: 280px !important;
    }
}
/* =====================================================
   FORMULARIOS COMUNIDAD / HISTORIAS
===================================================== */

.front-alerts {
    display: grid;
    gap: 8px;
    margin: 12px 0;
}

.front-alert {
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 12px;
    line-height: 1.4;
}

.front-alert.success {
    color: #72e08a;
    border: 1px solid rgba(114, 224, 138, .24);
    background: rgba(114, 224, 138, .08);
}

.front-alert.error {
    color: #ffd1d1;
    border: 1px solid rgba(255, 90, 90, .28);
    background: rgba(255, 90, 90, .10);
}

.answer-form,
.story-form {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 10px;
}

.answer-form input,
.answer-form textarea,
.story-form input,
.story-form textarea {
    width: 100%;
    border: 1px solid rgba(232,205,167,.12);
    outline: none;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    color: var(--text);
    font-size: 13px;
    padding: 13px 14px;
}

.answer-form textarea,
.story-form textarea {
    min-height: 104px;
    resize: vertical;
    line-height: 1.5;
}

.answer-form input:focus,
.answer-form textarea:focus,
.story-form input:focus,
.story-form textarea:focus {
    border-color: var(--line-strong);
    box-shadow: 0 0 0 4px rgba(201,107,38,.12);
}

.hp-field {
    position: absolute !important;
    left: -99999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.story-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.story-modal:target {
    display: flex;
}

.story-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .78);
    backdrop-filter: blur(10px);
}

.story-modal-card {
    position: relative;
    z-index: 2;
    width: min(620px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    padding: 28px;
    border-radius: 22px;
    border: 1px solid rgba(232,205,167,.16);
    background:
        linear-gradient(180deg, rgba(232,205,167,.075), rgba(232,205,167,.025)),
        #080604;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .76);
}

.story-modal-card h2 {
    margin-top: 12px;
    color: var(--sand-2);
    font-family: Anton, Impact, sans-serif;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
}

.story-modal-card p {
    margin: 14px 0 20px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.story-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--sand-2);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(232,205,167,.12);
    font-size: 28px;
    line-height: 1;
}

@media (max-width: 640px) {
    .story-modal-card {
        padding: 22px;
    }

    .answer-form .btn,
    .story-form .btn {
        width: 100%;
        white-space: normal;
    }
}
/* =====================================================
   FORMULARIOS COMUNIDAD / HISTORIAS
===================================================== */

.front-alerts {
    display: grid;
    gap: 8px;
    margin: 12px 0;
}

.front-alert {
    padding: 10px 12px;
    border-radius: 10px;
    font-size: 12px;
    line-height: 1.4;
}

.front-alert.success {
    color: #72e08a;
    border: 1px solid rgba(114, 224, 138, .24);
    background: rgba(114, 224, 138, .08);
}

.front-alert.error {
    color: #ffd1d1;
    border: 1px solid rgba(255, 90, 90, .28);
    background: rgba(255, 90, 90, .10);
}

.answer-form,
.story-form {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 10px;
}

.answer-form input,
.answer-form textarea,
.story-form input,
.story-form textarea {
    width: 100%;
    border: 1px solid rgba(232,205,167,.12);
    outline: none;
    border-radius: 10px;
    background: rgba(255,255,255,.06);
    color: var(--text);
    font-size: 13px;
    padding: 13px 14px;
}

.answer-form textarea,
.story-form textarea {
    min-height: 104px;
    resize: vertical;
    line-height: 1.5;
}

.answer-form input:focus,
.answer-form textarea:focus,
.story-form input:focus,
.story-form textarea:focus {
    border-color: var(--line-strong);
    box-shadow: 0 0 0 4px rgba(201,107,38,.12);
}

.hp-field {
    position: absolute !important;
    left: -99999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.story-modal {
    position: fixed;
    inset: 0;
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.story-modal:target {
    display: flex;
}

.story-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .78);
    backdrop-filter: blur(10px);
}

.story-modal-card {
    position: relative;
    z-index: 2;
    width: min(620px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    padding: 28px;
    border-radius: 22px;
    border: 1px solid rgba(232,205,167,.16);
    background:
        linear-gradient(180deg, rgba(232,205,167,.075), rgba(232,205,167,.025)),
        #080604;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .76);
}

.story-modal-card h2 {
    margin-top: 12px;
    color: var(--sand-2);
    font-family: Anton, Impact, sans-serif;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1;
    font-weight: 400;
    text-transform: uppercase;
}

.story-modal-card p {
    margin: 14px 0 20px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
}

.story-modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    color: var(--sand-2);
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(232,205,167,.12);
    font-size: 28px;
    line-height: 1;
}

@media (max-width: 640px) {
    .story-modal-card {
        padding: 22px;
    }

    .answer-form .btn,
    .story-form .btn {
        width: 100%;
        white-space: normal;
    }
}
/* =====================================================
   SOMOS NÓMADAS - IMÁGENES REALES DESDE ADMIN
===================================================== */

.host-image {
    position: relative !important;
    min-height: 145px !important;
    overflow: hidden !important;
    background:
        radial-gradient(circle at 55% 12%, rgba(201,107,38,.38), transparent 40%),
        #19140f !important;
}

.host-image img {
    width: 100% !important;
    height: 100% !important;
    min-height: 145px !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center center !important;
}

@media (max-width: 640px) {
    .host-image {
        min-height: 155px !important;
    }

    .host-image img {
        min-height: 155px !important;
    }
}
/* =====================================================
   CORRECCIÓN FINAL - EPISODIO DESTACADO / VIDEO
   Pegar al final de assets/css/nomadas.css
===================================================== */

.featured.panel {
    display: grid !important;
    grid-template-columns: minmax(320px, 0.48fr) minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 34px !important;
    padding: 28px !important;
    min-height: auto !important;
}

.featured-info {
    padding: 22px 18px !important;
}

.featured-media-card {
    position: relative !important;
    z-index: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 16 / 9 !important;
    min-height: 420px !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    border: 1px solid rgba(232, 205, 167, .18) !important;
    background: #000 !important;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .46) !important;
}

.featured-embed {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-width: 100% !important;
    min-height: 100% !important;
    border: 0 !important;
    background: #000 !important;
}

.featured-cover-link {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    overflow: hidden !important;
}

.featured-cover-img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center center !important;
}

.featured-cover-link::after {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background:
        linear-gradient(180deg, rgba(0,0,0,.05), rgba(0,0,0,.74)),
        radial-gradient(circle at 50% 35%, transparent 0%, rgba(0,0,0,.24) 70%, rgba(0,0,0,.70) 100%) !important;
    pointer-events: none !important;
}

.featured-play-button {
    position: absolute !important;
    inset: 0 !important;
    z-index: 3 !important;
    margin: auto !important;
    width: 88px !important;
    height: 88px !important;
    display: grid !important;
    place-items: center !important;
    border-radius: 999px !important;
    color: var(--sand-2) !important;
    background: rgba(232,205,167,.14) !important;
    border: 1px solid rgba(232,205,167,.26) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow:
        0 0 30px rgba(242,138,50,.22),
        0 18px 40px rgba(0,0,0,.42) !important;
}

.featured-duration {
    position: absolute !important;
    left: 18px !important;
    bottom: 16px !important;
    z-index: 3 !important;
    padding: 7px 10px !important;
    border-radius: 8px !important;
    color: var(--sand-2) !important;
    background: rgba(0,0,0,.72) !important;
    border: 1px solid rgba(232,205,167,.14) !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

.video-card,
.video-card .play-main,
.player-bar {
    display: none !important;
}

/* Tablet */
@media (max-width: 1180px) {
    .featured.panel {
        grid-template-columns: 1fr !important;
        gap: 22px !important;
    }

    .featured-media-card {
        min-height: 390px !important;
    }
}

/* Móvil */
@media (max-width: 640px) {
    .featured.panel {
        padding: 16px !important;
        gap: 16px !important;
    }

    .featured-info {
        padding: 18px 10px !important;
    }

    .featured-media-card {
        min-height: auto !important;
        aspect-ratio: 16 / 9 !important;
        border-radius: 12px !important;
    }

    .featured-play-button {
        width: 64px !important;
        height: 64px !important;
    }

    .featured-play-button svg {
        width: 26px !important;
        height: 26px !important;
    }

    .featured-duration {
        left: 12px !important;
        bottom: 12px !important;
        font-size: 11px !important;
    }
}