body {
    min-height: 100vh;
    min-height: 100dvh;
    display: grid;
    grid-template-rows: auto 1fr auto;
    margin: 0;
    
}
body{
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
  color: #252525;
  background-color: var(--page-bg, #ffffff);
}
h1, h2, h3, h4, h5, h6 {
    color: #000000;
    padding: 0;
    margin: 0;
}
h1 { font-size: clamp(24px, 5vw + 1rem, 42px); }
h2 { font-size: clamp(20px, 4vw + 1rem, 32px); }
h3 { font-size: clamp(18px, 3vw + 1rem, 24px); }
h4 { font-size: clamp(15px, 2vw + 0.8rem, 20px); }
h5 { font-size: clamp(15px, 1.5vw + 0.7rem, 16px); }
h6 { font-size: clamp(15px, 1vw + 0.6rem, 15px); } 
a{
    color: #222222;
    text-decoration: none;
}
a:hover{
    color: #007bff;
    text-decoration: none;
}

.main-content{
    max-width: 1300px;
    margin: 20px auto;
    width: 100%;
    padding: 20px;
    border: solid 1px #ccc;
    border-radius: 15px;
    background-color: #ffffff;
    box-sizing: border-box;
}

.page-container {
    margin: 0 auto;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
}

.header {
    background: var(--header-bg, #333333);
    color: var(--header-text, #ffffff);
    border-bottom: 1px solid var(--header-border, rgba(255, 255, 255, 0.12));
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 1rem;
}

.brand {
    color: inherit;
    text-decoration: none;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 0.4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 55%;
}

.header-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    flex-wrap: nowrap;
    overflow: hidden;
}

.header-nav-link {
    color: var(--header-nav-link, var(--header-text, #ffffff));
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    padding: 10px 10px;
    border-radius: 10px;
    transition: background 0.2s ease, color 0.2s ease;
}

.header-nav-link:hover {
    color: var(--header-nav-link-hover, var(--header-link-hover, #d30a0a));
}

.nav-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    cursor: pointer;
}

.nav-toggle-icon {
    width: 18px;
    height: 2px;
    background: var(--header-text, #ffffff);
    position: relative;
    display: block;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 18px;
    height: 2px;
    background: var(--header-text, #ffffff);
}

.nav-toggle-icon::before {
    top: -6px;
}

.nav-toggle-icon::after {
    top: 6px;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.mobile-menu-panel {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 80vw;
    background: var(--mobile-menu-panel-bg, #0b1220);
    color: var(--mobile-menu-panel-text, #ffffff);
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.open .mobile-menu-panel {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border-bottom: 1px solid var(--mobile-menu-header-border, rgba(255, 255, 255, 0.12));
}

.mobile-menu-title {
    font-weight: 800;
    letter-spacing: 0.4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
    position: relative;
}

.mobile-menu-close::before,
.mobile-menu-close::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 18px;
    height: 2px;
    background: #ffffff;
    transform-origin: center;
}

.mobile-menu-close::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-menu-close::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.mobile-menu-nav {
    padding: 12px 10px 18px;
    overflow-y: auto;
}

.mobile-menu-link {
    display: block;
    padding: 12px 12px;
    border-radius: 12px;
    color: var(--mobile-menu-link, #ffffff);
    text-decoration: none;
    font-weight: 600;
}

.mobile-menu-link:hover {
    color: var(--mobile-menu-link-hover, #d30a0a);
    color: #ffffff;
}

.main-content {
    padding: 1rem;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
}
.container{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Hero section */
.home-hero {
    background: #0a0a0a;
    overflow: hidden;
    padding: 0;
}

.home-hero--tv{
    background-color: #000;
    padding: 40px 0;
    margin-bottom: 40px;
    border-radius: 15px;

    
}

.home-hero-inner {
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    max-height: 500px;
    background: #000;
    border-radius: 8px;
    overflow: hidden;
}

.home-hero-inner .hero-tv-player,
.home-hero-inner .sidebar-tv-player,
.home-hero-inner .player-tv-container {
    width: 100%;
    height: 100%;
}

.home-hero-inner .hero-tv-player iframe,
.home-hero-inner .sidebar-tv-player iframe,
.home-hero-inner .player-tv-wrapper {
    width: 100%;
    height: 100%;
}

.home-hero-inner video {
    width: 100%;
    height: 100%;
}

.home-hero--radio {
    background: #000000;
    padding: 40px 0;
    margin-bottom: 40px;
    border-radius: 15px;
}

.home-hero--radio .radio-hero {
    height: 100%;
    min-height: auto;
}

.home-hero--radio .radio-player #lunaradio {
    width: 100% !important;
    height: 100% !important;
    min-height: 300px;
}

@media (max-width: 768px) {
    .home-hero--tv .home-hero-inner {
        max-width: 100%;
        border-radius: 0;
        max-height: 300px;
    }
    .home-hero--radio .home-hero-inner {
        max-width: 100%;
        border-radius: 0;
        aspect-ratio: auto;
        max-height: 500px;
        overflow: hidden;
    }
    .home-hero--radio .radio-player #lunaradio {
        height: 420px !important;
    }
}

.hero-tv-player {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-tv-player iframe {
    width: 100%;
    height: 100%;
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-tv-player video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-tv-player--stream {
    background: #000;
}

.radio-hero {
    height: 100%;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    background: #1a1a1a;
    overflow: hidden;
}

.radio-player {
    flex: 1 1 auto;
    min-height: 0;
}

.radio-player #lunaradio {
    width: 100% !important;
    height: 500px !important;
    display: block;
}

.home-fullheight .radio-hero {
    min-height: 100%;
}

.home-fullheight:not(.home-hero-mobile-full) {
    height: 600px;
    min-height: 600px;
}

@media (max-width: 1199px) {
    .home-fullheight:not(.home-hero-mobile-full) {
        height: auto;
        min-height: 420px;
    }
}

.footer {
    background: var(--footer-bg, #333333);
    color: var(--footer-text, #ffffff);
    border-top: 1px solid var(--footer-border, rgba(255, 255, 255, 0.12));
}

.footer .container {
    padding: 1rem;
}

.menu-footer {
    margin-bottom: 14px;
}

.menu-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.menu-footer-link {
    display: inline-flex;
    align-items: center;
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--menu-footer-link, var(--footer-text, #ffffff));
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
}

.menu-footer-link:hover {
    color: var(--menu-footer-link-hover, var(--footer-link-hover, #d30a0a));
}

.pie-footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 12px;
}

.copy {
    opacity: 0.9;
    font-size: 13px;
}

.created-by {
    text-align: right;
    font-size: 13px;
    opacity: 0.95;
}
/*
.footer a {
    color: var(--footer-link, #ffffff);
    font-weight: 700;
    text-decoration: none;
}

.footer a:hover {
    color: var(--footer-link-hover, #d30a0a);
    text-decoration: underline;
}*/

@media (max-width: 700px) {
    .pie-footer {
        grid-template-columns: 1fr;
    }

    .created-by {
        text-align: center;
    }

    .copy {
        text-align: center;
    }
}

@media (max-width: 959px) {
    .menu-footer-link {
        padding: 8px 10px;
        font-size: 12px;
    }

    .menu-footer-list {
        gap: 10px;
    }
}

@media (max-width: 959px) {
    .header-nav {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .brand {
        max-width: 75%;
    }
}


/*************************************
 CSS MODIFICACION HOME SHORTCODES
*************************************/
body.home-shortcodes .home-tv {
    width: 100%;
    height: auto;
    min-height: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    overflow: hidden;
}

body.home-shortcodes .home-tv .player-tv-container {
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto !important;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

body.home-shortcodes .home-tv .player-tv-wrapper {
    height: auto;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    background: #000000;
    border-radius: 8px;
    overflow: hidden;
}


.home-shortcodes-container {
    width: 100%;
    padding: 0;
}
@media (max-width: 959px) {
.main-content {
    padding: 0 0 1rem 0;
}
}
.blog-container {
    max-width: 100%;
    margin: 0 auto;    
    padding: 0;
}

.appstores-section {
    margin: 0 20px 0px;
    padding: 0px 10px 16px;
}

body.home-shortcodes .home-block-title {
    margin: 0 0 10px 0;
}

body.home-shortcodes .home-block {
    background: var(--home-block-bg, #ffffff);
}

body.home-shortcodes .home-block-inner {
    max-width: 1200px;
    margin: 0 auto;
}

body.home-shortcodes .home-block-title {
    color: var(--home-block-title-color, #0f172a);
}
/**** CSS HEADER ****/
.container-header{
    margin: 0 auto;
    max-width: 1200px;
}
/*************************
CSS BLOG 
*************************************/
.blog-main-content {
    width: 100%;
    background-color: #ffffff;
    padding: 1rem 10px;
}
@media (max-width: 768px) {
    .nota-contenido {
        font-size: 15px;
        line-height: 1.7;
        padding: 0px 16px;
    }
}
/***** CSS PAGES ***/
.container-page {
    flex-grow: 1;
    padding: 1rem 10px;
    border: solid 1px #ccc;
    background-color: #ffffff;
}
.page-title {
    text-align: center;
    color: var(--page-title-color, #0000ff);
    border-bottom: 3px solid var(--page-title-border, #0000ff); 
    width: 100%;  
    padding-bottom: 10px; 
    text-transform: uppercase;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 20px 0;
}

/*************************
CSS DE STAFF
**************************/
.staff-grid{
    margin-top: 10px;
    margin-bottom: 20px;
}

/*************************
CSS DE PROGRAM
**************************/
.program-grid {
    margin-top: 10px;
    margin-bottom: 20px;
}

/*************************
THEME PRINCIPAL EDITORIAL
**************************/
.main-content {
    max-width: 1320px;
    margin: 18px auto 24px;
    padding: 18px;
    border: 1px solid #e7ebf0;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.header {
    position: sticky;
    top: 0;
    z-index: 999;
    backdrop-filter: blur(12px);
}

.header-inner {
    gap: 24px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    justify-content: flex-end;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    max-width: 48%;
}

.brand-logo {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    object-fit: cover;
    background: #ffffff;
    padding: 4px;
}

.brand-name {
    display: inline-block;
}

.header-live-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 16px;
    border-radius: 999px;
    background: #ea580c;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 8px 20px rgba(234, 88, 12, 0.24);
}

.header-live-link:hover {
    color: #ffffff;
    background: #c2410c;
}

.mobile-menu-link--live {
    background: rgba(234, 88, 12, 0.18);
    color: #ffffff;
}

.mobile-live-bar {
    display: none;
}

.editorial-home,
.editorial-blog-page {
    width: 100%;
}

.editorial-home-grid,
.editorial-blog-shell {
    display: grid;
    grid-template-columns: minmax(0, 1.65fr) 340px;
    gap: 28px;
    align-items: start;
}

.editorial-main-column,
.editorial-blog-feed,
.editorial-article {
    min-width: 0;
}

.featured-story {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 18px;
    border: 1px solid #e8edf3;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    margin-bottom: 26px;
}

.featured-story--blog {
    margin-bottom: 22px;
}

.featured-story-media {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    background: #f8fafc;
}

.featured-story-media img {
    width: 100%;
    height: auto;
    min-height: 0;
    object-fit: contain;
    display: block;
}

.featured-story-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: flex-start;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ea580c;
}

.featured-story-meta,
.story-stack-meta,
.editorial-card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.story-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: #0f172a;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.story-badge:hover {
    color: #ffffff;
}

.story-badge.subtle {
    background: #eef2f7;
    color: #0f172a;
}

.story-date {
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
}

.featured-story-title {
    font-size: clamp(28px, 2.6vw, 42px);
    line-height: 1.12;
}

.featured-story-title a,
.story-stack-body h3 a,
.editorial-card-body h3 a,
.sidebar-news-item,
.related-post-title a {
    color: #0f172a;
}

.featured-story-excerpt,
.story-stack-body p,
.editorial-card-body p,
.sidebar-helper,
.sidebar-empty {
    color: #475569;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.featured-story-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 4px;
}

.primary-link,
.secondary-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 700;
}

.primary-link {
    background: #0f172a;
    color: #ffffff;
}

.primary-link:hover {
    color: #ffffff;
    background: #1e293b;
}

.secondary-link {
    border: 1px solid #d5dbe3;
    color: #0f172a;
    background: #ffffff;
}

.secondary-link:hover {
    color: #0f172a;
    background: #f8fafc;
}

.editorial-section {
    margin-top: 28px;
}

.editorial-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.editorial-section-head h2,
.sidebar-card-head h2 {
    font-size: 1.35rem;
    line-height: 1.25;
}

.editorial-section-head a {
    color: #ea580c;
    font-weight: 700;
}

.story-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.story-stack-item {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 16px;
    padding: 16px;
    border: 1px solid #e8edf3;
    border-radius: 16px;
    background: #ffffff;
}

.story-stack-thumb {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background: #e5e7eb;
    min-height: 126px;
}

.story-stack-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.story-stack-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.story-stack-body h3,
.editorial-card-body h3 {
    font-size: 1.12rem;
    line-height: 1.35;
}

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

.editorial-card {
    border: 1px solid #e8edf3;
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
}

.editorial-card-media {
    display: block;
    background: #e5e7eb;
}

.editorial-card-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.editorial-card-body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
}

.editorial-sidebar {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: sticky;
    top: 92px;
}

.sidebar-card {
    border: 1px solid #e8edf3;
    border-radius: 18px;
    background: #ffffff;
    overflow: hidden;
}

.sidebar-card--live {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.sidebar-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 18px 0;
}

.sidebar-card-body,
.sidebar-news-list,
.sidebar-tag-list,
.schedule-list {
    padding: 16px 18px 18px;
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(220, 38, 38, 0.1);
    color: #b91c1c;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.sidebar-tv-player {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 14px;
    overflow: hidden;
    background: #000000;
}

.sidebar-tv-player iframe,
.sidebar-tv-player video {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.sidebar-tv-player--stream {
    --plyr-video-control-background-hover: rgba(15, 23, 42, 0.95);
}

.sidebar-tv-banner {
    display: block;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    background: #0f172a;
    line-height: 0;
}

.sidebar-tv-banner img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
}

.sidebar-helper {
    margin-top: 14px;
}

.sidebar-news-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-news-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 12px;
    border-bottom: 1px solid #edf2f7;
}

.sidebar-news-item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.sidebar-news-title {
    font-weight: 700;
    line-height: 1.4;
}

.sidebar-news-date {
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
}

.sidebar-tag-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-tag {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #f8fafc;
    color: #0f172a;
    font-weight: 600;
}

.sidebar-tag strong {
    font-size: 13px;
    color: #64748b;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.schedule-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 12px 14px;
    border-radius: 12px;
    background: #f8fafc;
}

.schedule-item strong {
    color: #0f172a;
}

.schedule-item span {
    color: #64748b;
    font-size: 14px;
}

.editorial-empty-state {
    padding: 32px 24px;
    border: 1px dashed #cbd5e1;
    border-radius: 18px;
    background: #f8fafc;
}

.editorial-empty-state h1 {
    margin-bottom: 10px;
}

.editorial-category-header {
    margin-bottom: 20px;
}

.editorial-article {
    padding: 0 4px;
}

@media (max-width: 1140px) {
    .editorial-home-grid,
    .editorial-blog-shell {
        grid-template-columns: 1fr;
    }

    .editorial-sidebar {
        position: static;
    }
}

@media (max-width: 959px) {
    .header-live-link {
        display: none;
    }

    .brand {
        max-width: 78%;
    }
}

@media (max-width: 860px) {
    .main-content {
        margin: 0 auto 16px;
        border-radius: 0 0 18px 18px;
        padding: 14px;
    }

    .story-stack-item {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 640px) {
    .header-inner {
        padding: 0.85rem 1rem;
    }

    .brand-logo {
        width: 42px;
        height: 42px;
    }

    .brand {
        gap: 10px;
    }

    .featured-story {
        padding: 14px;
    }

    .featured-story-title {
        font-size: 1.9rem;
    }

    .story-stack-item,
    .editorial-card-body,
    .sidebar-card-body,
    .sidebar-news-list,
    .sidebar-tag-list,
    .schedule-list {
        padding-left: 14px;
        padding-right: 14px;
    }
}

@media (max-width: 727px) {
    body {
        padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    }

    .mobile-live-bar {
        position: fixed;
        left: 12px;
        right: 92px;
        bottom: calc(12px + env(safe-area-inset-bottom, 0px));
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 52px;
        padding: 0 18px;
        border-radius: 14px;
        background: #000000;
        color: #ffffff;
        font-size: 15px;
        font-weight: 800;
        letter-spacing: 0.02em;
        text-transform: uppercase;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
        z-index: 1200;
    }

    .mobile-live-bar:hover,
    .mobile-live-bar:focus {
        color: #ffffff;
        background: #111111;
    }
}
