:root {
  --bg-gradient-start: #f5f4ff;
  --bg-gradient-end: #e1dafe;
  --bg-main: #0f0c37;
  --bg-nav: #27244b;
  --bg-card: #000000;
  --bg-toggle-active: #ffffff;
  --bg-toggle-inactive: linear-gradient(180deg, #0f0c37 0%, #433f74 88%, #3d3a69 100%);
  --text-light: #ffffff;
  --text-dark: #3c363b;
  --text-nav-active: #ffffff;
  --text-nav-inactive: #918dbe;
  --text-accent: #c5a2e9;
  --text-button: #e1dafe;
  --border-light: #e1dafe;
  --border-dark: #3e3a69;
  --shadow-light: rgba(255, 255, 255, 0.25);
  --shadow-dark: rgba(0, 0, 0, 0.25);
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to bottom, #FFFCEB 0%, #FFFCEB 25%);
  color: var(--text-light);
}
/* CSS for section section:Hero */
.hero-section {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 10px;
  }
  .media-toggle-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
    position: relative;
  }
  .toggle-switch {
    display: flex;
    align-items: center;
    background: linear-gradient(-180deg, #3c363b 0%, #785e67 100%);
    border-radius: 20px;
    border: 0.5px solid var(--border-light);
    box-shadow: 0px 0px 4px 0px var(--shadow-light);
    padding: 3px;
  }
  .search-icon-wrapper {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 5px;
    right: 10px;
  }
  .toggle-item {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 14px;
    color: #fedae7;
  }
  .toggle-item.active {
    background: var(--bg-toggle-active);
    color: var(--text-dark);
    box-shadow: 0px 1px 2px 0px var(--shadow-dark);
  }
  .search-icon {
    width: 20px;
    height: 20px;
  }
  .hero-banner-container {
    background-color: var(--text-light);
    border-radius: 10px;
    box-shadow: 0px 4px 4px 0px var(--shadow-dark);
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
    gap: 8px;
  }
  .announcement-bar {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 8px 12px;
    color: var(--text-nav-inactive);
    font-size: 14px;
  }
  .announcement-icon {
    width: 14px;
    height: 14px;
  }
  .banner-container {
  position: relative;
  width: 100%;
  height: 140px;
  overflow: hidden;
}
.banner-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
  .slider-container {
    position: relative;
    height: 140px;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
    background: radial-gradient(circle, #e1dafe 5%, #918dbe 94%);
  }
  .slider-image-stack {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .slider-bg {
    position: absolute;
    width: 125%;
    height: auto;
    top: -25%;
    left: 15%;
    opacity: 0.5;
  }
  .slider-fg {
    position: absolute;
    height: 200%;
    width: auto;
    top: -15%;
    right: -20%;
  }
  .slider-overlay-content {
    position: absolute;
    bottom: 40px;
    left: 12px;
    background-color: rgba(14, 28, 103, 0.4);
    padding: 6px 27px;
  }
  .slider-logo {
    position: absolute;
    width: 85px;
    height: 41px;
    top: -21px;
    left: 33px;
  }
  .slider-logo-text {
    font-size: 10px;
    color: var(--text-light);
    line-height: 1.2;
  }
  .pagination-dots {
  display: flex;
  justify-content: center;
  margin-top: 5px;
  gap: 5px;
}
.pagination-dots .point{
  width: 5px;
  height: 5px;
  background-color: #C5A2E9;
  border-radius: 10px;
}
.pagination-dots .point.focus{
  width: 30px;
}

/* SerachBox */
.SerachBox{
    width: 100%;
  /*margin: 0 20px 20px;*/
  width: 100%;
  /*border-radius: 4px;*/
  display: flex;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
}
.SerachBox .Icon{
  margin-left: 5px;
}
.SerachBox input{
  border: 0;
  flex: auto;
  padding: 5px;
}
.SerachBox .Btn{
  color: #fff;
  border: 0;
  background-color: #451F2A;
  padding: 5px 10px;
  border-radius: 3px;
}

/* CSS for section section:Categories */
.categories-nav {
    background-color: #451F2A;
    border-top: 1px solid rgba(255,255,255,0.3);
    padding: 0 20px;
    height: 54px;
  }
  .categories-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  .categories-nav a {
    font-size: 14px;
    color: var(--text-light);
    padding: 18.5px 10px;
  }

/* CSS for section section:LatestReleases */
.content-grid-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
  }
  .grid-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .grid-title {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .grid-title h2 {
    font-size: 14px;
    font-weight: normal;
    color: var(--text-accent);
  }
  .show-more-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 4px 16px;
    border-radius: 4px;
    font-size: 12px;
    color: var(--text-button);
  }
  .video-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
  .video-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--bg-card);
  }
  .card-thumbnail {
    width: 100%;
    /* height: 100px; */
    object-fit: cover;
    display: block;
  }
  .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 6px 7px;
    background: linear-gradient(to top, rgba(0,0,0,.8) 30%, rgba(0,0,0,0) 100%);
    display: flex;
    flex-direction: column;
    gap: 3px;
  }
  .card-overlay h3 {
    font-size: 13px;
    font-weight: normal;
    color: var(--text-light);
  }
  .card-stats {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--text-light);
  }
  .card-stats img {
    width: 12px;
    height: 12px;
  }
  .card-stats span {
    margin-right: 8px;
  }