/* ============================================================
   DIGITAL SAN LUIS - STYLES
   Medio de comunicación líder de San Luis, Argentina
   Paleta: Rojo #d3403d | Negro | Blanco
   Fuentes: Montserrat + Times New Roman (Georgia fallback)
   ============================================================ */

/* ========== CSS VARIABLES ========== */
:root {
    /* Colors */
    --red: #d3403d;
    --red-dark: #a71717;
    --red-darker: #740607;
    --red-light: #e85a5a;
    --red-soft: #ff686a;
    --grad-3: linear-gradient(90deg, #740607, #a71717, #e85a5a);
    --grad-2: linear-gradient(90deg, #ca3b3c, #ff686a);
    --black: #0a0a0a;
    --black-soft: #1a1a1a;
    --gray-900: #222;
    --gray-800: #333;
    --gray-700: #444;
    --gray-600: #555;
    --gray-500: #777;
    --gray-400: #999;
    --gray-300: #bbb;
    --gray-200: #ddd;
    --gray-100: #eee;
    --gray-50: #f5f5f5;
    --white: #ffffff;

    /* Fonts */
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Times New Roman', Georgia, 'Noto Serif', serif;

    /* Sizes */
    --container: 1280px;
    --header-h: 64px;
    --top-bar-h: 36px;
    --radius: 6px;
    --radius-lg: 10px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== RESET ========== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-900);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s var(--ease);
}

ul, ol {
    list-style: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
    color: inherit;
}

input {
    font-family: inherit;
}

/* ========== UTILITY ========== */
.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 20px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
}

/* ========== TOP BAR ========== */
.top-bar {
    background: var(--black);
    height: var(--top-bar-h);
    font-size: 12px;
    color: var(--gray-400);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-bar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.top-bar__links {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar__links a {
    color: var(--gray-400);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.top-bar__links a:hover {
    color: var(--white);
}

.top-bar__social {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.top-bar__social a {
    color: var(--gray-500);
    display: flex;
    transition: color 0.2s;
}

.top-bar__social a:hover {
    color: var(--red-light);
}

/* ========== HEADER ========== */
.header {
    background: var(--black);
    height: var(--header-h);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--red);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.header__logo img {
    height: 40px;
    width: auto;
}

/* Navigation */
.header__nav {
    display: none;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav__link {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--gray-300);
    border-radius: var(--radius);
    transition: all 0.2s var(--ease);
    white-space: nowrap;
}

.nav__link:hover,
.nav__link.active {
    color: var(--white);
    background: rgba(255,255,255,0.08);
}

.nav__link.active {
    color: var(--red-light);
}

/* Dropdown */
.nav__dropdown {
    position: relative;
}

.nav__dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: var(--black-soft);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s var(--ease);
    box-shadow: var(--shadow-lg);
    z-index: 100;
}

.nav__dropdown:hover .nav__dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav__dropdown-menu a {
    display: block;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
    color: var(--gray-300);
    transition: all 0.15s;
}

.nav__dropdown-menu a:hover {
    color: var(--white);
    background: rgba(255,255,255,0.05);
    padding-left: 24px;
}

/* Header actions */
.header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

/* LIVE button */
.btn-live {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--red);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    transition: background 0.2s;
}

.btn-live:hover {
    background: var(--red-dark);
}

.btn-live__dot {
    width: 8px;
    height: 8px;
    background: var(--white);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.header__search-btn {
    color: var(--gray-400);
    padding: 6px;
    transition: color 0.2s;
}

.header__search-btn:hover {
    color: var(--white);
}

/* Hamburger */
.header__menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 6px;
}

.header__menu-btn span {
    width: 22px;
    height: 2px;
    background: var(--gray-300);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

/* Search overlay */
.search-overlay {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black-soft);
    padding: 20px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s var(--ease);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.search-overlay.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-form {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-form__input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    color: var(--white);
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
}

.search-form__input::placeholder {
    color: var(--gray-500);
}

.search-form__input:focus {
    border-color: var(--red);
}

.search-form__btn {
    color: var(--white);
    padding: 10px;
}

.search-form__close {
    color: var(--gray-400);
    font-size: 28px;
    padding: 4px 8px;
    line-height: 1;
}

.search-form__close:hover {
    color: var(--white);
}

/* ========== MOBILE NAV ========== */
.mobile-nav {
    position: fixed;
    top: 0;
    left: -320px;
    width: 300px;
    height: 100vh;
    background: var(--black);
    z-index: 2000;
    transition: left 0.35s var(--ease);
    overflow-y: auto;
    padding: 20px;
}

.mobile-nav.active {
    left: 0;
}

.mobile-nav__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav__close {
    color: var(--gray-400);
    font-size: 28px;
}

.mobile-nav__list a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 0;
    color: var(--gray-300);
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.2s;
}

.mobile-nav__list a:hover {
    color: var(--red-light);
}

.mobile-nav__divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    margin: 12px 0;
}

.mobile-nav__overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s var(--ease);
}

