/* =====================================================
   THEME VARIABLES (PERMANENT DARK)
   ===================================================== */

:root{
  --bg: #0b0f14;
  --surface: rgba(255,255,255,0.06);
  --surface-2: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.10);

  --text: rgba(255,255,255,0.92);
  --text-muted: rgba(255,255,255,0.70);

  --primary: #1db954;
  --shadow: 0 14px 35px rgba(0,0,0,0.35);
}


@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: radial-gradient(1200px 600px at 20% 0%, rgba(29,185,84,.10), transparent 60%),
            radial-gradient(900px 450px at 80% 10%, rgba(255,255,255,.06), transparent 60%),
            var(--bg);
    color: var(--text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */

.header {
    position: sticky;
    top: 0;
    z-index: 9999;
    padding: 20px 0;

    background: rgba(10, 14, 18, 0.55);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 10px 35px rgba(0,0,0,0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.header .container {
  display: flex;
  align-items: center;

  /* make header full width */
  max-width: 100%;
  width: 100%;

  /* spacing on sides */
  padding: 0 40px;
}


.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
}

.logo img {
    width: 65px;
    height: 65px;
    border-radius: 8px;
}
.logo-text {
    letter-spacing: 0.5px;
    font-size: 24px;
    color: rgb(255, 255, 243); /* gold */
    font-weight: bold;
}


/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: rgba(255,255,255,0.85);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.nav a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 18px;
    border-radius: 12px;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.nav a:hover,
.nav a.active {
    color: #fff;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.10);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    padding: 20px;
    color: white;
    display: flex;
    align-items: center;
    padding-top: 0;
    padding-bottom: 40px;
}

.hero-container {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px; /* right column width */
    gap: 40px; /* less gap = more space for hero */
    align-items: stretch;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}

.hero-content img {
    max-width: 100%;
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.4);
    margin-bottom: 10px;
    max-height: 720px;      /* tweak to taste */
    object-fit: cover;
}

/* Make hero video look exactly like the hero image */
.hero-content video,
.hero-content .obb-video {
  max-width: 100%;
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.4);
  margin-bottom: 10px;
  display: block;
  max-height: 900px;      /* tweak to taste */
  object-fit: cover;
}

/* Optional: if you want it to keep a consistent frame size */
.hero-content .obb-video {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #000;
}

/* Chrome / Edge */
.obb-video::-webkit-media-controls-picture-in-picture-button {
  display: none !important;
}

.hero-welcome{
  max-width: 820px;
  margin: 0 0 16px 0;
}

.hero-welcome h1{
  margin: 0 0 8px 0;
  font-size: clamp(22px, 2.6vw, 34px); /* responsive font */
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
}


.hero-welcome p{
  margin: 0 0 10px 0;
  font-size: clamp(13px, 1.2vw, 15px); /* responsive font */
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  max-width: 720px;
}

.hero-welcome .hero-tagline{
  display: inline-block;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 59, 59, 0.12);
  border: 1px solid rgba(255, 59, 59, 0.25);
  color: #ff3b3b;
  font-weight: 700;
  font-size: clamp(12px, 1.1vw, 14px); /* responsive font */
}

/* ✅ Mobile adjustments */
@media (max-width: 768px){
  .hero-welcome{
    max-width: 100%;
    margin-bottom: 12px;
    text-align: center; /* mas bagay sa mobile */
  }

  .hero-welcome p{
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-welcome .hero-tagline{
    width: fit-content;
    margin: 0 auto; /* center yung tagline */
  }
}

/* ✅ Small phones */
@media (max-width: 420px){
  .hero-welcome .hero-tagline{
    padding: 7px 10px;
    border-radius: 10px;
  }
}




.hero-cta {
  width: 100%;
}

.hero-cta .btn-play {
  width: 100%;
  padding: 18px;
  border-radius: 18px;

  /* STRONG contrast */
  background: linear-gradient(135deg, #ff3b3b, #ff6b6b);
  color: #fff;

  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.3px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  border: none;
  box-shadow: 0 14px 30px rgba(255, 59, 59, 0.45);
  cursor: pointer;

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-cta .btn-play:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(255, 59, 59, 0.6);
}

.hero-cta .btn-play:active {
  transform: translateY(-1px);
}


.hero-cta .btn-play {
  position: relative;
  animation: livePulse 1.8s infinite;
}



.hero-cta .btn-play::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  border: 2px solid rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.hero-cta .btn-play:hover::after {
  opacity: 1;
}

@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(255,59,59,0.6); }
  70% { box-shadow: 0 0 0 14px rgba(255,59,59,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,59,59,0); }
}


