: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, #fff2f7 0%, #fedae7 25%);
  color: var(--text-light);
}


.content-grid-section {
    margin-top:15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 20px 20px;
  }
  
.TypeBox{
  width: calc(100% - 24px);
  padding: 10px 15px;
  background-color: #2e0f1c;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: 10px;
}
.TypeList{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 2px;
}
.TypeList span{
  border-radius: 4px;
  font-size: 14px;
  padding: 5px 10px;
  color: #FEDADE;
}
.TypeList span.active{
  background-color: #FEDADE;
  color: #222;
}

  .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;
  }