.mobile-nav__overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========== BREAKING NEWS TICKER ========== */
.ticker {
    background: var(--red);
    overflow: hidden;
    height: 40px;
}

.ticker__inner {
    display: flex;
    align-items: center;
    height: 100%;
}

.ticker__label {
    background: var(--red-darker);
    color: var(--white);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 4px 14px;
    white-space: nowrap;
    flex-shrink: 0;
    border-radius: 3px;
    margin-right: 16px;
}

.ticker__track {
    overflow: hidden;
    flex: 1;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.ticker__content {
    display: flex;
    align-items: center;
    gap: 20px;
    animation: ticker-scroll 40s linear infinite;
    white-space: nowrap;
}

.ticker__item a {
    color: var(--white);
    font-size: 13px;
    font-weight: 500;
}

.ticker__item a:hover {
    text-decoration: underline;
}

.ticker__separator {
    color: rgba(255,255,255,0.4);
    font-weight: 300;
}

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

/* ========== TAGS ========== */
.tag {
    display: inline-block;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 3px;
    color: var(--white);
    position: absolute;
    bottom: 12px;
    left: 12px;
    z-index: 2;
}

.tag--red {
    background: var(--red);
}

.tag--sm {
    font-size: 9px;
    padding: 3px 8px;
    bottom: 8px;
    left: 8px;
    background: var(--red);
}

/* ========== HERO SECTION ========== */
.hero {
    padding: 24px 0 0;
    background: var(--white);
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* Main article */
.hero__main-link {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-md);
    transition: box-shadow 0.3s var(--ease);
}

.hero__main-link:hover {
    box-shadow: var(--shadow-lg);
}

.hero__main-img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.hero__main-img img,
.hero__main-img .placeholder-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__main-content {
    padding: 20px;
}

.hero__main-title {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--black);
    margin-bottom: 10px;
    transition: color 0.2s;
}

.hero__main-link:hover .hero__main-title {
    color: var(--red);
}

.hero__main-excerpt {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero__meta {
    font-size: 12px;
    color: var(--gray-500);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Secondary articles */
.hero__sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hero__secondary a {
    display: flex;
    flex-direction: column;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s;
    height: 100%;
}

.hero__secondary a:hover {
    box-shadow: var(--shadow-md);
}

.hero__secondary-img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.hero__secondary-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__secondary-content {
    padding: 10px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.hero__secondary-content .tag {
    position: static;
    margin-bottom: 6px;
    align-self: flex-start;
    font-size: 9px;
    padding: 2px 7px;
}

.hero__secondary-title {
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
    transition: color 0.2s;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero__secondary a:hover .hero__secondary-title {
    color: var(--red);
}

.hero__secondary time {
    display: block;
    font-size: 11px;
    color: var(--gray-500);
    margin-top: auto;
    padding-top: 6px;
}

/* ========== PLACEHOLDER IMAGES ========== */
.placeholder-img {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 13px;
    font-weight: 500;
    width: 100%;
    height: 100%;
    text-align: center;
    gap: 4px;
}

.placeholder-img--hero { min-height: 280px; }
.placeholder-img--secondary { min-height: 160px; }
.placeholder-img--card { min-height: 180px; }
.placeholder-img--video {
    min-height: 360px;
    background: linear-gradient(135deg, #111 0%, #1a1a1a 100%);
}
.placeholder-img--video small {
    font-size: 11px;
    color: var(--gray-600);
}
.placeholder-img--avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    background: var(--grad-3);
}

.placeholder-img--cat-feat { min-height: 300px; }
.placeholder-img--cat-sm {
    width: 100px;
    min-height: 68px;
    flex-shrink: 0;
    border-radius: var(--radius);
}

/* ========== AD SLOTS ========== */
.ad-slot {
    padding: 16px 0;
}

.ad-slot__inner {
    text-align: center;
}

.ad-slot__label {
    display: block;
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--gray-400);
    text-transform: uppercase;
    margin-bottom: 6px;
}

.ad-slot__placeholder {
    background: var(--gray-50);
    border: 1px dashed var(--gray-200);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    font-size: 13px;
    height: 90px;
}

.ad-slot__placeholder--vertical {
    height: 600px;
    width: 100%;
}

.ad-slot__placeholder--square {
    height: 250px;
    width: 100%;
}

/* ========== SECTION HEADER ========== */
.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--red);
}

.section-header__title {
    font-family: var(--font-sans);
    font-size: 22px;
    font-weight: 800;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: -0.3px;
}

.section-header__link {
    font-size: 13px;
    font-weight: 600;
    color: var(--red);
    transition: color 0.2s;
}

.section-header__link:hover {
    color: var(--red-dark);
}

/* ========== NEWS SECTION (ÚLTIMAS NOTICIAS) ========== */
.section-news {
    padding: 40px 0;
}

.section-news__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* News card */
.news-card a {
    display: block;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
}

.news-card a:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.news-card__img {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

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

.news-card__body {
    padding: 14px;
}

.news-card__title {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

.news-card a:hover .news-card__title {
    color: var(--red);
}

.news-card__time {
    font-size: 12px;
    color: var(--gray-500);
}

/* ========== SIDEBAR ========== */
.section-news__sidebar {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.sidebar-widget {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 20px;
}

.sidebar-widget__title {
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--red);
    color: var(--black);
}

/* Most read */
.most-read__item {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gray-200);
    align-items: flex-start;
}

.most-read__item:last-child {
    border-bottom: none;
}

.most-read__num {
    font-family: var(--font-sans);
    font-size: 28px;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    min-width: 30px;
}

.most-read__link {
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--gray-800);
    transition: color 0.2s;
}

.most-read__link:hover {
    color: var(--red);
}

/* ========== CATEGORY TABS ========== */
.section-categories {
    padding: 40px 0;
    background: var(--gray-50);
}

.cat-tabs {
    display: block;
}

.cat-tabs__nav {
    display: flex;
    gap: 6px;
    margin-bottom: 24px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
}

.cat-tabs__nav::-webkit-scrollbar {
    display: none;
}

.cat-tabs__btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--gray-600);
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 50px;
    white-space: nowrap;
    transition: all 0.2s var(--ease);
}