@media (max-width: 768px) {
  .hero-cta .btn-play {
    padding: 15px;  /* Slightly smaller padding for better spacing */
    font-size: 18px;  /* Adjust font size */
  }
  .logo-text {
    font-size: 18px;
  }
}


.live-strip {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.live-dot {
    width: 10px;
    height: 10px;
    background: red;
    border-radius: 50%;
}

.hero-sidebar {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-self: center;
}

.now-playing-box,
.up-next-box {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid rgba(255,255,255,0.2);
}

.now-playing-box h4,
.up-next-box h4 {
    font-size: 15px;
    margin-bottom: 12px;
    opacity: 0.95;
    font-weight: 600;
}

.now-playing-box p,
.up-next-box p {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.6;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(0,0,0,0.25);
    margin-top: 8px;
    border-radius: 3px;
}

.progress-fill {
    height: 100%;
    background: #ffffff;
    border-radius: 3px;
}

.progress-wrapper {
    width: 100%;
}



/* Sections */
section {
    padding: 60px 20px;
}

section h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
    color: var(--text);
}

/* Programs */
.upcoming-programs {
    background: transparent;
}


.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    clear: both;
}

.program-card {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    color: white;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

.program-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.program-card .dj-name {
    font-weight: 600;
    margin: 10px 0;
}

.program-card .time {
    font-size: 14px;
    opacity: 0.9;
}

.program-card a {
    text-decoration: none;
    color: white;
}

.program-card a:hover {
    color: #ff6b6b; /* Hover color */
}

.program-description {
  margin-top: 10px;
  font-size: 14px;
  color: var(--text-muted);
  padding: 10px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(255,255,255,0.06);
}




/* News */
.news-section {
    background: transparent;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Force 4 columns */
    gap: 30px;
}

.news-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    backdrop-filter: blur(12px);
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);

}


.news-image {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}


.news-card img {
    width: 100%;
    height: 210px;        /* uniform height */
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease; /* keeps your zoom-on-hover vibe */
    border-radius: 14px 14px 0 0;
}

.news-card:hover img {
    transform: scale(1.05);
}

.news-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-content h3 {
    font-size: 18px;
    margin-bottom: 12px;
    
}

