* {
  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: 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;
}

/* Channel Name */
.channelNamexnux {
  margin-top: 10px;
  font-weight: bold;
}