.cat-tabs__btn:hover {
    color: var(--red);
    border-color: var(--red);
}

.cat-tabs__btn.active {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
}

.cat-tabs__icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.cat-tabs__btn:hover .cat-tabs__icon,
.cat-tabs__btn.active .cat-tabs__icon {
    opacity: 1;
}

.cat-tabs__btn.active .cat-tabs__icon svg {
    stroke: #fff;
}

.cat-tabs__panel {
    display: none;
}

.cat-tabs__panel.active {
    display: block;
}

/* Category grid */
.cat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.cat-grid__featured a {
    display: block;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.cat-grid__featured img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16/9;
}

.cat-grid__featured .placeholder-img {
    border-radius: var(--radius-lg);
    aspect-ratio: 16/9;
}

.cat-grid__featured-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    color: var(--white);
}

.cat-grid__featured-content .tag {
    position: static;
    margin-bottom: 10px;
}

.cat-grid__featured-content h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 8px;
}

.cat-grid__featured-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cat-grid__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cat-grid__item a {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 12px;
    background: var(--white);
    border-radius: var(--radius);
    transition: box-shadow 0.2s;
}

.cat-grid__item a:hover {
    box-shadow: var(--shadow-md);
}

.cat-grid__item img {
    width: 90px;
    height: 65px;
    object-fit: cover;
    border-radius: 4px;
    flex-shrink: 0;
}

.cat-grid__item h4 {
    font-family: var(--font-serif);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--gray-800);
    margin-bottom: 4px;
    transition: color 0.2s;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cat-grid__item a:hover h4 {
    color: var(--red);
}

.cat-grid__item time {
    font-size: 11px;
    color: var(--gray-500);
}

/* ========== RADIO SECTION ========== */
.section-radio {
    padding: 60px 0;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.section-radio::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--grad-3);
    opacity: 0.15;
}

.section-radio__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.section-radio__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-radio__title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-radio__title strong {
    font-weight: 700;
}

.section-radio__desc {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
    max-width: 480px;
}

/* Radio player */
.radio-player {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    backdrop-filter: blur(10px);
}

.radio-player__visual {
    padding: 12px 0;
}

.radio-player__wave {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 40px;
}

.radio-player__wave span {
    width: 4px;
    background: var(--red);
    border-radius: 2px;
    animation: wave-bar 1.2s ease-in-out infinite;
    animation-play-state: paused;
}

.radio-player__wave span:nth-child(1) { height: 15px; animation-delay: 0s; }
.radio-player__wave span:nth-child(2) { height: 25px; animation-delay: 0.1s; }
.radio-player__wave span:nth-child(3) { height: 35px; animation-delay: 0.2s; }
.radio-player__wave span:nth-child(4) { height: 20px; animation-delay: 0.3s; }
.radio-player__wave span:nth-child(5) { height: 30px; animation-delay: 0.4s; }
.radio-player__wave span:nth-child(6) { height: 18px; animation-delay: 0.5s; }
.radio-player__wave span:nth-child(7) { height: 28px; animation-delay: 0.6s; }
.radio-player__wave span:nth-child(8) { height: 22px; animation-delay: 0.7s; }
.radio-player__wave span:nth-child(9) { height: 32px; animation-delay: 0.8s; }
.radio-player__wave span:nth-child(10) { height: 16px; animation-delay: 0.9s; }

.radio-player.playing .radio-player__wave span {
    animation-play-state: running;
}