.news-content p {
    
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-title {
    font-size: 18px;
    margin-bottom: 10px;
    
    line-height: 1.35;
    font-weight: 700;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-excerpt {
    
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 14px;

    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
    padding-top: 14px;
    border-top: 1px solid rgba(255,255,255,0.10);
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.meta-item i {
    font-size: 13px;
    opacity: 0.9;
}

.view-all-btn{
    text-decoration:none;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight:600;
    font-size: 14px;
    background: linear-gradient(135deg, #ff4d4d, #ff7a18);
    color:#fff;
    display:inline-flex;
    align-items:center;
    gap:8px;
    transition: all .25s ease;
}

.view-all-btn:hover{
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,.4);
}

.read-more{
    color: rgba(255,255,255,0.78);
    text-decoration: none;
    font-weight: 700;
}

.read-more:hover{
    color: #ffffff;
    text-decoration: underline;
}


.read-more:hover {
    text-decoration: underline;
}

.news-content h3,
.news-title {
  color: var(--text);
}

.news-content p,
.news-excerpt,
.news-meta {
  color: var(--text-muted);
}

.news-meta {
  border-top: 1px solid rgba(255,255,255,0.10);
}

/* Large Tablet */
@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet */
@media (max-width: 900px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 600px) {
    .news-grid {
        grid-template-columns: 1fr;
    }
}

.rk-pagination{
  display:flex;
  gap:8px;
  justify-content:center;
  align-items:center;
  margin: 22px 0 10px;
  flex-wrap: wrap;
}

.rk-page-btn,
.rk-page-num{
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration:none;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 14px;
}

.rk-page-num.is-active{
  border-color: rgba(255,255,255,.25);
  background: rgba(255,255,255,.12);
}

.rk-page-btn.is-disabled{
  opacity: .45;
  pointer-events:none;
}

.rk-page-dots{
  opacity:.7;
  padding: 0 4px;
}



/* ============================
   News Category Badge (Bottom)
   ============================ */



.news-image::after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 70px;
    background: linear-gradient(to top, rgba(0,0,0,0.35), transparent);
    pointer-events: none;

}


.news-category-badge{
    /* NOT absolute anymore (row handles layout) */
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.2px;
    color: #fff;

    display: inline-flex;
    align-items: center;

    max-width: 180px;      /* prevents huge badges */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    backdrop-filter: blur(6px);
    box-shadow: 0 10px 18px rgba(0,0,0,0.20);
    border: 1px solid rgba(255,255,255,0.25);
}

.news-category-row{
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;

    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: flex-end;
    z-index: 3;
}


/* Category colors */
.cat-nutrition{
    background: rgba(34,197,94,0.95);       /* green */
}

.cat-health{
    background: rgba(59,130,246,0.95);      /* blue */
}

.cat-agriculture{
    background: rgba(245,158,11,0.95);      /* orange */
}

.cat-developmental-information{
    background: rgba(168,85,247,0.95);      /* purple */
}



/* Badges */
.news-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    color: white;
    letter-spacing: 0.2px;
}

.badge-latest {
    background: #d6af0f;
}

.badge-featured {
    background: #f5170b;
}

/* Card highlights */
.news-card.latest {
    outline: 2px solid rgba(34,197,94,0.35);
}

.news-card.featured {
    outline: 2px solid rgba(245,158,11,0.35);
}


.news-filters{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 14px 0 22px;
}

.filter-btn{
    display: inline-flex;
    align-items: center;
    padding: 9px 14px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #111827;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s ease;
}

.filter-btn:hover{
    transform: translateY(-1px);
    border-color: #111827;
}

.filter-btn.active{
    background: #111827;
    border-color: #111827;
    color: #fff;
}

.news-date-filters{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 22px;
}

/* =========================
   News Toolbar (Search + Dropdown + Header)
   ========================= */

.news-toolbar{
  margin: 10px 0 22px;
}

.news-toolbar-form{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.news-toolbar-left{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-left: auto; /* pushes it to the right */
  order: 1;
}

/* Search pill */
.news-search{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
}

.news-search i{
  opacity: 0.85;
}

.news-search input{
  width: 240px;
  max-width: 60vw;
  border: none;
  outline: none;
  background: transparent;
  color: var(--text);
  font-size: 13px;
}

.news-search input::placeholder{
  color: rgba(255,255,255,0.55);
}

/* Dropdowns */
.news-select{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.06);
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
}

.news-select option{
  background: #0b0f14;
  color: #ffffff;
}

/* Header: left side (not centered) */
.news-heading{
  margin: 0;
  font-size: 32px;
  font-weight: 600;
  order: 0;

  display:flex;
  justify-content: space-between;
  align-items:center;
  margin-bottom: 25px;
}

.news-header{
    margin-bottom: 35px;
}

.news-header-inner{
    display:flex;
    justify-content: space-between;
    align-items:center;
}

.news-header h2{
    margin:0;
}

/* Mobile: put header below the controls (clean layout) */
@media (max-width: 768px){
  .news-heading{
    width: 100%;
    order: 0;
  }

  .news-toolbar-left{
    width: 100%;
    margin-left: 0;
    order: 1;
  }
}

#newsResults.is-loading{
  opacity: 0.6;
  pointer-events: none;
  transition: opacity 0.15s ease;
}



