* {
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  padding: 0;
}

body {
  background: linear-gradient(to bottom right, #002733, #014262);
  color: #fff;
  min-height: 100vh;
  padding: 20px;
}

/* Header */
.xnux__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.xnux__vmcontent {
    margin-top: 30px;
}

.xnux__logo {
  display: flex;
  align-items: center;
  font-weight: 600;
  font-size: 24px;
}

.xnux__logo img {
  height: 40px;
  margin-right: 10px;
}

/* Search Bar */
.xnux__search {
  display: flex;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  overflow: hidden;
}

.xnux__search input {
  border: none;
  padding: 10px 20px;
  background: transparent;
  color: white;
  width: 300px;
  outline: none;
}

.xnux__search input::placeholder {
  color: white;
  opacity: 1;
}

.xnux__search button {
  background: none;
  border: none;
  color: white;
  padding: 0 15px;
  cursor: pointer;
}

/* Main Content */
.xnux__main {
  max-width: 1200px;
  margin: auto;
}

/* Featured Section */
.xnux__featured {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  margin-bottom: 30px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.xnux__featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.xnux__featured-overlay {
  position: relative;
  z-index: 2;
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.xnux__featured-overlay .xnux__live-tag {
  background: red;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 15px;
}

.xnux__featured-overlay .xnux__play-btn {
  font-size: 48px;
  margin-bottom: 10px;
}

.xnux__featured-overlay h2 {
  font-size: 28px;
  font-weight: 600;
}

/* Filters */
.xnux__filters {
  display: flex;
  gap: 15px;
  margin: 30px 0;
  flex-wrap: wrap;
  
}

.xnux__filters button {
  padding: 10px 20px;
  border: none;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s;
}

.xnux__filters button.active,
.xnux__filters button:hover {
  background: rgba(255, 255, 255, 0.35);
}

.xnux__channels {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
}

@media (max-width: 700px) {
    .lgxmhdes {
        display: none;
    }
  .xnux__channels {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Channel Card */
.xnux__channel-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 16px;
  position: relative;
  text-align: center;
  cursor: pointer;
  transition: transform 0.2s;
}

.xnux__channel-card:hover {
  transform: translateY(-5px);
}

.xnux__channel-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  pointer-events: none;
}

.xnux__hover-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 40px;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.xnux__channel-card:hover .xnux__hover-play {
  opacity: 1;
}

.channelNamexnux {
  margin-top: 10px;
  font-weight: bold;
}

.contentPreloader {
    margin-top: 40px !important;
    margin-left: 20px;
}

.contentPreloader i {
    font-size: 40px;
}

.xnux__vmcontent h3 {
    margin-top: 55px;
    margin-left: 30px;
    color: yellow;
}

.event_headt {
    padding-left: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
    margin-bottom: 18px;
}

.event_headt::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50%;
    height: 0.5px;
    background-color: #ffffff;
}

.event_headt::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 5px;
    height: 5px;
    background-color: #ffffff;
    border-radius: 50%;
    transform: translateX(-50%);
}

.text-align-right {
    text-align: left;
}

.xnux_scheduletype {
    color: #000000;
    border-radius: 10px;
    padding-left: 10px;
    padding-right: 10px;
    font-weight: bold;
    background-color: #FFFFFF;
}

.xnux__schedule_card {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.15);
    margin-bottom: 10px;
    padding-left: 14px;
    padding-top: 12px;
    padding-bottom: 12px;
    border-left: 5px solid white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.xnux__schedule_card:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.scheduledptime {
    margin-top: 8px;
    margin-bottom: 10px;
    color: #fcd8c2;
    font-weight: bold;
    font-size: 13.5px;
}

.cxs__status-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 20px;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.3), 0 2px 5px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  background: linear-gradient(to bottom, #444, #111); /* fallback */
}

.cxs__status-live {
  background: linear-gradient(to bottom, #4CAF50, #2E7D32);
}

.cxs__status-upcoming {
  background: linear-gradient(to bottom, #FFEB3B, #FBC02D);
  color: #333;
}

.cxs__status-ended {
  background: linear-gradient(to bottom, #F44336, #C62828);
}

.cxs__status-tag:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 8px rgba(255,255,255,0.5), 0 2px 8px rgba(0,0,0,0.3);
}

.cxs__blinking-dot {
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  animation: cxs__blink 1s infinite;
}

@keyframes cxs__blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.dye__scroll-container {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    padding: 10px;
    gap: 10px;
    margin-bottom: 12px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.4) transparent;
}

.dye__scroll-container::-webkit-scrollbar {
    height: 8px;
}

.dye__scroll-container::-webkit-scrollbar-track {
    background: transparent;
}

.dye__scroll-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

.dye__scroll-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.7);
}

.dye__catg-button {
    flex-shrink: 0;
    background: linear-gradient(to right, #4e54c8, #8f94fb);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.3s ease;
    white-space: nowrap;
}

.dye__catg-button:hover {
    background: linear-gradient(to right, #5e63ec, #9ba1ff);
    transform: scale(1.05);
}

.dye__catg-highlight {
    box-shadow: 0 0 8px 2px rgba(255, 255, 255, 0.6);
    outline: 2px solid white;
    transform: scale(1.08);
}

.xnux__eventSName {
    margin-top: 15px;
    margin-bottom: 15px;
    font-weight: bold;
    font-size: 18px;
}