@keyframes wave-bar {
    0%, 100% { transform: scaleY(0.4); }
    50% { transform: scaleY(1); }
}

.radio-player__info {
    text-align: center;
}

.radio-player__station {
    display: block;
    font-size: 18px;
    font-weight: 700;
}

.radio-player__program {
    display: block;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
}

.radio-player__play-btn {
    width: 56px;
    height: 56px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.2s;
}

.radio-player__play-btn:hover {
    background: var(--red-light);
    transform: scale(1.05);
}

.radio-player__volume {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.5);
    width: 100%;
    max-width: 200px;
}

.radio-player__volume-slider,
.sticky-player__volume {
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    outline: none;
    flex: 1;
}

.radio-player__volume-slider::-webkit-slider-thumb,
.sticky-player__volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.25s var(--ease);
}

.btn--white {
    background: var(--white);
    color: var(--black);
}

.btn--white:hover {
    background: var(--gray-100);
    transform: translateY(-1px);
}

.btn--red {
    background: var(--red);
    color: var(--white);
}

.btn--red:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
}

.btn--outline {
    background: transparent;
    color: var(--red);
    border: 2px solid var(--red);
}

.btn--outline:hover {
    background: var(--red);
    color: var(--white);
}

/* ========== STREAMING SECTION ========== */
.section-streaming {
    padding: 40px 0;
}

.streaming-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
}

.video-embed {
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--black);
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.streaming-grid__info h3 {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--black);
}

.streaming-grid__info p {
    font-size: 15px;
    color: var(--gray-600);
    margin-bottom: 12px;
    line-height: 1.6;
}

.streaming-grid__info .btn {
    margin-top: 8px;
}

/* ========== OPINION SECTION ========== */
.section-opinion {
    padding: 40px 0;
    background: var(--gray-50);
}

.opinion-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.opinion-card a {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--red);
    transition: all 0.2s var(--ease);
}

.opinion-card a:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.opinion-card__avatar {
    flex-shrink: 0;
}

.opinion-card__title {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--black);
    margin-bottom: 4px;
    transition: color 0.2s;
}

.opinion-card a:hover .opinion-card__title {
    color: var(--red);
}

.opinion-card__author {
    font-size: 12px;
    color: var(--gray-500);
    font-style: italic;
}

/* ========== FOOTER ========== */
.footer {
    background: var(--black);
    color: var(--gray-400);
    padding: 48px 0 0;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
}

.footer__logo {
    margin-bottom: 16px;
}

.footer__tagline {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--gray-500);
}

.footer__social {
    display: flex;
    gap: 12px;
}

.footer__social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    color: var(--gray-400);
    transition: all 0.2s;
}

.footer__social a:hover {
    background: var(--red);
    color: var(--white);
}

.footer__nav h4,
.footer__contact h4 {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__nav ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer__nav a {
    font-size: 14px;
    color: var(--gray-500);
    transition: color 0.2s;
}

.footer__nav a:hover {
    color: var(--red-light);
}

.footer__contact p {
    font-size: 14px;
    margin-bottom: 6px;
    color: var(--gray-500);
}

.footer__bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    text-align: center;
    font-size: 12px;
}

.footer__legal {
    display: flex;
    gap: 16px;
}

.footer__legal a {
    color: var(--gray-500);
    font-size: 12px;
}

.footer__legal a:hover {
    color: var(--red-light);
}

/* ========== STICKY PLAYER ========== */
.sticky-player {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--black-soft);
    border-top: 2px solid var(--red);
    z-index: 900;
    padding: 10px 0;
}

.sticky-player__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sticky-player__info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: var(--white);
}

.sticky-player__station {
    font-weight: 700;
}

.sticky-player__sep {
    color: var(--gray-600);
}

.sticky-player__program {
    color: var(--gray-500);
    display: none;
}

.sticky-player__controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sticky-player__play {
    width: 36px;
    height: 36px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.sticky-player__volume {
    width: 80px;
    display: none;
}

.sticky-player__close {
    color: var(--gray-500);
    font-size: 22px;
    padding: 4px;
}

.sticky-player__close:hover {
    color: var(--white);
}

/* ========== ARTICLE PAGE ========== */
.article-header {
    padding: 32px 0 24px;
}

.article-header__cat {
    display: inline-block;
    padding: 4px 12px;
    background: var(--red);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 3px;
    margin-bottom: 16px;
}

.article-header__title {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--black);
    margin-bottom: 16px;
}