/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.team-card {
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.team-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.team-card h3 {
    font-size: 15px;
    margin-bottom: 5px;
}

.team-card p {
    font-size: 13px;
}






/* Apply animations */
.hero-content {
    animation: fadeInUp 0.8s ease;
}

.weather-widget {
    animation: fadeInUp 0.8s ease 0.2s both;
}

.program-card {
    animation: fadeInUp 0.6s ease both;
}

.program-card:nth-child(1) { animation-delay: 0.1s; }
.program-card:nth-child(2) { animation-delay: 0.2s; }
.program-card:nth-child(3) { animation-delay: 0.3s; }
.program-card:nth-child(4) { animation-delay: 0.4s; }
.program-card:nth-child(5) { animation-delay: 0.5s; }

.news-card {
    animation: fadeInUp 0.6s ease both;
}

.news-card:nth-child(1) { animation-delay: 0.1s; }
.news-card:nth-child(2) { animation-delay: 0.2s; }
.news-card:nth-child(3) { animation-delay: 0.3s; }

.team-card {
    animation: fadeInUp 0.6s ease both;
}

.about-section,
.visit-section,
.schedule-section {
    animation: fadeIn 0.8s ease;
}

/* Hover animations */
.btn-play,
.program-card,
.news-card,
.team-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card img {
    transition: transform 0.5s ease;
}

.news-card:hover img {
    transform: scale(1.05);
}

/* Loading animation for images */
img {
    animation: fadeIn 0.5s ease;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .header .container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 85px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 85px);
        background: rgba(10, 14, 18, 0.95);
        border-left: 1px solid rgba(255,255,255,0.08);
        box-shadow: -2px 0 18px rgba(0,0,0,0.45);
        flex-direction: column;
        padding: 20px;
        transition: right 0.3s ease;
        overflow-y: auto;
    }
    
    .nav.active {
        right: 0;
    }
    
    .nav a {
        width: 100%;
        padding: 15px;
        font-size: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    
    .nav a:last-child {
        border-bottom: none;
    }
    
    .hero {
        min-height: auto;
        padding: 30px 15px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-sidebar {
        order: 2;
    }
    
    section {
        padding: 40px 15px;
    }
    
    section h2 {
        font-size: 26px;
        margin-bottom: 30px;
    }
    
    .programs-grid,
    .news-grid,
    .team-grid,
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    
    .plate {
        width: 280px;
        height: 280px;
    }
    
    .food-item {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }
    
    .about-section,
    .visit-section,
    .schedule-section {
        padding: 30px 20px;
        margin: 15px;
    }
    
    .game-container {
        padding: 30px 20px;
    }
    
    .legend {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 16px;
    }
    
    .logo img {
        width: 40px;
        height: 40px;
    }
    
    .nav a {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    section h2 {
        font-size: 24px;
    }
    
    .program-card,
    .news-content,
    .team-card {
        padding: 20px;
    }
}

/*This is for live-radion.php*/

.live-header {
    text-align: center;
    margin-bottom: 40px;
}

.live-header h1 {
    font-size: 32px;
    color: #1f2937;
    margin-bottom: 10px;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ef4444;
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: liveGlow 2s infinite ease-in-out;

}

@keyframes liveGlow {
    0%, 100% {
        box-shadow: 0 0 10px rgba(239, 68, 68, 0.6),
                    0 0 20px rgba(239, 68, 68, 0.4);
    }
    50% {
        box-shadow: 0 0 20px rgba(239, 68, 68, 0.9),
                    0 0 40px rgba(239, 68, 68, 0.6);
    }
}

.live-dot {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}


/* Main Player Card */
.player-card {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    overflow: hidden;
}

.program-banner {
    width: 100%;
    margin: 0;
    background: #000;
    position: relative;
}

.program-banner img {
    width: 100%;
    height: auto;
    display: block;
}

.program-banner iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Broadcast Info Bar */
.broadcast-info {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    padding: 25px 40px;
    color: white;
}

.broadcast-info h2 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    opacity: 0.95;
}

.broadcast-info p {
    font-size: 14px;
    opacity: 0.9;
    margin: 3px 0;
}

.broadcast-info .program-title {
    font-size: 18px;
    font-weight: 700;
    margin-top: 8px;
}

.player-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 30px 0;
}

