: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, #f5f4ff 0%, #e1dafe 25%);
  color: var(--text-light);
}
/* CSS for section section:Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    padding: 10px;
    box-sizing: border-box;
    background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
  }
  .logo-container {
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .logo-img {
    width: 65px;
    height: 31px;
  }
  .logo-text {
    font-size: 8px;
    line-height: 1;
    color: var(--text-dark);
  }
  .user-nav {
    display: flex;
    align-items: center;
    gap: 16px;
  }
  .nav-item {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 14px;
    color: var(--text-dark);
    flex-direction: column;
  }
  .nav-icon {
    width: 24px;
    height: 24px;
  }
  
  
  
  
     .content-grid-section {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0 20px 20px;
  }
  
  .TypeBox{
  width: calc(100% - 24px);
  padding: 10px 15px;
  background-color: #0F0C37;
  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: #d2d1f6;
}
.TypeList span.active{
  background-color: #d2d1f6;
  color: #222;
}











  .video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .video-card {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    background-color: var(--bg-card);
  }
  .top-img img{ max-width: 100%;}
  .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;
  }
