:root {
    --ink: #0b1714;
    --ink-soft: #20312c;
    --green-950: #041b15;
    --green-900: #082a21;
    --green-800: #0b4433;
    --green-600: #087b59;
    --signal: #10b981;
    --gold: #f0bd51;
    --pink: #ef4b93;
    --cream: #f4efe4;
    --paper: #fffdf8;
    --muted: #6f756f;
    --line: rgba(11, 23, 20, 0.14);
    --console-width: 400px;
    --header-height: 82px;
    --radius: 24px;
    --shadow: 0 24px 70px rgba(4, 27, 21, 0.22);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 96px;
}

section[id] {
    scroll-margin-top: 96px;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    background: var(--cream);
    color: var(--ink);
    font-family: "DM Sans", sans-serif;
    min-width: 320px;
    overflow-x: hidden;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    border: 0;
}

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

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

em {
    color: var(--gold);
    font-style: normal;
}

::selection {
    background: var(--gold);
    color: var(--ink);
}

::-webkit-scrollbar {
    width: 9px;
}

::-webkit-scrollbar-track {
    background: var(--green-950);
}

::-webkit-scrollbar-thumb {
    background: var(--green-600);
    border: 2px solid var(--green-950);
    border-radius: 99px;
}

.site-header {
    align-items: center;
    background: rgba(248, 244, 233, 0.55);
    backdrop-filter: blur(20px) saturate(135%);
    border: none;
    border-radius: 9px;
    box-shadow: 0 10px 32px rgba(42, 48, 42, 0.11);
    display: flex;
    height: 64px;
    justify-content: space-between;
    left: 18px;
    padding: 0 clamp(24px, 4vw, 64px);
    position: fixed;
    right: calc(var(--console-width) + 48px);
    top: 16px;
    z-index: 100;
}

.brand {
    align-items: center;
    color:#264673;
    display: flex;
    font-family: 'Designer', 'Oswald', sans-serif;
    font-size: 1.05rem;
    gap: 11px;
    letter-spacing: 0;
}

.brand img {
    background: transparent;
    border: 0;
    border-radius: 0;
    height: 42px;
    object-fit: contain;
    padding: 0;
    width: 45px;
}

.brand > span > span {
    color: var(--green-600);
}

.main-nav {
    align-items: center;
    display: flex;
    gap: clamp(18px, 2.2vw, 34px);
}

.main-nav a {
    color: #264673;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    position: relative;
    text-transform: uppercase;
    transition: color 180ms ease;
}

.main-nav a::after {
    background: var(--green-600);
    bottom: -9px;
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
    width: 100%;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--green-900);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.nav-toggle {
    background: transparent;
    color: var(--green-900);
    cursor: pointer;
    display: none;
    font-size: 1.25rem;
}

.site-content {
    margin-right: calc(var(--console-width) + 32px);
}

.site-content,
.studio-site-content,
main {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 280ms cubic-bezier(0.25, 1, 0.5, 1), transform 280ms cubic-bezier(0.25, 1, 0.5, 1);
    will-change: opacity, transform;
}

.site-content.nav-transitioning-out,
.studio-site-content.nav-transitioning-out,
main.nav-transitioning-out {
    opacity: 0.15;
    transform: translateY(8px);
}

.site-content.nav-transitioning-in,
.studio-site-content.nav-transitioning-in,
main.nav-transitioning-in {
    opacity: 0;
    transform: translateY(8px);
}

@media (prefers-reduced-motion: reduce) {
    .site-content,
    .studio-site-content,
    main {
        transform: none !important;
        transition: none !important;
    }
}

.hero {
    align-items: flex-end;
    background: #eee7d8;
    color: var(--ink);
    display: flex;
    min-height: 760px;
    overflow: hidden;
    padding: calc(var(--header-height) + 80px) clamp(28px, 5.5vw, 92px) 72px;
    position: relative;
}

.hero-media,
.hero-overlay {
    inset: 0;
    position: absolute;
}

.hero-media {
    background-image: url("images/hero-watercolor-2026.webp");
    background-position: center;
    background-size: cover;
    transform: scale(1.015);
}

.hero-overlay {
    background:
        linear-gradient(90deg, rgba(242, 236, 222, 0.98) 0%, rgba(242, 236, 222, 0.86) 35%, rgba(242, 236, 222, 0.18) 67%, transparent 82%),
        linear-gradient(0deg, rgba(232, 224, 205, 0.42) 0%, transparent 38%);
}

.hero-copy {
    max-width: 680px;
    position: relative;
    z-index: 2;
}

.eyebrow {
    align-items: center;
    color: var(--green-600);
    display: flex;
    font-size: 0.71rem;
    font-weight: 700;
    gap: 10px;
    letter-spacing: 0.16em;
    margin-bottom: 35px;
    text-transform: uppercase;
}

.eyebrow span {
    background: var(--gold);
    height: 2px;
    width: 34px;
}

.eyebrow.dark {
    color: var(--green-600);
}

.hero h1,
.section-heading h2,
.on-air h2 {
    font-family: "Oswald", sans-serif;
    font-weight: 600;
    letter-spacing: -0.035em;
    text-transform: uppercase;
}

.hero h1 {
    color: #264673;
    font-size: clamp(4.2rem, 7.7vw, 7.8rem);
    line-height: 0.66;
}