.play-btn {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 32px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}



/* Info Cards Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.info-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.info-card h3 {
    font-size: 18px;
    color: #1f2937;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-card .icon {
    font-size: 24px;
}

.now-playing-card {
    background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
    border: 1px solid #bfdbfe;
}

.now-playing-card h3 {
    color: #1e40af;
}

.track-info {
    background: white;
    padding: 20px;
    border-radius: 12px;
    margin-top: 15px;
}

.track-info h4 {
    font-size: 16px;
    color: #1f2937;
    margin-bottom: 8px;
}

.track-info p {
    font-size: 14px;
    color: #6b7280;
}

/* Emergency Hotlines */
.emergency-card {
    background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
    border: 1px solid #fca5a5;
}

.emergency-card h3 {
    color: #991b1b;
}

.hotline-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.hotline-item {
    background: white;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}

.hotline-item .icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.hotline-item h5 {
    font-size: 12px;
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 8px;
}

.hotline-item p {
    font-size: 11px;
    color: #6b7280;
    line-height: 1.4;
}

/* Game Promo */
.game-card {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border: 1px solid #fcd34d;
    text-align: center;
}

.game-card h3 {
    color: #92400e;
}

.game-preview {
    width: 100px;
    height: 100px;
    margin: 20px auto;
    font-size: 60px;
}

.game-btn {
    background: #f59e0b;
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: inline-block;
    text-decoration: none;
}

.game-btn:hover {
    background: #d97706;
    transform: translateY(-2px);
}

/* Schedule Preview */
.schedule-card {
    background: white;
}

.schedule-list {
    margin-top: 15px;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: #f9fafb;
    border-radius: 10px;
    margin-bottom: 10px;
}

.schedule-item:last-child {
    margin-bottom: 0;
}

.schedule-time {
    font-size: 13px;
    font-weight: 600;
    color: #2563eb;
}

.schedule-program {
    font-size: 14px;
    color: #1f2937;
}

.schedule-dj {
    font-size: 12px;
    color: #6b7280;
}

/* Weather Widget */
.weather-card {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border: 1px solid #93c5fd;
}

.weather-card h3 {
    color: #1e40af;
}

.weather-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

.weather-temp {
    font-size: 48px;
    font-weight: 700;
    color: #1e40af;
}

.weather-icon {
    font-size: 40px;
}

.weather-desc {
    font-size: 14px;
    color: #1e40af;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .live-header h1 {
        font-size: 26px;
    }

    .player-card {
        padding: 20px 15px;
    }

    .program-banner {
        border-radius: 12px;
    }

    .program-banner iframe {
        min-height: 200px;
        max-height: 300px;
    }

    .play-btn {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .hotline-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-card {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .live-page {
        padding: 30px 15px;
    }

    .program-banner iframe {
        min-height: 250px;
        max-height: 300px;
    }

    .player-controls {
        flex-direction: column;
    }

}



/* ===== Spotify Live–inspired theme (Live Radio page only) ===== */

/* Page background + text */
.live-page{
  max-width: 1500px;
  width: 96%;
  margin: 0 auto;
  padding: 18px 0 60px;
  color: #eaeaea;
}

/* Dark app background */
.live-dark{
  background: radial-gradient(1200px 600px at 20% 0%, rgba(29,185,84,.12), transparent 60%),
              radial-gradient(900px 450px at 80% 10%, rgba(255,255,255,.06), transparent 60%),
              #0b0f14;
}

/* If your header/nav becomes hard to read in dark mode, uncomment:
header, .navbar, .top-nav { background: #0b0f14; border-bottom: 1px solid rgba(255,255,255,.08); }
*/

/* Layout: wider + app-like */
.live-layout{
  max-width: 1500px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr; /* more player dominance */
  gap: 18px;
  align-items: start;
}

/* Cards: dark, subtle border */
.card,
.player-card,
.info-card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
}