.article-header__excerpt {
    font-size: 18px;
    color: var(--gray-600);
    line-height: 1.5;
    margin-bottom: 16px;
    font-family: var(--font-serif);
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    font-size: 13px;
    color: var(--gray-500);
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.article-meta__author {
    font-weight: 600;
    color: var(--gray-800);
}

.article-hero-img {
    margin-bottom: 32px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.article-hero-img figcaption {
    font-size: 12px;
    color: var(--gray-500);
    padding: 8px 0;
    font-style: italic;
}

/* Article body */
.article-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.article-body {
    font-family: var(--font-serif);
    font-size: 18px;
    line-height: 1.75;
    color: var(--gray-800);
}

.article-body p {
    margin-bottom: 20px;
}

.article-body h2 {
    font-family: var(--font-sans);
    font-size: 22px;
    font-weight: 700;
    margin: 32px 0 16px;
    color: var(--black);
}

.article-body blockquote {
    border-left: 4px solid var(--red);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--gray-50);
    font-style: italic;
    color: var(--gray-700);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.article-body strong {
    color: var(--black);
}

/* Share bar */
.article-share {
    display: flex;
    gap: 10px;
    padding: 20px 0;
    border-top: 1px solid var(--gray-200);
    margin-top: 20px;
}

.article-share__btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-600);
    transition: all 0.2s;
}

.article-share__btn:hover {
    background: var(--red);
    color: var(--white);
}

/* Related articles */
.related-articles {
    padding: 40px 0;
    background: var(--gray-50);
}

.related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* ========== CATEGORY PAGE ========== */
.category-header {
    padding: 32px 0;
    background: var(--black);
    color: var(--white);
}

.category-header__title {
    font-family: var(--font-sans);
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
}

.category-header__desc {
    font-size: 15px;
    color: var(--gray-400);
    margin-top: 8px;
}

.category-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 0;
}

.category-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.news-card--horizontal a {
    display: flex;
    flex-direction: row;
    gap: 0;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
}

.news-card--horizontal a:hover {
    box-shadow: var(--shadow-md);
}

.news-card--horizontal .news-card__img {
    width: 130px;
    min-width: 130px;
    aspect-ratio: auto;
    flex-shrink: 0;
}

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

.news-card--horizontal .news-card__body {
    flex: 1;
    padding: 14px;
    min-width: 0;
}

.news-card__excerpt {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========== MEDIA KIT PAGE ========== */
.mediakit-hero {
    background: var(--black);
    padding: 80px 0;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mediakit-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-3);
    opacity: 0.12;
}

.mediakit-hero__content {
    position: relative;
}

.mediakit-hero__logo {
    width: 200px;
    margin: 0 auto 24px;
}

.mediakit-hero__title {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 12px;
}

.mediakit-hero__subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* Stats */
.mediakit-stats {
    padding: 60px 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.stat-card {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius-lg);
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
}

.stat-card__number {
    font-family: var(--font-sans);
    font-size: 42px;
    font-weight: 800;
    color: var(--red);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Services */
.mediakit-services {
    padding: 60px 0;
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
}

.service-card {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--red);
}

.service-card__icon {
    width: 48px;
    height: 48px;
    background: var(--red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 16px;
}

.service-card__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--black);
}

.service-card__desc {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Clients */
.mediakit-clients {
    padding: 60px 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.client-logo {
    background: var(--gray-50);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    font-size: 16px;
    font-weight: 700;
    color: var(--gray-400);
    border: 1px solid var(--gray-100);
}

/* CTA */
.mediakit-cta {
    padding: 80px 0;
    background: var(--black);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mediakit-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-3);
    opacity: 0.1;
}

.mediakit-cta__content {
    position: relative;
}

.mediakit-cta__title {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 16px;
}

.mediakit-cta__desc {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== RADIO PAGE ========== */
.radio-hero {
    background: var(--black);
    padding: 48px 0;
    color: var(--white);
    text-align: center;
}

.radio-hero__title {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.radio-hero__subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.6);
}

.stations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 40px 0;
}

.station-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s;
    border-left: 4px solid var(--red);
}

.station-card:hover {
    box-shadow: var(--shadow-md);
}

.station-card__play {
    width: 48px;
    height: 48px;
    background: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
    transition: background 0.2s;
}

.station-card__play:hover {
    background: var(--red-dark);
}

.station-card__info {
    flex: 1;
}

.station-card__name {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
}

.station-card__freq {
    font-size: 13px;
    color: var(--gray-500);
}

.station-card__location {
    font-size: 12px;
    color: var(--gray-400);
}

/* ========== STREAMING PAGE ========== */
.streaming-hero {
    background: var(--black);
    padding: 32px 0;
    color: var(--white);
}

.streaming-main {
    padding: 40px 0;
}

.streaming-main__video {
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--black);
    margin-bottom: 24px;
}

.streaming-schedule {
    padding: 40px 0;
    background: var(--gray-50);
}

.schedule-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
}

.schedule-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius);
}

.schedule-item__time {
    font-size: 14px;
    font-weight: 700;
    color: var(--red);
    min-width: 80px;
}

.schedule-item__name {
    font-weight: 600;
    color: var(--black);
}

.schedule-item__host {
    font-size: 13px;
    color: var(--gray-500);
}

