:root {
  --yellow_color-bg: #8e55e9;
  --yellow_color-header: #7a41c4;
  --yellow_color-accent: #ffd447;
  --yellow_color-white: #ffffff;
  --yellow_color-text: #ffffff;
  --yellow_color-purple-light: #a186ec;
  --yellow_color-purple-dark: #6a34b3;

  --yellow_font-main: 'Arial', sans-serif;
  --yellow_container-width: 1200px;
}

* {
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

body {
  font-family: var(--yellow_font-main);
  background-color: var(--yellow_color-bg);
  color: var(--yellow_color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

.ad-container {
  margin: 16px auto;
  text-align: center;
}

.ad-container[data-ad-index="0"] {
  margin-top: 0;
}

.ad-box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
            align-items: center;
    min-height: 250px;
    max-width: 300px;
    margin: 0 auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  color: inherit;
}

img {
  width: 100%;
  height: 100%;
  display: block;
}

.yellow_container {
  width: 100%;
  max-width: var(--yellow_container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.yellow_site-header {
  background: var(--yellow_color-header);
  padding: 15px 0 0;
  border-bottom: 5px solid var(--yellow_color-accent)
}

.yellow_header-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
     -moz-box-pack: justify;
          justify-content: space-between;
}

.yellow_nav-logo {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
  color: var(--yellow_color-white);
}

.yellow_nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
     -moz-box-align: end;
          align-items: flex-end;
  gap: 10px;
  padding: 4px 4px 0;
  position: relative;
}

.yellow_category-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 20px;
  min-width: 200px;
  padding: 10px;
  z-index: 1000;
  background-color: var(--yellow_color-purple-light);
}

.yellow_category-dropdown.show {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.yellow_category-dropdown .yellow_category-item .yellow_cat-icon {
  display: none;
}

.yellow_category-dropdown .yellow_category-item {
  padding: 5px 10px;
  cursor: pointer;
  border: none;
}

.yellow_category-dropdown .yellow_category-item:hover {
  background-color: var(--yellow_color-purple-light);
}

.yellow_nav-item {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -moz-inline-box;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  padding: 0 24px;
  height: 40px;
  border: none;
  border-radius: 3px 3px 0 0;
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  color: #d4d8ff;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(212, 216, 255, .3)), color-stop(60.78%, rgba(212, 216, 255, 0)));
  background: -webkit-linear-gradient(top, rgba(212, 216, 255, .3), rgba(212, 216, 255, 0) 60.78%);
  background: linear-gradient(180deg, rgba(212, 216, 255, .3), rgba(212, 216, 255, 0) 60.78%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 0 0 rgba(0, 0, 0, 0.1),
    0 1px 2px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.yellow_nav-item:hover {
  color: #ffe29b;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 227, 155, .3)), to(rgba(255, 227, 155, 0)));
  background: -webkit-linear-gradient(top, rgba(255, 227, 155, .3), rgba(255, 227, 155, 0));
  background: linear-gradient(180deg, rgba(255, 227, 155, .3), rgba(255, 227, 155, 0));
}

.yellow_header-actions {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  gap: 15px;
  position: relative;
}

.yellow_search-trigger {
  background-image: url(../../images/search.0240ee9.png);
  background-size: 90%;
  background-repeat: no-repeat;
  background-position: center;
  border: none;
  background-color: transparent;
  cursor: pointer;
  width: 40px;
  height: 40px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  margin-left: 15px;
}

.yellow_search-trigger:hover {
  background-color: var(--yellow_color-purple-light);
  border-radius: 50%;
}

.yellow_search-input-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  gap: 10px;
  position: absolute;
  top: 100%;
  right: 0;
  width: 250px;
  background-color: white;
  border: 2px solid var(--yellow_color-accent);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  z-index: 100;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: opacity 0.3s ease, visibility 0.3s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, -webkit-transform 0.3s ease;
}

.yellow_search-input-container.show-search {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.yellow_search-input {
  border: 1px solid #ccc;
  outline: none;
  padding: 8px 10px;
  font-size: 14px;
  width: 100%;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  border-radius: 4px;
}

.yellow_search-input::-webkit-input-placeholder {
  color: #999;
}

.yellow_search-input::-moz-placeholder {
  color: #999;
}

.yellow_search-input::placeholder {
  color: #999;
}

.yellow_submit-search-button {
  background-color: var(--yellow_color-accent);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 8px 15px;
  cursor: pointer;
  font-size: 14px;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
  width: 20%;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  background-image: url(../../images/search-icon.63fa406.png);
  background-position: center;
  background-size: 50%;
  background-repeat: no-repeat;
}

.yellow_submit-search-button:hover {
  background-color: #7b4acb;
}

.yellow_search-trigger {
  width: 36px;
  height: 36px;
  background: url(../../images/search.0240ee9.png) no-repeat center;
  background-size: 100%;
}

.yellow_section-header {
  text-align: center;
  margin: 30px auto 10px;
  position: relative;
}

.yellow_section-title {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  display: inline-block;
  position: relative;
}

.yellow_section-title::after {
  content: '';
  display: block;
  width: 200px;
  height: 10px;
  background: url(../../images/decoration.cbeefdb.png) no-repeat center;
  background-size: 100%;
  margin: 5px auto 0;
}

.yellow_site-footer {
  position: relative;
  background: var(--yellow_color-header);
  padding: 40px 0 20px;
  margin-top: 50px;
  border-top: 2px solid var(--yellow_color-accent);
}

.yellow_footer-logo {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.yellow_more-videos-btn {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px;
  background: -webkit-gradient(linear, left top, left bottom, from(#fcc67a), to(#fbdfa0));
  background: -webkit-linear-gradient(top, #fcc67a 0%, #fbdfa0 100%);
  background: linear-gradient(to bottom, #fcc67a 0%, #fbdfa0 100%);
  padding: 12px 40px;
  font-size: 18px;
  text-transform: uppercase;
  color: #000;
}

.yellow_footer-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-justify-content: space-around;
          justify-content: space-around;
  gap: 30px;
  padding: 20px;
  margin-bottom: 20px;
  border: 2px solid #fff;
  border-radius: 10px;
}

.yellow_footer-bottom {
  text-align: center;
  font-size: 14px;
  opacity: 0.8;
}

.yellow_label {
  position: absolute;
  top: 10px;
  left: 0;
  display: inline-block;
  background: url(../../images/label.b81a872.png) no-repeat left center;
  background-size: 100%;
  color: var(--yellow_color-purple-dark);
  padding: 4px 25px 4px 15px;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
}

.yellow_duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: #5055b8;
  color: white;
  padding: 2px 5px;
  font-size: 10px;
  border-radius: 2px;
}

.yellow_back-to-top {
  position: absolute;
  top: -22px;
  right: 20px;
  width: 44px;
  aspect-ratio: 1;
  border-radius: 4px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
     -moz-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
  z-index: 100;
  background: url(../../images/top.d4d59ec.png) no-repeat center;
  background-size: contain;
}

.yellow_card-small {
  cursor: pointer;
  background: white;
  padding: 5px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  display: grid;
}

.yellow_card-small:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.yellow_small-img-wrap {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.yellow_small-img-wrap img {
  width: 100%;
  height: 100%;
}

.yellow_play-icon-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 45px;
  aspect-ratio: 1;
  background: url(../../images/play.888a4b6.png) no-repeat center;
  background-size: contain;
  opacity: 0.8;
}

.yellow_small-title {
  font-size: 11px;
  color: #333;
  padding: 5px 0;
  white-space: wrap;
  height: 44px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.yellow_grid-2x6 {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .yellow_grid-2x6 {
    grid-template-columns: repeat(3, 1fr);
  }

  .yellow_footer-links {
    -webkit-flex-wrap: wrap;
            flex-wrap: wrap;
  }

  .yellow_nav-links {
    display: none;
  }
}

@media (max-width: 480px) {
  .yellow_grid-2x6 {
    grid-template-columns: repeat(2, 1fr);
  }

}