/* Headline */
.live-header h1{
  color: #f4f4f4;
  letter-spacing: -0.6px;
}

/* LIVE badge */
.live-badge{
  background: rgba(29,185,84,.18);
  color: #1db954;
  border: 1px solid rgba(29,185,84,.35);
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 800;
}

/* Player frame: keep responsive and premium */
.program-banner{
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background: #000;
}
.program-banner iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.program-banner::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.65));
}

/* Broadcast bar under player (like Spotify “now playing”) */
.broadcast-info{
  background: linear-gradient(90deg, rgba(29,185,84,.18), rgba(29,185,84,.05));
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 14px 16px 16px;
  color: #eaeaea;
}
.broadcast-info h2{
  margin: 0;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: .9;
}
.broadcast-info p{
  margin: 6px 0 0;
  opacity: .85;
}
.broadcast-info .program-title{
  margin-top: 10px;
  font-weight: 900;
  font-size: 18px;
  color: #ffffff;
}

/* Sidebar sticky like an app */
.live-side{
  position: sticky;
  top: 88px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Sidebar titles */
.info-card h3{
  color: #f4f4f4;
  margin: 0 0 12px;
  font-size: 15px;
}

/* Now Playing “track tiles” */
.track-info{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 14px;
}
.track-info h4{
  margin: 0 0 6px;
  font-size: 15px;
  color: #fff;
}
.track-info p{
  margin: 0;
  font-size: 13px;
  opacity: .8;
}

/* Up Next label */
.track-info h4[style*="Up Next"],
.track-info h4.upnext-title{
  color: #1db954 !important;
}

/* Weather card styling */
.weather-card .weather-display{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 14px;
}
.weather-temp{
  color: #fff;
}
.weather-desc{
  color: rgba(255,255,255,.75);
}

/* Emergency card toned (still visible) */
.emergency-card{
  background: linear-gradient(180deg, rgba(255,80,80,.16), rgba(255,255,255,.03));
}
.hotline-item{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
}
.hotline-item h5{
  color: #fff;
}
.hotline-item p{
  color: rgba(255,255,255,.75);
}



/* Make spacing tighter like an app */
.player-card, .info-card{
  padding: 16px;
}
.player-card{ padding: 0; } /* keep banner flush */

/* Responsive */
@media (max-width: 980px){
  .live-layout{ grid-template-columns: 1fr; }
  .live-side{ position: static; }
  .live-page{ width: 94%; }
}

.rk-suggestion-card{
  margin-top: 24px;
  padding: 22px;
  border-radius: 16px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
}

.rk-suggestion-card h3{
  margin-bottom: 6px;
  font-size: 18px;
}

.rk-suggestion-card p{
  margin-bottom: 18px;
  opacity: .8;
  font-size: 14px;
}

.rk-form-group{
  margin-bottom: 14px;
}

.rk-form-group input,
.rk-form-group textarea{
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.1);
  background: rgba(0,0,0,.3);
  color: #fff;
  font-size: 14px;
}

.rk-form-group input:focus,
.rk-form-group textarea:focus{
  outline: none;
  border-color: #ff3b3b;
}


.rk-btn{
  background: #ff3b3b;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  transition: .3s;
}

.rk-btn:hover{
  background: #ffffff;
  color: #ff3b3b;
}

/* =========================
   Inline Announcement Card (News Section)
   ========================= */