/* ========== RESPONSIVE ========== */

/* Tablet */
@media (min-width: 640px) {
    .hero__main-title {
        font-size: 28px;
    }

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

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

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

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

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

    .news-card--horizontal .news-card__img {
        width: 240px;
        min-width: 240px;
    }

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

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

    .sticky-player__program {
        display: inline;
    }

    .sticky-player__volume {
        display: block;
    }
}

/* Desktop small */
@media (min-width: 900px) {
    .header__nav {
        display: block;
    }

    .header__menu-btn {
        display: none;
    }

    .hero__grid {
        grid-template-columns: 1.8fr 1fr;
        align-items: stretch;
    }

    .hero__main-link {
        height: 100%;
        display: flex;
        flex-direction: column;
    }

    .hero__main-img {
        flex: 1;
    }

    .hero__sidebar {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero__secondary a {
        flex-direction: row;
    }

    .hero__secondary-img {
        aspect-ratio: auto;
        width: 140px;
        min-height: 100%;
        flex-shrink: 0;
    }

    .hero__secondary-content {
        padding: 10px 12px;
        justify-content: center;
    }

    .hero__secondary-title {
        font-size: 15px;
    }

    .hero__main-title {
        font-size: 30px;
    }

    .section-news__layout {
        grid-template-columns: 1fr 300px;
    }

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

    .cat-grid {
        grid-template-columns: 1.2fr 1fr;
    }

    .section-radio__inner {
        grid-template-columns: 1fr 1fr;
    }

    .streaming-grid {
        grid-template-columns: 1.5fr 1fr;
    }

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

    .category-layout {
        grid-template-columns: 1fr 300px;
    }

    .article-layout {
        grid-template-columns: 1fr 300px;
    }

    .footer__grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }

    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .clients-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Desktop large */
@media (min-width: 1100px) {
    .hero__grid {
        grid-template-columns: 2fr 1fr;
    }

    .hero__secondary-img {
        width: 160px;
    }

    .hero__secondary-title {
        font-size: 16px;
    }

    .hero__main-title {
        font-size: 36px;
    }

    .hero__main-excerpt {
        font-size: 16px;
    }

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

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

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

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

    .clients-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .article-header__title {
        font-size: 40px;
    }

    .mediakit-hero__title {
        font-size: 52px;
    }

    .radio-player {
        flex-direction: row;
        gap: 24px;
    }
}

/* ========== SCROLL ANIMATIONS ========== */

/* Base: elements start hidden */
[data-anim] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

[data-anim="fade-up"].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-anim="fade-in"].is-visible {
    opacity: 1;
    transform: translateY(0);
}

[data-anim="fade-left"] {
    transform: translateX(-60px);
}
[data-anim="fade-left"].is-visible {
    opacity: 1;
    transform: translateX(0);
}

[data-anim="fade-right"] {
    transform: translateX(60px);
}
[data-anim="fade-right"].is-visible {
    opacity: 1;
    transform: translateX(0);
}

[data-anim="scale-up"] {
    transform: scale(0.85);
}
[data-anim="scale-up"].is-visible {
    opacity: 1;
    transform: scale(1);
}

[data-anim="zoom-in"] {
    transform: scale(0.6);
}
[data-anim="zoom-in"].is-visible {
    opacity: 1;
    transform: scale(1);
    transition-duration: 0.9s;
}

/* Stagger delays for children */
[data-stagger] > *:nth-child(1) { transition-delay: 0.05s; }
[data-stagger] > *:nth-child(2) { transition-delay: 0.12s; }
[data-stagger] > *:nth-child(3) { transition-delay: 0.19s; }
[data-stagger] > *:nth-child(4) { transition-delay: 0.26s; }
[data-stagger] > *:nth-child(5) { transition-delay: 0.33s; }
[data-stagger] > *:nth-child(6) { transition-delay: 0.40s; }
[data-stagger] > *:nth-child(7) { transition-delay: 0.47s; }
[data-stagger] > *:nth-child(8) { transition-delay: 0.54s; }

/* Parallax text */
.parallax-text {
    will-change: transform;
}

/* Counter animation */
.count-up {
    display: inline-block;
}

/* ========== MEDIA KIT - IMMERSIVE HERO ========== */
.mk-hero {
    min-height: 100vh;
    background: var(--black);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.mk-hero__bg {
    position: absolute;
    inset: 0;
    background: var(--grad-3);
    opacity: 0.08;
}

.mk-hero__particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.mk-hero__particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--red);
    border-radius: 50%;
    opacity: 0.3;
    animation: float-particle 8s ease-in-out infinite;
}