.hero h1 em {
    color: var(--green-600, #087b59);
    display: inline-block;
    font-family: "Dancing Script", cursive;
    font-size: 1.28em;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 0.86;
    position: relative;
    text-transform: none;
}

.hero h1 em::after {
    background: var(--gold);
    bottom: 2px;
    content: "";
    height: 4px;
    left: 0;
    opacity: 0.45;
    position: absolute;
    width: 100%;
}

.hero-lead {
    color: rgba(18, 58, 115, 0.82);
    font-size: 1rem;
    line-height: 1.7;
    margin-top: 26px;
    max-width: 590px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    align-items: center;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    font-size: 0.76rem;
    font-weight: 700;
    gap: 11px;
    justify-content: center;
    letter-spacing: 0.08em;
    min-height: 52px;
    padding: 0 25px;
    text-transform: uppercase;
    transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: var(--gold);
    color: var(--ink);
}

.button-primary:hover {
    background: #ffd274;
}

.button-ghost {
    border: 1px solid rgba(18, 58, 115, 0.28);
    color: #123A73;
}

.button-ghost:hover {
    background: rgba(255, 255, 255, 0.45);
}

.hero-signals {
    background: rgba(248, 244, 233, 0.45);
    backdrop-filter: blur(10px) saturate(115%);
    border: none;
    border-radius: 9px;
    box-shadow: 0 8px 24px rgba(18, 58, 115, 0.08);
    bottom: 50px;
    display: flex;
    gap: 26px;
    padding: 12px 18px;
    position: absolute;
    right: 44px;
    z-index: 2;
}

.hero-signals span {
    color: rgba(18, 58, 115, 0.75);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-signals strong {
    color: #123A73;
    display: block;
    font-family: "Oswald", sans-serif;
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.05;
}

.section {
    padding: 110px clamp(28px, 5.5vw, 92px);
}

.section-heading {
    align-items: flex-end;
    display: flex;
    gap: 60px;
    justify-content: space-between;
    margin-bottom: 54px;
}

.section-heading.compact {
    margin-bottom: 44px;
}

.section-heading h2,
.on-air h2 {
    font-size: clamp(3rem, 5vw, 5.6rem);
    line-height: 0.95;
}

.section-heading h2 em,
.on-air h2 em {
    color: var(--green-600);
}

.section-heading > p {
    color: var(--muted);
    line-height: 1.75;
    max-width: 390px;
}

@media (max-width: 1500px) {
    .stations .section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }

    .stations .section-heading > p {
        max-width: 620px;
    }
}

/* Layout 2 Columnas para Sección Emisoras (44% / 56%) */
.stations-two-col {
    align-items: flex-start;
    display: grid;
    gap: 36px 44px;
    grid-template-columns: minmax(360px, 0.44fr) 1fr;
    margin-inline: auto;
    max-width: 1280px;
    width: 100%;
}

.stations-col-left {
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 100px;
}

.stations-col-left h2 {
    color: #264673;
    font-family: "Oswald", sans-serif;
    font-size: clamp(2.6rem, 3.6vw, 4.2rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 0.96;
    text-transform: uppercase;
}

.stations-col-left h2 em {
    color: var(--green-600);
}

.stations-lead {
    color: rgba(11, 23, 20, 0.72);
    font-size: 0.95rem;
    line-height: 1.75;
    margin-top: 28px;
    max-width: 380px;
}

.stations-col-right {
    min-width: 0;
    width: 100%;
}

.station-grid {
    display: block;
    width: 100%;
}

.loading-state {
    color: var(--muted);
    padding: 70px 0;
    text-align: center;
}

/* Rediseño Glassmorphism de Emisoras */
.glass-stations-wrapper {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.featured-station-glass {
    align-items: center;
    background: rgba(255, 255, 255, 0.52);
    backdrop-filter: blur(18px) saturate(125%);
    -webkit-backdrop-filter: blur(18px) saturate(125%);
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 10px;
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.9), 0 12px 36px rgba(42, 48, 42, 0.08);
    display: grid;
    gap: 30px;
    grid-template-columns: 275px 1fr;
    isolation: isolate;
    overflow: hidden;
    padding: 26px 30px;
    position: relative;
    transition: border-color 300ms ease, box-shadow 300ms ease;
}

.glass-bg-tint {
    background: radial-gradient(circle at 12% 25%, var(--station-tint, rgba(16, 185, 129, 0.12)) 0%, transparent 68%);
    inset: 0;
    opacity: 0.9;
    pointer-events: none;
    position: absolute;
    transition: background 450ms ease;
    z-index: 0;
}

.glass-left-area {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 275px;
    position: relative;
    width: 100%;
    z-index: 1;
}

.glass-visual-col {
    align-items: center;
    aspect-ratio: 1 / 1;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.78);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    height: 275px;
    justify-content: center;
    overflow: hidden;
    padding: 0;
    position: relative;
    width: 275px;
}

.glass-cover-img {
    aspect-ratio: 1 / 1;
    height: 100%;
    object-fit: cover;
    transition: opacity 250ms ease, transform 250ms ease;
    width: 100%;
}

.glass-live-badge {
    align-items: center;
    background: rgba(4, 18, 14, 0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 6px;
    bottom: 10px;
    color: #ffffff;
    display: inline-flex;
    font-size: 0.58rem;
    font-weight: 700;
    gap: 6px;
    left: 10px;
    letter-spacing: 0.12em;
    padding: 4px 10px;
    position: absolute;
    text-transform: uppercase;
}

.glass-live-badge .pulse-dot {
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 8px #10b981;
    height: 6px;
    width: 6px;
}

/* Metadata de canción debajo de la Carátula (sin Sonando Ahora) */
.glass-now-playing {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-inline: 2px;
    width: 100%;
}

.glass-np-title {
    color: var(--ink);
    font-family: "DM Sans", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.glass-np-artist {
    color: rgba(11, 23, 20, 0.65);
    font-size: 0.78rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.glass-info-col {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

.glass-category {
    color: var(--station-accent, var(--green-600));
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 6px;
    text-transform: uppercase;
    transition: color 300ms ease;
}

.glass-station-logo {
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.12));
    margin-bottom: 12px;
    margin-top: 2px;
    max-height: 52px;
    max-width: 210px;
    object-fit: contain;
    transition: transform 250ms ease, opacity 200ms ease;
}

.glass-descriptor {
    color: var(--gold, #d97706);
    font-family: "Oswald", "DM Sans", sans-serif;
    font-size: 1.08rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.glass-body {
    color: rgba(11, 23, 20, 0.78);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 480px;
}

.glass-listen-btn {
    align-items: center;
    background: var(--gold, #f59e0b);
    border: 0;
    border-radius: 999px;
    box-shadow: 0 4px 16px rgba(42, 48, 42, 0.14);
    color: var(--ink, #071c17);
    cursor: pointer;
    display: inline-flex;
    font-size: 0.76rem;
    font-weight: 700;
    gap: 10px;
    letter-spacing: 0.09em;
    padding: 13px 26px;
    text-transform: uppercase;
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.glass-listen-btn:hover {
    background: #ffd274;
    box-shadow: 0 8px 22px rgba(42, 48, 42, 0.22);
    transform: translateY(-2px);
}

.glass-listen-btn:active {
    transform: translateY(0);
}

.glass-listen-btn i {
    font-size: 0.82rem;
}

/* Transición suave al cambiar de emisora */
.featured-station-glass.switching .glass-cover-img,
.featured-station-glass.switching .glass-station-logo {
    opacity: 0.35;
    transform: scale(0.96);
}

.featured-station-glass.switching .glass-info-col {
    opacity: 0.65;
}

/* Selector Inferior Segmentado (Solo Número + Logo) */
.segmented-selector-row {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 6px;
    width: 100%;
}

.segmented-selector-item {
    align-items: center;
    background: rgba(255, 255, 255, 0.48);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 7px;
    color: var(--ink);
    cursor: pointer;
    display: flex;
    gap: 10px;
    justify-content: center;
    min-height: 52px;
    overflow: hidden;
    padding: 10px 12px;
    position: relative;
    text-align: center;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
    width: 100%;
}

.segmented-selector-item:hover {
    background: rgba(255, 255, 255, 0.75);
    border-color: rgba(255, 255, 255, 0.95);
}

.segmented-selector-item:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.segmented-selector-item.active {
    background: rgba(255, 255, 255, 0.92);
    border-color: var(--item-accent, var(--green-600));
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
    transform: translateY(-1px);
}

.seg-number {
    color: rgba(11, 23, 20, 0.42);
    flex-shrink: 0;
    font-family: "Oswald", sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1;
    transition: color 180ms ease;
}

.segmented-selector-item.active .seg-number {
    color: var(--item-accent, var(--green-600));
}

.seg-logo {
    flex-shrink: 1;
    height: 28px;
    max-width: 80px;
    object-fit: contain;
    width: 100%;
}

.seg-indicator {
    background: var(--item-accent, var(--green-600));
    bottom: 0;
    height: 3px;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    transition: opacity 180ms ease;
}

.segmented-selector-item.active .seg-indicator {
    opacity: 1;
}

/* Sección Programación (On-Air Schedule) con fondo verde profundo sólido #063B31 */
.on-air.section {
    background: #063B31;
    color: #ffffff;
    overflow: hidden;
    padding: 95px 24px;
    position: relative;
}

/* Overlay de formas curvas orgánicas en colores verdes sólidos (Sin degradados ni blur) */
.on-air-shapes-bg {
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.on-air-shapes-bg svg {
    display: block;
    height: 100%;
    width: 100%;
}

.on-air-two-col {
    align-items: flex-start;
    display: grid;
    gap: clamp(56px, 6vw, 96px);
    grid-template-columns: minmax(260px, 0.28fr) 1fr;
    margin-inline: auto;
    max-width: 1280px;
    position: relative;
    width: 100%;
    z-index: 2;
}

.on-air-intro {
    display: flex;
    flex-direction: column;
    max-width: 320px;
    position: sticky;
    top: 100px;
    width: 100%;
}

.on-air-intro .eyebrow {
    color: var(--green-600, #10b981);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.on-air-intro h2 {
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    font-size: clamp(2.4rem, 3.4vw, 3.8rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.02;
    margin-top: 12px;
    text-transform: uppercase;
    word-break: normal;
}

.on-air-intro h2 em {
    color: var(--green-600, #10b981);
    font-style: normal;
}

.on-air-lead {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.94rem;
    line-height: 1.7;
    margin-top: 22px;
    max-width: 320px;
}

/* Barra Horizontal de Navegación por Nombres de Emisoras */
.schedule-station-tabs-bar {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    gap: 0;
    margin-bottom: 16px;
    overflow-x: auto;
    scrollbar-width: none;
    width: 100%;
}

.schedule-station-tabs-bar::-webkit-scrollbar {
    display: none;
}

.station-tab-item {
    align-items: center;
    background: transparent;
    border: 0;
    border-bottom: 3px solid transparent;
    border-right: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.52);
    cursor: pointer;
    display: flex;
    flex: 1 1 0px;
    font-family: "Oswald", sans-serif;
    font-size: 0.86rem;
    font-weight: 600;
    justify-content: center;
    letter-spacing: 0.05em;
    min-height: 48px;
    padding: 8px 12px;
    position: relative;
    text-align: center;
    text-transform: uppercase;
    transition: color 180ms ease, border-color 180ms ease, background 180ms ease;
    white-space: nowrap;
}

.station-tab-item:last-child {
    border-right: 0;
}

.station-tab-item:hover {
    background: rgba(255, 255, 255, 0.02);
    color: rgba(255, 255, 255, 0.85);
}

.station-tab-item:focus-visible {
    outline: 2px solid var(--gold, #f59e0b);
    outline-offset: -2px;
}

.station-tab-item.active {
    border-bottom-color: var(--gold, #f59e0b);
    color: #ffffff;
}

/* Contenedor Compacto Centrado para la Programación (.schedule-inner) */
.schedule-inner {
    margin-inline: auto;
    max-width: 680px;
    width: 100%;
}

/* Fila Central para el Logo de la Emisora Seleccionada */
.schedule-active-logo-container {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    margin-top: 14px;
    padding: 8px 0;
    width: 100%;
}

.schedule-active-logo {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    height: 46px;
    max-width: 210px;
    object-fit: contain;
    transition: opacity 180ms ease;
}

/* Selector de Días Centrado */
.schedule-days-bar {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    gap: 4px;
    justify-content: space-between;
    margin-bottom: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    width: 100%;
}

.schedule-days-bar::-webkit-scrollbar {
    display: none;
}

.schedule-day-tab {
    background: transparent;
    border: 0;
    border-bottom: 3px solid transparent;
    color: rgba(255, 255, 255, 0.48);
    cursor: pointer;
    flex: 1 1 0px;
    font-family: "Oswald", sans-serif;
    font-size: 0.94rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 8px 6px;
    text-align: center;
    transition: color 180ms ease, border-color 180ms ease;
    white-space: nowrap;
}

.schedule-day-tab:hover {
    color: rgba(255, 255, 255, 0.88);
}

.schedule-day-tab.active {
    border-bottom-color: var(--gold, #f59e0b);
    color: var(--gold, #f59e0b);
    font-weight: 700;
}

/* Filas de Programación */
.schedule-list-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-block: 12px;
}

.schedule-row-item {
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: grid;
    gap: 20px;
    grid-template-columns: 105px 1fr auto;
    padding: 20px 16px;
    position: relative;
    transition: background 180ms ease, transform 180ms ease;
}

.schedule-row-item:last-child {
    border-bottom: 0;
}

.schedule-row-item:not(.is-active-now):hover {
    background: rgba(255, 255, 255, 0.025);
    border-radius: 6px;
}

.schedule-time-col {
    color: rgba(255, 255, 255, 0.75);
    font-family: "Oswald", sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}

.schedule-info-col {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.schedule-show-title {
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.2;
    text-transform: uppercase;
}

.schedule-show-station {
    color: var(--green-600, #10b981);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.schedule-show-desc {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.84rem;
    line-height: 1.55;
    margin-top: 4px;
}

/* Fila de Programa Activo "EN VIVO AHORA" (Color Sólido Contrastante #042620 + Borde Dorado) */
.schedule-row-item.is-active-now {
    background: #042620;
    border: 1px solid rgba(240, 189, 81, 0.35);
    border-radius: 8px;
    box-shadow: none;
}

.schedule-row-item.is-active-now .schedule-time-col {
    color: var(--gold, #f59e0b);
}

.schedule-live-badge {
    align-items: center;
    background: var(--green-600, #10b981);
    border-radius: 999px;
    color: #04120e;
    display: inline-flex;
    font-size: 0.6rem;
    font-weight: 800;
    gap: 6px;
    letter-spacing: 0.1em;
    margin-bottom: 4px;
    padding: 3px 10px;
    text-transform: uppercase;
    width: fit-content;
}

.schedule-live-badge .pulse-dot {
    background: #04120e;
    border-radius: 50%;
    height: 5px;
    width: 5px;
}

/* Decoración Waveform CSS para programa en vivo (Audio Meter Asíncrono) */
.schedule-waveform {
    align-items: flex-end;
    display: flex;
    gap: 3px;
    height: 22px;
    padding-left: 12px;
}

.schedule-waveform span {
    background: var(--gold, #f59e0b);
    border-radius: 2px;
    display: block;
    height: 100%;
    transform-origin: bottom;
    width: 3px;
}

.schedule-row-item.is-active-now .schedule-waveform span:nth-child(1) {
    animation: eqPulse1 0.65s ease-in-out infinite alternate;
    animation-delay: 0s;
}
.schedule-row-item.is-active-now .schedule-waveform span:nth-child(2) {
    animation: eqPulse2 0.48s ease-in-out infinite alternate;
    animation-delay: 0.14s;
}
.schedule-row-item.is-active-now .schedule-waveform span:nth-child(3) {
    animation: eqPulse3 0.72s ease-in-out infinite alternate;
    animation-delay: 0.05s;
}
.schedule-row-item.is-active-now .schedule-waveform span:nth-child(4) {
    animation: eqPulse4 0.55s ease-in-out infinite alternate;
    animation-delay: 0.22s;
}
.schedule-row-item.is-active-now .schedule-waveform span:nth-child(5) {
    animation: eqPulse5 0.81s ease-in-out infinite alternate;
    animation-delay: 0.09s;
}

@keyframes eqPulse1 {
    0% { transform: scaleY(0.20); }
    50% { transform: scaleY(0.85); }
    100% { transform: scaleY(0.40); }
}
@keyframes eqPulse2 {
    0% { transform: scaleY(0.90); }
    50% { transform: scaleY(0.25); }
    100% { transform: scaleY(0.70); }
}
@keyframes eqPulse3 {
    0% { transform: scaleY(0.30); }
    50% { transform: scaleY(0.95); }
    100% { transform: scaleY(0.20); }
}
@keyframes eqPulse4 {
    0% { transform: scaleY(0.75); }
    50% { transform: scaleY(0.35); }
    100% { transform: scaleY(0.90); }
}
@keyframes eqPulse5 {
    0% { transform: scaleY(0.15); }
    50% { transform: scaleY(0.60); }
    100% { transform: scaleY(1.00); }
}

@media (prefers-reduced-motion: reduce) {
    .schedule-row-item.is-active-now .schedule-waveform span {
        animation: none !important;
        transform: scaleY(0.60) !important;
    }
}

/* Footer Link */
.schedule-footer-bar {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: flex-end;
    padding-top: 18px;
}

.schedule-full-link {
    align-items: center;
    color: var(--gold, #f59e0b);
    display: inline-flex;
    font-family: "Oswald", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    gap: 8px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: color 180ms ease, transform 180ms ease;
}

.schedule-full-link:hover {
    color: #ffd274;
    transform: translateX(3px);
}

.schedule-row button {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.23);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    height: 38px;
    width: 38px;
}

.schedule-empty {
    color: rgba(255, 255, 255, 0.55);
    padding: 34px 0;
}

/* Sección Promocional App (Android App Section) */
.app.section {
    background: #f7f4ed;
    color: var(--ink, #0b1714);
    overflow: hidden;
    padding: 100px 24px;
    position: relative;
}

.app-two-col {
    align-items: center;
    display: grid;
    gap: 72px;
    grid-template-columns: minmax(320px, 0.44fr) 1fr;
    margin-inline: auto;
    max-width: 1280px;
    width: 100%;
}

.app-text-col {
    display: flex;
    flex-direction: column;
    max-width: 480px;
    width: 100%;
}

.app-text-col .eyebrow {
    color: var(--green-600, #087b59);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.app-text-col h2 {
    color: #264673;
    font-family: "Oswald", sans-serif;
    font-size: clamp(2.4rem, 3.4vw, 3.8rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.02;
    margin-top: 12px;
    text-transform: uppercase;
}

.app-text-col h2 em {
    color: var(--green-600, #087b59);
    font-style: normal;
}

.app-lead {
    color: var(--ink-soft, #20312c);
    font-size: 1rem;
    line-height: 1.65;
    margin-top: 22px;
}

.app-attributes {
    align-items: center;
    border-bottom: 1px solid rgba(11, 23, 20, 0.1);
    border-top: 1px solid rgba(11, 23, 20, 0.1);
    display: flex;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-bottom: 32px;
    margin-top: 28px;
    padding: 16px 0;
}

.app-attr-item {
    align-items: center;
    color: var(--ink, #0b1714);
    display: flex;
    font-size: 0.76rem;
    font-weight: 700;
    gap: 8px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.app-attr-item i {
    color: var(--green-600, #087b59);
    font-size: 0.85rem;
}

.app-attr-dot {
    color: rgba(11, 23, 20, 0.25);
    font-size: 0.7rem;
}

.app-download-wrap {
    display: flex;
    margin-top: 8px;
}

.google-play-badge {
    display: inline-block;
    transition: transform 200ms ease, opacity 200ms ease;
}

.google-play-badge:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.google-play-badge img {
    display: block;
    height: 52px;
    width: auto;
}

.app-phones-col {
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
}

.app-phones-stage {
    align-items: center;
    display: flex;
    height: 520px;
    justify-content: center;
    max-width: 640px;
    position: relative;
    width: 100%;
}

.app-phones-bg-waves {
    background: radial-gradient(circle, rgba(8, 123, 89, 0.07) 0%, transparent 70%);
    border-radius: 50%;
    height: 480px;
    left: 50%;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 480px;
    z-index: 0;
}

.phone-shot {
    filter: drop-shadow(0 18px 30px rgba(4, 27, 21, 0.18));
    height: auto;
    max-height: 480px;
    object-fit: contain;
    position: absolute;
    transition: transform 300ms ease;
    width: 44%;
}

.phone-shot.dark-cover {
    left: 4%;
    top: 48%;
    transform: translateY(-50%) rotate(-6deg) scale(0.88);
    z-index: 1;
}

.phone-shot.player-shot {
    right: 4%;
    top: 48%;
    transform: translateY(-50%) rotate(6deg) scale(0.92);
    z-index: 2;
}

.phone-shot.main-cover {
    left: 50%;
    top: 46%;
    transform: translate(-50%, -50%) scale(1.04);
    z-index: 3;
}

.app-phones-stage:hover .phone-shot.main-cover {
    transform: translate(-50%, -52%) scale(1.06);
}

.app-phones-stage:hover .phone-shot.dark-cover {
    transform: translateY(-52%) rotate(-8deg) scale(0.9);
}

.app-phones-stage:hover .phone-shot.player-shot {
    transform: translateY(-52%) rotate(8deg) scale(0.94);
}

/* Rediseño Editorial Asimétrico de Sección Ecosistema ("MÁS QUE RADIO") */
.ecosystem.section {
    background: var(--paper, #fffdf8);
    padding: 100px 24px;
    position: relative;
}

.ecosystem-container {
    margin-inline: auto;
    max-width: 1280px;
    width: 100%;
}

.ecosystem-heading {
    margin-bottom: 44px;
    text-align: left;
}

.ecosystem-heading h2 {
    color: #264673;
    font-family: "Oswald", sans-serif;
    font-size: clamp(2.4rem, 3.8vw, 4.2rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.02;
    margin-top: 10px;
    text-transform: uppercase;
}

.ecosystem-heading h2 em {
    color: var(--green-600, #087b59);
    font-style: normal;
}

/* Layout Showcase Asimétrico */
.ecosystem-showcase {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(300px, 1fr) minmax(460px, 1.8fr);
}

.showcase-block {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transition: transform 220ms ease, box-shadow 220ms ease;
}

/* BLOQUE 1: APP (Izquierda Vertical - Compacto e Igualado en Altura) */
.app-block {
    background: #ffffff;
    border: 1px solid rgba(11, 23, 20, 0.09);
    box-shadow: 0 10px 30px rgba(11, 23, 20, 0.04);
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    min-height: 515px;
    padding: 34px 32px 0;
}

.block-badge-wrap {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.block-badge {
    align-items: center;
    display: inline-flex;
    font-size: 0.7rem;
    font-weight: 700;
    gap: 6px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.block-badge.green { color: var(--green-600, #087b59); }
.block-badge.dev { color: #38bdf8; }
.block-badge.building { color: var(--green-600, #087b59); }

.block-sub {
    color: var(--muted, #6f756f);
    font-size: 0.82rem;
    font-weight: 500;
}

.block-sub.light { color: rgba(255, 255, 255, 0.65); }
.block-sub.green-sub { color: #087b59; }

.app-block .block-body {
    margin-top: 18px;
    z-index: 2;
}

.app-block h3 {
    color: #264673;
    font-family: "Oswald", sans-serif;
    font-size: 1.95rem;
    font-weight: 600;
    line-height: 1.05;
    text-transform: uppercase;
}

.app-block p {
    color: var(--ink-soft, #20312c);
    font-size: 0.9rem;
    line-height: 1.55;
    margin-top: 10px;
}

.showcase-cta-btn {
    align-items: center;
    display: inline-flex;
    font-family: "Oswald", sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    gap: 8px;
    letter-spacing: 0.08em;
    margin-top: 18px;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 180ms ease, transform 180ms ease;
}

.showcase-cta-btn.green { color: var(--green-600, #087b59); }
.showcase-cta-btn.green:hover { color: var(--ink, #0b1714); transform: translateX(3px); }

.showcase-cta-btn.gold { color: var(--gold, #f0bd51); }
.showcase-cta-btn.gold:hover { color: #ffd274; transform: translateX(3px); }

/* Teléfono Reducido un 30% con Margen Lateral Proporcionado */
.app-phone-preview {
    align-self: center;
    margin-top: 18px;
    max-width: 175px;
    position: relative;
    width: 100%;
    z-index: 1;
}

.app-phone-img {
    display: block;
    height: auto;
    margin-bottom: -45px;
    object-fit: contain;
    object-position: top center;
    transition: transform 300ms ease;
    width: 100%;
}

.app-block:hover .app-phone-img {
    transform: translateY(-6px);
}

/* GRUPO DERECHO (STUDIO PROTAGONISTA + DIRECTORIO) */
.showcase-right-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* BLOQUE 2: STUDIO (PROTAGONISTA GRANDE) */
.studio-block {
    background: #004478;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 16px 40px rgba(0, 68, 120, 0.2);
    color: #ffffff;
    display: grid;
    gap: 28px;
    grid-template-columns: 1.1fr 1fr;
    min-height: 350px;
    padding: 34px 36px;
    position: relative;
}

.studio-bg-shapes {
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.studio-bg-shapes svg {
    height: 100%;
    width: 100%;
}

.studio-block-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.studio-logo-plate {
    background: #13233A;
    border: 1px solid rgba(240, 189, 81, 0.3);
    border-radius: 6px;
    display: inline-flex;
    margin-bottom: 14px;
    margin-top: 10px;
    padding: 7px 16px;
    width: fit-content;
}

.studio-logo-img {
    height: auto;
    max-height: 30px;
    max-width: 150px;
    object-fit: contain;
}

.studio-brand-header h3 {
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    font-size: 2.1rem;
    font-weight: 600;
    line-height: 1.05;
    text-transform: uppercase;
}

.studio-brand-header h3 em.gold {
    color: var(--gold, #f0bd51);
    font-style: normal;
}

.studio-brand-header p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.92rem;
    line-height: 1.55;
    margin-top: 10px;
}

.studio-interface-showcase {
    align-self: flex-end;
    margin-bottom: -45px;
    margin-right: -45px;
    position: relative;
    z-index: 2;
}

.studio-interface-window {
    background: #020c0a;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    overflow: hidden;
    transition: transform 300ms ease;
}

.studio-block:hover .studio-interface-window {
    transform: translateY(-6px);
}

.window-bar {
    align-items: center;
    background: #071714;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    gap: 6px;
    padding: 8px 12px;
}

.window-bar span {
    border-radius: 50%;
    height: 8px;
    width: 8px;
}

.window-bar span:nth-child(1) { background: #ef4444; }
.window-bar span:nth-child(2) { background: #f59e0b; }
.window-bar span:nth-child(3) { background: #10b981; }

.studio-interface-img {
    display: block;
    height: auto;
    max-height: 255px;
    object-fit: cover;
    object-position: top left;
    width: 100%;
}

/* BLOQUE 3: DIRECTORIO DE RADIOS (Aprovechamiento de Espacio con Dial Ampliado) */
.directory-block {
    align-items: center;
    background: #edf6f2;
    border: 1px solid rgba(8, 123, 89, 0.16);
    display: flex;
    justify-content: space-between;
    min-height: 145px;
    padding: 24px 32px;
    position: relative;
}

.directory-bg-shapes {
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.directory-bg-shapes svg {
    height: 100%;
    width: 100%;
}

.directory-block-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.directory-body h3 {
    color: #264673;
    font-family: "Oswald", sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1.1;
    text-transform: uppercase;
}

.directory-body p {
    color: var(--ink-soft, #20312c);
    font-size: 0.86rem;
    margin-top: 3px;
}

.directory-footer {
    margin-top: 4px;
}

.coming-soon-pill {
    background: rgba(8, 123, 89, 0.12);
    border: 1px solid rgba(8, 123, 89, 0.22);
    border-radius: 6px;
    color: var(--green-600, #087b59);
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 11px;
    text-transform: uppercase;
}

.directory-dial-graphic {
    flex-shrink: 0;
    height: 125px;
    margin-right: -10px;
    opacity: 0.9;
    position: relative;
    width: 125px;
    z-index: 2;
}

.directory-dial-graphic svg {
    height: 100%;
    width: 100%;
}

/* Pie de Página (Site Footer) - Tema Verdes Sólidos y Formas Orgánicas (Cierre de Página) */
.site-footer {
    background: #063B31;
    color: #ffffff;
    overflow: hidden;
    padding: 56px 24px 30px;
    position: relative;
}

/* Capa de Formas Curvas Orgánicas de Fondo en Verdes Sólidos */
.footer-shapes-bg {
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    position: absolute;
    z-index: 1;
}

.footer-shapes-bg svg {
    display: block;
    height: 100%;
    width: 100%;
}

.footer-container {
    margin-inline: auto;
    max-width: 1280px;
    position: relative;
    width: 100%;
    z-index: 2;
}

.footer-main-row {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: space-between;
}

.footer-brand {
    align-items: center;
    color: #ffffff;
    display: flex;
    gap: 14px;
}

.footer-brand img {
    height: 44px;
    object-fit: contain;
    width: 44px;
}

.footer-brand strong,
.footer-brand span {
    display: block;
}

.footer-brand strong {
    color: #ffffff;
    font-family: 'Designer', 'Oswald', sans-serif;
    font-size: 1.05rem;
    font-weight: normal;
    letter-spacing: 0.12em;
}

.footer-brand span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.76rem;
    margin-top: 2px;
}

.footer-links {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: clamp(16px, 2vw, 28px);
    justify-content: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.84);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.11em;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 180ms ease;
}

.footer-links a:hover {
    color: var(--gold, #f0bd51);
}

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

.footer-socials a {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    height: 38px;
    justify-content: center;
    transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
    width: 38px;
}

.footer-socials a:hover {
    background: var(--gold, #f0bd51);
    border-color: var(--gold, #f0bd51);
    color: #063B31;
    transform: translateY(-2px);
}

.footer-bottom-row {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 36px;
    padding-top: 22px;
    text-align: center;
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.74rem;
    letter-spacing: 0.06em;
}

/* Reproductor lateral */
.radio-console {
    background-color: #e7e0cf;
    background-image:
        radial-gradient(rgba(50, 43, 30, 0.055) 0.55px, transparent 0.75px),
        linear-gradient(100deg, rgba(255, 255, 255, 0.12), rgba(78, 67, 45, 0.035));
    background-size: 4px 4px, 100% 100%;
    border: 1px solid #b9b2a2;
    border-radius: 0;
    bottom: 16px;
    box-shadow: var(--shadow);
    color: var(--ink);
    overflow: hidden auto;
    position: fixed;
    right: 16px;
    scrollbar-width: none;
    top: 16px;
    width: var(--console-width);
    z-index: 200;
}

.radio-console::-webkit-scrollbar {
    display: none;
}

.console-expanded {
    min-height: 100%;
    padding: 12px 15px 14px;
}

.cover-frame {
    aspect-ratio: 1;
    background: #eee8da;
    border: 1px solid #a9a394;
    border-radius: 0;
    overflow: hidden;
    padding: 2px;
    position: relative;
}

.cover-frame > img {
    border-radius: 0;
    height: 100%;
    object-fit: contain;
    object-position: center;
    width: 100%;
}

.cover-shade {
    background: linear-gradient(0deg, rgba(2, 14, 11, 0.24), transparent 25%);
    border-radius: 0;
    inset: 2px;
    pointer-events: none;
    position: absolute;
}

.cover-station-chip {
    background: rgba(4, 27, 21, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 5px;
    bottom: 14px;
    color: #fff;
    font-size: 0.57rem;
    font-weight: 700;
    left: 14px;
    letter-spacing: 0.12em;
    max-width: calc(100% - 28px);
    overflow: hidden;
    padding: 7px 10px;
    position: absolute;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.track-meta {
    border-bottom: 1px solid var(--line);
    min-height: 134px;
    padding: 17px 45px 15px 6px;
    position: relative;
    text-align: center;
}

.live-label {
    align-items: center;
    color: var(--pink);
    display: flex;
    font-size: 0.64rem;
    font-weight: 800;
    gap: 7px;
    justify-content: center;
    letter-spacing: 0.08em;
}

.live-label span {
    animation: livePulse 1.5s ease-in-out infinite;
    background: var(--pink);
    border-radius: 50%;
    height: 6px;
    width: 6px;
}

@keyframes livePulse {
    50% { box-shadow: 0 0 0 5px rgba(239, 75, 147, 0.13); }
}

.track-meta h2 {
    font-family: "Oswald", sans-serif;
    font-size: 1.28rem;
    line-height: 1.12;
    margin-top: 8px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.track-meta > p:not(.live-label) {
    color: var(--muted);
    font-size: 0.76rem;
    margin-top: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.track-actions {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    right: 3px;
    top: 38px;
}

.track-actions button,
.console-controls button {
    background: transparent;
    color: #657069;
    cursor: pointer;
}

.track-actions button {
    height: 30px;
    width: 30px;
}

.track-actions button.active {
    color: var(--pink);
}

.digital-tuner {
    border-bottom: 1px solid var(--line);
    padding: 13px 1px 11px;
}

.tuner-label,
.vu-heading {
    align-items: center;
    color: var(--muted);
    display: flex;
    font-size: 0.56rem;
    font-weight: 800;
    justify-content: space-between;
    letter-spacing: 0.1em;
}

.tuner-label strong,
.vu-heading strong {
    color: var(--green-600);
}

.tuner-selector {
    align-items: center;
    display: grid;
    gap: 10px;
    grid-template-columns: 38px 1fr 38px;
    margin-top: 10px;
}

.tuner-selector > button {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink);
    cursor: pointer;
    height: 38px;
    transition: border-color 180ms ease, background 180ms ease;
    width: 38px;
}

.tuner-selector > button:hover {
    background: var(--cream);
    border-color: var(--green-600);
}

.tuner-station {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 52px;
}

.tuner-station img {
    height: 30px;
    max-width: 145px;
    object-fit: contain;
}

.tuner-station span {
    color: #434945;
    display: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    margin-top: 4px;
    text-transform: uppercase;
}

.tuner-station .tuner-frequency-readout {
    align-items: baseline;
    color: var(--muted);
    display: flex;
    font-family: "Oswald", sans-serif;
    gap: 5px;
    margin-top: 2px;
}

.tuner-frequency-readout b {
    color: var(--green-600);
    font-size: 0.55rem;
    letter-spacing: 0.1em;
}

.tuner-frequency-readout strong {
    color: var(--pink);
    font-size: 0.72rem;
}

.tuner-frequency-readout i {
    font-size: 0.52rem;
    font-style: normal;
}

.tuner-scale {
    height: 54px;
    margin-top: 10px;
    position: relative;
    width: 100%;
}

.scale-track-inner {
    height: 100%;
    margin-inline: 18px;
    position: relative;
}

.scale-ticks {
    background: none;
    height: 100%;
    inset: 0;
    position: absolute;
}

.tick-item {
    align-items: center;
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    user-select: none;
}

.tick-item .tick-line {
    background: rgba(11, 23, 20, 0.28);
    border-radius: 1px;
    display: block;
    width: 1.5px;
}

.tick-item.major .tick-line {
    background: rgba(11, 23, 20, 0.52);
    height: 14px;
}

.tick-item.minor .tick-line {
    background: rgba(11, 23, 20, 0.24);
    height: 8px;
}

.tick-item .tick-label {
    color: #43524c;
    cursor: pointer;
    display: block;
    font-family: "Oswald", sans-serif;
    font-size: 0.70rem;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 4px;
    text-align: center;
    white-space: nowrap;
    opacity: 0.95;
}

.tick-item.active .tick-label {
    color: var(--pink, #ef4b93);
    font-weight: 900;
    opacity: 1;
    text-shadow: 0 0 8px rgba(239, 75, 147, 0.3);
}

.scale-marker {
    background: var(--pink);
    border-radius: 99px;
    box-shadow: 0 0 0 4px rgba(239, 75, 147, 0.18);
    height: 20px;
    left: 0;
    position: absolute;
    top: 0;
    transform: translateX(-50%);
    transition: left 350ms cubic-bezier(0.25, 0.8, 0.25, 1);
    width: 3px;
    z-index: 3;
}

.tuner-presets {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 4px;
    margin-top: 8px;
    padding: 0 2px;
}

.preset-btn {
    background: #ffffff;
    border: 1px solid var(--line, #b9b2a2);
    border-radius: 4px;
    color: var(--ink, #20312c);
    font-family: "Oswald", sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 0;
    text-align: center;
    cursor: pointer;
    transition: all 180ms ease;
    user-select: none;
}

.preset-btn:hover {
    background: var(--cream, #eee8da);
    border-color: var(--green-600, #087b59);
    color: var(--green-600, #087b59);
}

.preset-btn.active {
    background: var(--pink, #ef4b93);
    border-color: var(--pink, #ef4b93);
    color: #ffffff;
    box-shadow: 0 0 6px rgba(239, 75, 147, 0.4);
}

.preset-btn.saving {
    animation: presetPulse 300ms ease-in-out infinite alternate;
}

@keyframes presetPulse {
    from { transform: scale(1); }
    to { transform: scale(1.08); background: var(--green-600, #087b59); color: #ffffff; }
}

.tuner-names {
    align-items: center;
    color: #777d78;
    display: flex;
    font-family: "Oswald", sans-serif;
    font-size: 0.65rem;
    justify-content: space-between;
    min-height: 29px;
    margin-top: 2px;
    overflow: hidden;
    width: 100%;
}

.tuner-names span {
    cursor: pointer;
    flex: 1 1 0;
    text-align: center;
    transition: color 180ms ease, font-weight 180ms ease, transform 180ms ease;
    user-select: none;
}

.tuner-names span b,
.tuner-names span small {
    display: block;
    line-height: 1.15;
}

.tuner-names span b {
    font-weight: 700;
}

.tuner-names span small {
    font-family: "DM Sans", sans-serif;
    font-size: 0.42rem;
    letter-spacing: 0.06em;
    margin-top: 2px;
}

.tuner-names span:focus-visible {
    border-radius: 4px;
    outline: 2px solid var(--pink);
    outline-offset: 2px;
}

.tuner-names span:hover {
    color: var(--green-900);
}

.tuner-names span.tuner-band-header {
    color: var(--green-900);
    cursor: default;
    font-weight: 800;
    letter-spacing: 0.08em;
}

.tuner-names span.active {
    color: var(--pink);
    font-weight: 700;
}

.vu-section {
    padding: 12px 1px 9px;
}

.vu-heading i {
    background: #9ca49f;
    border-radius: 50%;
    display: inline-block;
    height: 5px;
    margin-right: 5px;
    width: 5px;
}

.vu-grid {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 9px;
}

.vu-meter {
    background: transparent;
    border: 1px solid #918a7b;
    box-shadow: none;
    min-width: 0;
    padding: 2px;
}

.vu-face {
    aspect-ratio: 320 / 170;
    background:
        radial-gradient(circle at 50% 90%, rgba(191, 134, 40, 0.16), transparent 52%),
        linear-gradient(180deg, #eee1b0 0%, #f4e8bb 54%, #dac88d 100%);
    border: 0;
    box-shadow: inset 0 0 18px rgba(83, 60, 20, 0.28);
    height: auto;
    overflow: hidden;
}

.vu-dial {
    display: block;
    height: 100%;
    width: 100%;
}

.vu-arc,
.vu-arc-red {
    fill: none;
    stroke: #39362e;
    stroke-width: 2.2;
}

.vu-arc-red {
    stroke: #c44431;
    stroke-width: 8;
}

.vu-ticks line {
    stroke: #39362e;
    stroke-width: 3;
}

.vu-ticks line.hot {
    stroke: #c44431;
}

.vu-numbers text,
.peak-label {
    fill: #37342e;
    font-family: "DM Sans", sans-serif;
    font-size: 15px;
    font-weight: 600;
}

.vu-numbers text.hot {
    fill: #bd3d2d;
}

.vu-numbers text.plus {
    font-size: 22px;
}

.peak-light {
    fill: #a82f25;
    opacity: 0.38;
    stroke: #7c241d;
    stroke-width: 2;
    transition: opacity 80ms linear, filter 80ms linear;
}

.radio-console.is-peak .peak-light {
    filter: drop-shadow(0 0 5px #e14835);
    opacity: 1;
}

.peak-label {
    font-size: 10px;
    letter-spacing: 1px;
}

.vu-word {
    fill: #302e29;
    font-family: "Oswald", sans-serif;
    font-size: 38px;
    font-weight: 500;
}

.vu-channel {
    fill: #4c4639;
    font-family: "Oswald", sans-serif;
    font-size: 18px;
    font-weight: 700;
}

.vu-needle {
    stroke: #22201b;
    stroke-width: 2.2;
    transform: rotate(-50deg);
    transform-box: view-box;
    transform-origin: 160px 155px;
    transition: transform 80ms linear;
}

.vu-pivot {
    fill: #27241f;
    stroke: #746b57;
    stroke-width: 3;
}

.console-controls {
    align-items: center;
    display: grid;
    gap: 10px;
    grid-template-columns: 30px 1fr 42px;
    padding: 0 2px;
}

.console-controls input {
    accent-color: var(--pink);
    cursor: pointer;
    width: 100%;
}

.console-controls .console-play {
    align-items: center;
    background: var(--green-800);
    border-radius: 50%;
    color: #fff;
    display: flex;
    height: 40px;
    justify-content: center;
    width: 40px;
}

.console-owned-return {
    align-items: center;
    background: rgba(255, 255, 255, 0.32);
    border: 1px solid #bbb3a2;
    border-radius: 4px;
    color: var(--ink);
    cursor: pointer;
    display: grid;
    gap: 10px;
    grid-template-columns: 28px 1fr 14px;
    margin-top: 13px;
    padding: 10px 11px;
    text-align: left;
    width: 100%;
}

.console-owned-return[hidden] {
    display: none;
}

.console-owned-return > i:first-child {
    color: var(--green-600);
    font-size: 1rem;
}

.console-owned-return > i:last-child {
    color: var(--muted);
    font-size: 0.62rem;
}

.console-owned-return strong,
.console-owned-return small {
    display: block;
}

.console-owned-return strong {
    font-family: "Oswald", sans-serif;
    font-size: 0.74rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.console-owned-return small {
    color: var(--muted);
    font-size: 0.58rem;
    margin-top: 2px;
}

.console-compact,
.console-mobile-close {
    display: none;
}

.toast {
    background: var(--ink);
    border-radius: 999px;
    bottom: 24px;
    color: #fff;
    font-size: 0.75rem;
    left: 50%;
    opacity: 0;
    padding: 11px 18px;
    pointer-events: none;
    position: fixed;
    transform: translate(-50%, 18px);
    transition: opacity 180ms ease, transform 180ms ease;
    z-index: 500;
}

.toast.visible {
    opacity: 1;
    transform: translate(-50%, 0);
}

@media (max-width: 1350px) {
    :root { --console-width: 360px; }
    .site-header { padding-inline: 28px; }
    .main-nav { gap: 17px; }
    .main-nav a { font-size: 0.65rem; }
    .brand { font-size: 0.92rem; letter-spacing: 0.1em; }
    .hero-signals { display: none; }
}

@media (max-width: 1020px) {
    :root { --header-height: 72px; }

    .site-header {
        right: 18px;
    }

    .site-content {
        margin-right: 0;
        padding-bottom: 88px;
    }

    .main-nav {
        align-items: stretch;
        background: rgba(248, 244, 233, 0.94);
        backdrop-filter: blur(20px) saturate(125%);
        border: 1px solid rgba(255, 255, 255, 0.78);
        border-radius: 12px;
        box-shadow: 0 16px 34px rgba(42, 48, 42, 0.14);
        display: none;
        flex-direction: column;
        gap: 0;
        left: 0;
        padding: 20px 28px 28px;
        position: absolute;
        right: 0;
        top: calc(100% + 8px);
    }

    .main-nav.open { display: flex; }
    .main-nav a { font-size: 0.76rem; padding: 13px 0; }
    .main-nav a::after { display: none; }
    .nav-toggle { display: block; }

    .radio-console {
        border-radius: 0;
        bottom: 0;
        left: 0;
        overflow: visible;
        right: 0;
        top: auto;
        width: 100%;
    }

    .radio-console:not(.mobile-open) {
        background-color: #e7e0cf;
        background-image: radial-gradient(rgba(50, 43, 30, 0.055) 0.55px, transparent 0.75px);
        background-size: 4px 4px;
        border-radius: 0;
        height: 78px;
    }

    .radio-console:not(.mobile-open) .console-expanded { display: none; }

    .radio-console.mobile-open {
        border-radius: 0;
        height: 100dvh;
        overflow-y: auto;
        top: 0;
        z-index: 400;
    }

    .radio-console.mobile-open .console-expanded {
        margin: 0 auto;
        max-width: 430px;
        padding: 18px 18px 24px;
    }

    .console-compact {
        align-items: center;
        background: transparent;
        color: var(--ink);
        cursor: pointer;
        display: grid;
        gap: 12px;
        grid-template-columns: 52px 1fr 30px;
        height: 78px;
        padding: 10px 18px;
        text-align: left;
        width: 100%;
    }

    .radio-console.mobile-open .console-compact { display: none; }

    .console-compact img {
        border-radius: 9px;
        height: 52px;
        object-fit: cover;
        width: 52px;
    }

    .console-compact span { min-width: 0; }
    .console-compact strong,
    .console-compact small {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .console-compact strong { font-size: 0.82rem; }
    .console-compact small { color: var(--muted); font-size: 0.7rem; margin-top: 3px; }

    .console-mobile-close {
        background: var(--green-950);
        border-radius: 50%;
        color: #fff;
        cursor: pointer;
        display: none;
        height: 38px;
        position: fixed;
        right: 16px;
        top: 16px;
        width: 38px;
        z-index: 2;
    }

    .radio-console.mobile-open .console-mobile-close { display: block; }

    .on-air { grid-template-columns: 1fr; }
    .ecosystem-grid { grid-template-columns: 1fr 1fr; }
    .directory-card { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
    .site-header { left: 12px; padding-inline: 16px; right: 12px; top: 12px; }
    .brand { font-size: 0.88rem; }
    .brand img { height: 34px; width: 38px; }

    .hero {
        align-items: flex-end;
        min-height: 720px;
        padding: calc(var(--header-height) + 60px) 24px 58px;
    }

    .hero-media { background-position: 68% center; }
    .hero-overlay {
        background:
            linear-gradient(0deg, rgba(242, 236, 222, 0.99) 0%, rgba(242, 236, 222, 0.93) 54%, rgba(242, 236, 222, 0.34) 82%, rgba(242, 236, 222, 0.12) 100%),
            linear-gradient(90deg, rgba(242, 236, 222, 0.58), transparent 70%);
    }
    .hero h1 { font-size: clamp(3.75rem, 18vw, 5.6rem); }
    .hero-lead { font-size: 0.92rem; }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .button { width: 100%; }

    .section { padding: 82px 24px; }
    .section-heading { align-items: flex-start; flex-direction: column; gap: 24px; margin-bottom: 38px; }
    .section-heading h2,
    .on-air h2 { font-size: clamp(2.6rem, 12vw, 4rem); }

    .stations-two-col {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .stations-col-left {
        position: static;
    }
    .featured-station-glass {
        gap: 24px;
        grid-template-columns: 1fr;
        padding: 24px 20px;
        text-align: center;
    }
    .glass-left-area {
        align-items: center;
        max-width: 100%;
        text-align: center;
    }
    .glass-visual-col {
        aspect-ratio: 1 / 1;
        height: auto;
        max-height: 250px;
        max-width: 250px;
        width: 100%;
    }
    .glass-now-playing {
        text-align: center;
    }
    .glass-info-col {
        align-items: center;
        text-align: center;
    }
    .glass-body {
        text-align: center;
    }
    .glass-listen-btn {
        justify-content: center;
        width: 100%;
    }
    .segmented-selector-row {
        display: flex;
        gap: 8px;
        overflow-x: auto;
        padding-bottom: 6px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }
    .segmented-selector-row::-webkit-scrollbar {
        display: none;
    }
    .segmented-selector-item {
        flex: 0 0 110px;
        min-height: 48px;
        padding: 8px 6px;
        scroll-snap-align: start;
    }

    .schedule-station-tabs-bar {
        gap: 4px;
    }
    .station-tab-item {
        min-height: 52px;
        padding: 8px 10px;
    }
    .station-tab-item img {
        height: 26px;
        max-width: 100px;
    }

    .on-air-two-col {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .on-air-intro {
        max-width: 100%;
        position: static;
    }
    .schedule-inner {
        max-width: 100%;
    }
    .schedule-panel {
        padding: 22px 16px;
    }
    .schedule-row-item {
        gap: 16px;
        grid-template-columns: 90px 1fr auto;
        padding: 16px 12px;
    }

    .app-two-col {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .app-text-col {
        max-width: 100%;
    }
    .app-phones-stage {
        height: 440px;
    }
    .phone-shot {
        max-height: 420px;
    }

    .ecosystem-showcase {
        grid-template-columns: 1fr;
    }
    .app-block {
        min-height: auto;
        padding-bottom: 0;
    }
    .studio-block {
        grid-template-columns: 1fr;
        padding: 32px 28px;
    }
    .studio-interface-showcase {
        margin-bottom: -30px;
        margin-right: 0;
    }
    .footer-main-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 24px;
    }
    .footer-brand {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

@media (max-width: 640px) {
    .ecosystem.section {
        padding: 60px 18px;
    }
    .ecosystem-showcase {
        display: flex;
        flex-direction: column;
        gap: 24px;
    }
    .app-block {
        padding: 28px 24px 0;
    }
    .app-phone-preview {
        max-width: 200px;
    }
    .studio-block {
        padding: 28px 24px;
    }
    .studio-brand-header h3 {
        font-size: 1.8rem;
    }
    .studio-interface-img {
        max-height: 200px;
    }
    .directory-block {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 28px 24px;
    }
    .directory-dial-graphic {
        display: none;
    }
    .on-air.section { padding: 65px 18px; }
    .schedule-station-tabs-bar {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 4px;
    }
    .station-tab-item {
        flex: 0 0 105px;
        scroll-snap-align: start;
        border-right: 1px solid rgba(255, 255, 255, 0.07);
    }
    .schedule-row-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .schedule-waveform {
        display: none;
    }

    .app.section {
        padding: 60px 18px;
    }
    .app-attributes {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    .app-attr-dot {
        display: none;
    }
    .app-phones-stage {
        height: 350px;
    }
    .phone-shot {
        max-height: 330px;
        width: 50%;
    }
    .phone-shot.dark-cover {
        left: 2%;
        transform: translateY(-50%) rotate(-4deg) scale(0.85);
    }
    .phone-shot.player-shot {
        right: 2%;
        transform: translateY(-50%) rotate(4deg) scale(0.88);
    }
    .phone-shot.main-cover {
        transform: translate(-50%, -50%) scale(1.0);
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Real-time Schedule Live Badge & Highlighting */
.schedule-row-item.is-active-now {
    background: rgba(16, 185, 129, 0.14) !important;
    border-left: 4px solid #10b981 !important;
    border-radius: 6px;
    padding-left: 12px;
}

.schedule-live-badge {
    align-items: center;
    background: rgba(239, 68, 68, 0.18);
    border: 1px solid rgba(239, 68, 68, 0.4);
    border-radius: 4px;
    color: #ef4444;
    display: inline-flex;
    font-size: 0.68rem;
    font-weight: 700;
    gap: 6px;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
    padding: 3px 8px;
    text-transform: uppercase;
}

.schedule-live-badge .pulse-dot {
    animation: liveBadgePulse 1.4s ease-in-out infinite;
    background: #ef4444;
    border-radius: 50%;
    display: inline-block;
    height: 6px;
    width: 6px;
}

@keyframes liveBadgePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.3); }
}

.schedule-waveform {
    align-items: flex-end;
    display: flex;
    gap: 3px;
    height: 20px;
}

.schedule-waveform span {
    animation: waveformBar 1.2s ease-in-out infinite alternate;
    background: #10b981;
    border-radius: 2px;
    display: inline-block;
    width: 3px;
}

.schedule-waveform span:nth-child(1) { animation-delay: 0.1s; height: 35%; }
.schedule-waveform span:nth-child(2) { animation-delay: 0.3s; height: 85%; }
.schedule-waveform span:nth-child(3) { animation-delay: 0.2s; height: 55%; }
.schedule-waveform span:nth-child(4) { animation-delay: 0.4s; height: 100%; }
.schedule-waveform span:nth-child(5) { animation-delay: 0.15s; height: 45%; }

@keyframes waveformBar {
    0% { transform: scaleY(0.3); }
    100% { transform: scaleY(1); }
}

/* Floating PWA Install Vertical Widget (Left Screen Edge) */
.pwa-vertical-widget {
    left: 0;
    position: fixed;
    top: 48%;
    transform: translateY(-50%);
    z-index: 195;
}

.pwa-vertical-widget[hidden] {
    display: none !important;
}

.pwa-widget-tab {
    align-items: center;
    background: linear-gradient(180deg, #063b31 0%, #075244 100%);
    border: 1px solid rgba(240, 189, 81, 0.45);
    border-left: none;
    border-radius: 0 12px 12px 0;
    box-shadow: 4px 0 20px rgba(4, 27, 21, 0.45), 0 0 12px rgba(240, 189, 81, 0.2);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    font-family: "Oswald", sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    gap: 12px;
    letter-spacing: 0.12em;
    padding: 16px 11px;
    transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.pwa-widget-tab span {
    writing-mode: vertical-lr;
    text-orientation: mixed;
    transform: rotate(180deg);
}

.pwa-widget-tab i {
    color: var(--gold, #f0bd51);
    font-size: 1rem;

    animation: pwaIconBounce 1.8s ease-in-out infinite;
}

@keyframes pwaIconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.pwa-vertical-widget:hover .pwa-widget-tab {
    background: linear-gradient(180deg, #075244 0%, #087a60 100%);
    box-shadow: 6px 0 24px rgba(4, 27, 21, 0.6), 0 0 18px rgba(240, 189, 81, 0.4);
}

/* Tarjeta Desplegable al Pasar el Cursor */
.pwa-widget-card {
    background: rgba(6, 59, 49, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(240, 189, 81, 0.45);
    border-left: none;
    border-radius: 0 16px 16px 0;
    box-shadow: 12px 18px 40px rgba(0, 0, 0, 0.55), 0 0 20px rgba(240, 189, 81, 0.2);
    color: #ffffff;
    left: 0;
    opacity: 0;
    padding: 22px 24px;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateX(-105%);
    transition: transform 320ms cubic-bezier(0.25, 0.8, 0.25, 1), opacity 250ms ease;
    width: 290px;
    z-index: 2;
}

.pwa-vertical-widget:hover .pwa-widget-card,
.pwa-vertical-widget:focus-within .pwa-widget-card,
.pwa-vertical-widget.is-open .pwa-widget-card {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(-50%) translateX(0);
}

.pwa-card-badge {
    align-items: center;
    color: var(--gold, #f0bd51);
    display: flex;
    font-size: 0.72rem;
    font-weight: 700;
    gap: 7px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.pwa-widget-card h3 {
    color: #ffffff;
    font-family: "Oswald", sans-serif;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.15;
    margin-top: 8px;
    text-transform: uppercase;
}

.pwa-widget-card p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.82rem;
    line-height: 1.5;
    margin-top: 8px;
}

.pwa-card-actions-row {
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-top: 14px;
}

.pwa-card-install-btn {
    align-items: center;
    background: linear-gradient(135deg, #10b981 0%, #087a60 100%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    color: #ffffff;
    cursor: pointer;
    display: flex;
    font-family: "Oswald", sans-serif;
    font-size: 0.84rem;
    font-weight: 600;
    gap: 8px;
    justify-content: center;
    letter-spacing: 0.08em;
    padding: 10px 14px;
    text-transform: uppercase;
    transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
    width: 100%;
}

.pwa-card-install-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #065f46 100%);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
    transform: translateY(-2px);
}

.pwa-card-playstore-btn {
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    display: flex;
    font-family: "Oswald", sans-serif;
    font-size: 0.80rem;
    font-weight: 600;
    gap: 8px;
    justify-content: center;
    letter-spacing: 0.08em;
    padding: 9px 14px;
    text-decoration: none;
    text-transform: uppercase;
    transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
    width: 100%;
}

.pwa-card-playstore-btn i {
    color: #60a5fa;
}

.pwa-card-playstore-btn:hover {
    background: rgba(255, 255, 255, 0.16);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .pwa-vertical-widget {
        top: 42%;
    }
    .pwa-widget-card {
        width: 260px;
        padding: 16px 18px;
    }
}