.rk-inline-ann-card{
  margin: 18px 0 22px;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 12px 35px rgba(0,0,0,0.18);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
  transition: opacity .18s ease, transform .18s ease;
}
.rk-inline-ann-card::before{
  content:"";
  position:absolute;
  left:0; top:0; bottom:0;
  width: 6px;
  background: linear-gradient(180deg, #ff4d4d, #ff9a3d);
}
.rk-inline-ann-top{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.rk-inline-ann-badge{
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255,77,77,.18);
  border: 1px solid rgba(255,77,77,.28);
  text-transform: uppercase;
}
.rk-inline-ann-close{
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
  opacity: .9;
}
.rk-inline-ann-title{
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
}
.rk-inline-ann-message{
  font-size: 14px;
  line-height: 1.5;
  opacity: .95;
  color: #fff;
  display: -webkit-box;
  -webkit-box-orient: vertical;
}
.rk-inline-ann-message.rk-collapsed{
  -webkit-line-clamp: 3;
  overflow: hidden;
}
.rk-inline-ann-actions{
  margin-top: 10px;
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}
.rk-inline-ann-toggle{
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  font-weight: 800;
  font-size: 13px;
  text-decoration: underline;
  opacity: .9;
  color: whitesmoke;
}
.rk-inline-ann-link{
  text-decoration:none;
  font-weight: 800;
  font-size: 13px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.92);
}
@media (max-width: 480px){
  .rk-inline-ann-card{ padding: 14px 14px; }
  .rk-inline-ann-title{ font-size: 15px; }
  .rk-inline-ann-message{ font-size: 13.5px; }
}

/* TOP ROW: heading left, filters right */
.news-toolbar-top{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin: 10px 0 12px;
}

.news-heading{
  margin:0;
  line-height:1.1;
}

/* keep your existing .news-toolbar-left styles, but ensure alignment */
.news-toolbar-left{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

/* SUBSCRIBE CARD */
.rk-subscribe-card{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;

  padding:10px 14px;   /* smaller padding */
  border-radius:12px;

  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);

  width: min(560px, 100%);
  margin: 10px 0 16px auto; /* right aligned */
}

.rk-subscribe-label{
  font-size:13px;
  font-weight:600;
  opacity:.8;
  white-space:nowrap;
}


/* Right side (input + button) aligned */
.rk-subscribe-right{
  display:flex;
  align-items:center;
  gap:10px;
}

/* dark input pill inside the card */
.rk-subscribe-input{
  display:flex;
  align-items:center;
  gap:10px;
  height:38px;
  padding: 0 12px;
  border-radius:999px;
  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.12);
}

.rk-subscribe-input i{
  opacity:.85;
  font-size:14px;
}

.rk-subscribe-input input{
  width:260px;
  background: transparent;
  border:0;
  outline:none;
  color:#fff;
  font-size:13px;
}

.rk-subscribe-input input::placeholder{
  color: rgba(255,255,255,.65);
}

.rk-subscribe-btn{
  height:38px;
  font-size:13px;
  padding: 0 14px;
  border-radius:999px;
  border:0;
  cursor:pointer;
  font-weight:800;
}

/* honeypot hidden */
.rk-hp{ display:none !important; }

/* Responsive */
@media (max-width: 920px){
  .news-toolbar-top{
    flex-direction:column;
    align-items:stretch;
  }
  .news-toolbar-left{
    justify-content:flex-start;
  }
  .rk-subscribe-card{
    flex-direction:column;
    align-items:stretch;
  }
  .rk-subscribe-right{
    flex-direction:column;
    align-items:stretch;
  }
  .rk-subscribe-input,
  .rk-subscribe-btn{
    width:100%;
  }
  .rk-subscribe-input input{
    width:100%;
  }
}

.rk-inline-ann-nav {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #fff;
}

.rk-inline-ann-nav button {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    padding: 0 4px;
    color: #fff;
    opacity: 0.8;
}

.rk-inline-ann-nav button:hover {
    opacity: 1;
}

/* Back button */
.back-btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 50px;
  background: var(--bg-card);
  transition: all var(--transition);
}

.back-btn:hover {
  color: var(--neon-blue);
  border-color: var(--neon-blue);
  background: rgba(77, 159, 255, 0.08);
}

/* ── Games Section ─────────────────────────── */
.rk-games {
    padding: 2.5rem 1.5rem;
    background: #111;
    border-radius: 12px;
}

.games-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.games-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
}

.games-header p {
    color: #aaa;
    font-size: 0.95rem;
}

/* ── Grid ──────────────────────────────────── */
.games-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