.mk-hero__particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 7s; }
.mk-hero__particle:nth-child(2) { left: 30%; top: 60%; animation-delay: 1s; animation-duration: 9s; width: 6px; height: 6px; }
.mk-hero__particle:nth-child(3) { left: 50%; top: 30%; animation-delay: 2s; animation-duration: 6s; }
.mk-hero__particle:nth-child(4) { left: 70%; top: 70%; animation-delay: 3s; animation-duration: 8s; width: 5px; height: 5px; }
.mk-hero__particle:nth-child(5) { left: 85%; top: 40%; animation-delay: 4s; animation-duration: 10s; }
.mk-hero__particle:nth-child(6) { left: 20%; top: 80%; animation-delay: 2.5s; animation-duration: 7.5s; width: 3px; height: 3px; }
.mk-hero__particle:nth-child(7) { left: 60%; top: 15%; animation-delay: 1.5s; animation-duration: 8.5s; }
.mk-hero__particle:nth-child(8) { left: 90%; top: 85%; animation-delay: 3.5s; animation-duration: 6.5s; width: 7px; height: 7px; opacity: 0.2; }

@keyframes float-particle {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    25% { transform: translate(30px, -40px) scale(1.5); opacity: 0.5; }
    50% { transform: translate(-20px, -80px) scale(1); opacity: 0.2; }
    75% { transform: translate(40px, -30px) scale(1.3); opacity: 0.4; }
}

.mk-hero__content {
    position: relative;
    text-align: center;
    padding: 40px 20px;
    z-index: 2;
}

.mk-hero__logo {
    width: 160px;
    margin: 0 auto 32px;
    opacity: 0;
    animation: mk-fade-down 1s 0.3s var(--ease) forwards;
}

.mk-hero__label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--red-light);
    margin-bottom: 20px;
    opacity: 0;
    animation: mk-fade-down 1s 0.5s var(--ease) forwards;
}

.mk-hero__title {
    font-family: var(--font-sans);
    font-size: clamp(48px, 10vw, 140px);
    font-weight: 900;
    line-height: 0.9;
    letter-spacing: -3px;
    text-transform: uppercase;
    margin-bottom: 32px;
    opacity: 0;
    animation: mk-title-reveal 1.2s 0.7s var(--ease) forwards;
}

.mk-hero__title span {
    display: block;
    background: linear-gradient(90deg, var(--white) 0%, var(--red-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mk-hero__subtitle {
    font-family: var(--font-serif);
    font-size: clamp(16px, 2vw, 22px);
    color: rgba(255,255,255,0.6);
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: mk-fade-down 1s 1.1s var(--ease) forwards;
}

.mk-hero__scroll {
    opacity: 0;
    animation: mk-fade-down 1s 1.5s var(--ease) forwards;
    color: rgba(255,255,255,0.4);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mk-hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--red), transparent);
    animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    50.01% { transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes mk-fade-down {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes mk-title-reveal {
    from { opacity: 0; transform: translateY(60px) scale(0.9); letter-spacing: 10px; }
    to { opacity: 1; transform: translateY(0) scale(1); letter-spacing: -3px; }
}

/* Platforms grid - immersive */
.mk-platforms {
    background: var(--black);
    padding: 0;
    overflow: hidden;
}

.mk-platforms__grid {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
}

.mk-platform-card {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    overflow: hidden;
    cursor: pointer;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.mk-platform-card__bg {
    position: absolute;
    inset: 0;
    background: var(--grad-3);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
}

.mk-platform-card:hover .mk-platform-card__bg {
    opacity: 0.2;
}

.mk-platform-card__content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.mk-platform-card__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--red-light);
    margin-bottom: 8px;
}

.mk-platform-card__title {
    font-family: var(--font-sans);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 12px;
    transition: transform 0.4s var(--ease);
}

.mk-platform-card:hover .mk-platform-card__title {
    transform: translateX(12px);
}

.mk-platform-card__desc {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    max-width: 400px;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s var(--ease);
}

.mk-platform-card:hover .mk-platform-card__desc {
    opacity: 1;
    transform: translateY(0);
}

.mk-platform-card__number {
    position: absolute;
    top: 30px;
    right: 30px;
    font-family: var(--font-sans);
    font-size: clamp(60px, 8vw, 120px);
    font-weight: 900;
    color: rgba(255,255,255,0.04);
    line-height: 1;
    z-index: 1;
}

/* Stats - big bold */
.mk-stats {
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.mk-stats__statement {
    text-align: center;
    margin-bottom: 60px;
}

.mk-stats__statement h2 {
    font-family: var(--font-sans);
    font-size: clamp(28px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--black);
}

.mk-stats__statement p {
    font-size: 18px;
    color: var(--gray-500);
    margin-top: 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.mk-stat-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.mk-stat {
    text-align: center;
    padding: 32px 0;
    border-top: 2px solid var(--gray-100);
}

.mk-stat__number {
    font-family: var(--font-sans);
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    color: var(--black);
    line-height: 1;
    margin-bottom: 8px;
}

.mk-stat__number .red {
    color: var(--red);
}

.mk-stat__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Quote section */
.mk-quote {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mk-quote__text {
    font-family: var(--font-serif);
    font-size: clamp(24px, 4vw, 44px);
    font-weight: 400;
    font-style: italic;
    line-height: 1.4;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255,255,255,0.9);
}

.mk-quote__line {
    width: 60px;
    height: 3px;
    background: var(--red);
    margin: 32px auto 0;
}

/* Formats horizontal scroll */
.mk-formats {
    padding: 80px 0;
    background: var(--gray-50);
    overflow: hidden;
}

.mk-formats__track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 0 20px 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.mk-formats__track::-webkit-scrollbar {
    display: none;
}

.mk-format-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s var(--ease);
    border-top: 4px solid transparent;
}

.mk-format-card:hover {
    box-shadow: var(--shadow-lg);
    border-top-color: var(--red);
    transform: translateY(-4px);
}

.mk-format-card__title {
    font-size: 18px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 8px;
}

.mk-format-card__desc {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.6;
}

/* CTA - dramatic */
.mk-cta {
    padding: 120px 0;
    background: var(--black);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mk-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--red-darker) 0%, transparent 50%);
    opacity: 0.15;
    animation: cta-pulse 6s ease-in-out infinite;
}

@keyframes cta-pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.1); opacity: 0.2; }
}