/* ── Cards ─────────────────────────────────── */
.game-card {
    position: relative;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 1.4rem 1.2rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.game-card:hover {
    transform: translateY(-4px);
    border-color: #ff4444;
}

/* Color accents per game */
.game-card--announcer { border-top: 3px solid #f97316; }
.game-card--pinggang  { border-top: 3px solid #22c55e; }
.game-card--quiz      { border-top: 3px solid #3b82f6; }

/* Featured card (Monthly Quiz) */
.game-card--featured {
    background: #1a1f2e;
    border-color: #3b82f6;
}

/* ── Badge ─────────────────────────────────── */
.game-card__badge {
    position: absolute;
    top: -10px;
    left: 1rem;
    background: #f97316;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.game-card__badge--new {
    background: #3b82f6;
}

/* ── Icon ──────────────────────────────────── */
.game-card__icon {
    font-size: 2rem;
    line-height: 1;
}

/* ── Content ───────────────────────────────── */
.game-card__content h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.3rem;
}

.game-card__content p {
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.4;
}

/* ── Meta ──────────────────────────────────── */
.game-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.4rem;
}

.game-card__meta span {
    font-size: 0.75rem;
    color: #888;
    background: #252525;
    padding: 2px 8px;
    border-radius: 20px;
}

/* ── Progress Bar ──────────────────────────── */
.game-card__progress {
    margin-top: 0.5rem;
}

.progress-label {
    font-size: 0.75rem;
    color: #888;
    display: block;
    margin-bottom: 0.3rem;
}

.progress-bar {
    background: #2a2a2a;
    border-radius: 99px;
    height: 6px;
    overflow: hidden;
}

.progress-fill {
    background: #3b82f6;
    height: 100%;
    border-radius: 99px;
    transition: width 0.6s ease;
}

/* ── Buttons ───────────────────────────────── */
.game-btn {
    display: inline-block;
    background: #ff4444;
    color: #fff;
    text-decoration: none;
    padding: 0.55rem 1.2rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    margin-top: auto;
    transition: background 0.2s ease, transform 0.1s ease;
}

.game-btn:hover {
    background: #e03333;
    transform: scale(1.03);
}

.game-btn--featured {
    background: #3b82f6;
}

.game-btn--featured:hover {
    background: #2563eb;
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 768px) {
    .games-grid {
        grid-template-columns: 1fr;
    }
}
/* ── Scrolling Ticker Bar ───────────────────── */
.rk-ticker {
    display: flex;
    align-items: center;
    background: #161616;
    border-bottom: 1px solid rgba(239,68,68,0.3);
    overflow: hidden;
    height: 42px;
    width: 100%;
    position: relative;
    z-index: 9997;
}

.rk-ticker__label {
    display: flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #b91c1c, #ef4444);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 0 18px;
    height: 100%;
    white-space: nowrap;
    flex-shrink: 0;
    z-index: 1;
}

.rk-ticker__track-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 97%, transparent 100%);
}

.rk-ticker__track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: rkTickerScroll 45s linear infinite;
    will-change: transform;
}

.rk-ticker__track:hover {
    animation-play-state: paused;
}

@keyframes rkTickerScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-33.333%); }
}

.rk-ticker__item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.82);
    padding: 0 20px;
}

.rk-ticker__item strong {
    color: #fff;
    font-weight: 700;
}

.rk-ticker__sep {
    color: rgba(239,68,68,0.5);
    font-size: 0.5rem;
    padding: 0 4px;
    flex-shrink: 0;
}

.rk-ticker__link {
    color: #fca5a5;
    font-weight: 700;
    text-decoration: underline;
    font-size: 0.8rem;
    transition: color 0.2s;
    white-space: nowrap;
}

.rk-ticker__link:hover {
    color: #fff;
}

@media (max-width: 480px) {
    .rk-ticker__label {
        padding: 0 10px;
        font-size: 0.62rem;
        letter-spacing: 0.06em;
    }
    .rk-ticker__item {
        font-size: 0.76rem;
        padding: 0 14px;
    }
}