.mk-cta__content {
    position: relative;
    z-index: 2;
}

.mk-cta__title {
    font-family: var(--font-sans);
    font-size: clamp(32px, 5vw, 64px);
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1.05;
}

.mk-cta__desc {
    font-size: 18px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.mk-cta__buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive for media kit */
@media (min-width: 640px) {
    .mk-stat-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .mk-platforms__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .mk-platform-card {
        min-height: 45vh;
        border-bottom: none;
        border-right: 1px solid rgba(255,255,255,0.05);
    }
    .mk-platform-card:nth-child(even) {
        border-right: none;
    }
}

@media (min-width: 1000px) {
    .mk-stat-row {
        grid-template-columns: repeat(4, 1fr);
    }
    .mk-platforms__grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .mk-platform-card {
        min-height: 60vh;
    }
    .mk-platform-card:nth-child(even) {
        border-right: 1px solid rgba(255,255,255,0.05);
    }
    .mk-platform-card:last-child {
        border-right: none;
    }
    .mk-format-card {
        flex: 0 0 320px;
    }
}

/* ========== GENERAL PAGE ANIMATIONS ========== */

/* Hover lift for cards */
.news-card a,
.opinion-card a,
.station-card,
.service-card {
    transition: all 0.35s var(--ease);
}

/* Smooth header entrance */
@keyframes header-slide-down {
    from { transform: translateY(-100%); }
    to { transform: translateY(0); }
}

.header {
    animation: header-slide-down 0.5s var(--ease);
}

/* Hero entrance */
.hero__main-link {
    animation: hero-entrance 0.8s 0.2s var(--ease) backwards;
}

@keyframes hero-entrance {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero__secondary {
    animation: hero-entrance 0.8s var(--ease) backwards;
}

.hero__secondary:nth-child(1) { animation-delay: 0.4s; }
.hero__secondary:nth-child(2) { animation-delay: 0.6s; }

/* Ticker glow */
.ticker {
    box-shadow: 0 2px 20px rgba(211, 64, 61, 0.3);
}

/* Section header line animation */
.section-header {
    position: relative;
}

.section-header.is-visible::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--red);
    animation: line-grow 0.6s var(--ease);
}

@keyframes line-grow {
    from { width: 0; }
    to { width: 100%; }
}

/* News card hover enhanced */
.news-card a:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

/* Category tab switch animation */
.cat-tabs__panel.active {
    animation: tab-fade-in 0.4s var(--ease);
}

@keyframes tab-fade-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Radio section glow */
.section-radio {
    box-shadow: inset 0 0 100px rgba(211, 64, 61, 0.05);
}

/* Footer entrance */
.footer__brand,
.footer__nav,
.footer__contact {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s var(--ease);
}

.footer.is-visible .footer__brand,
.footer.is-visible .footer__nav,
.footer.is-visible .footer__contact {
    opacity: 1;
    transform: translateY(0);
}

.footer.is-visible .footer__brand { transition-delay: 0.1s; }
.footer.is-visible .footer__nav:nth-child(2) { transition-delay: 0.2s; }
.footer.is-visible .footer__nav:nth-child(3) { transition-delay: 0.3s; }
.footer.is-visible .footer__contact { transition-delay: 0.4s; }

/* ========== REDUCED MOTION ========== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    [data-anim] {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ========== PRINT ========== */
@media print {
    .header, .top-bar, .ticker, .footer, .sticky-player,
    .ad-slot, .section-radio, .section-streaming,
    .header__actions, .article-share {
        display: none !important;
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    .article-body {
        font-size: 12pt;
    }
}
