
.season-header {
  margin-top: 120px;
  text-align: center;
  margin-bottom: 30px;
}

.season-header h1 {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 18px;
}

.season-meta {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.meta-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.meta-icon {
  width: 22px;
  height: 22px;
  stroke: #00e6e6;
  fill: none;
  stroke-width: 1.8;
}

.meta-value {
  font-weight: 500;
}

.meta-item::after {
  content: attr(data-title);
  position: absolute;
  bottom: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  padding: 5px 10px;
  font-size: 0.75rem;
  border-radius: 6px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  box-shadow: 0 0 10px rgba(0,0,0,0.4);
}

.meta-item:hover::after {
  opacity: 1;
}

.season-page {
  width: 75%;
  max-width: 900px;
  margin: 0 auto 60px auto;
}

.season-page-content {
  display: none;
}

.season-page-content.active {
  display: block;
}

.season-info {
  background-color: #1e1e1e;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(0,206,209,0.15);
}

.season-number {
  width: 100%;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 1px;
} 

.season-stats p {
  font-size: 1rem;
  margin: 4px 0;
  color: rgba(255,255,255,0.9);
}

.season-tabs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-top: 18px;
  width: 100%;
}

.tab-btn {
  background: none;
  border: none;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  font-weight: 500;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: 0.25s ease;
}

.tab-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: rgba(255,255,255,0.55);
  stroke-width: 1.8;
  transition: 0.25s ease;
}

.tab-btn:hover {
  color: rgba(255,255,255,0.9);
}

.tab-btn:hover .tab-icon {
  stroke: #00e6e6;
  transform: translateY(-1px);
}

.tab-btn.active {
  color: #ffffff;
}

.tab-btn.active .tab-icon {
  stroke: #00e6e6;
}

.tab-btn::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: #00e6e6;
  transition: 0.3s ease;
  border-radius: 2px;
}

.tab-btn.active::after {
  width: 100%;
}

.screenshots {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-bottom: 15px;
}

.screenshots img {
  width: 240px;
  border-radius: 12px;
}

.season-text p {
  font-size: 1rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
}

.download-btn {
  background: #00e6e6;
  color: #000;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
}

.download-btn:hover {
  transform: scale(1.05);
}

.season-slider {
  width: 900px;
  max-width: 95%;
  margin: 40px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.slider-container {
  overflow: hidden;
  width: 100%;
  border-radius: 18px;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease;
}

.slider-track img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  min-width: 100%;
  border-radius: 18px;
}

.slider-btn {
  width: auto;
  height: auto;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 8px;
  opacity: 0.65;
  transition: 0.25s ease;
  filter: drop-shadow(0 0 0 transparent);
}

.slider-btn svg {
  width: 26px;
  height: 26px;
  stroke: rgba(255,255,255,0.7);
  stroke-width: 2.2;
  fill: none;
  transition: 0.25s ease;
}

.slider-btn:hover {
  opacity: 1;
  transform: scale(1.08);
}

.slider-btn:hover svg {
  stroke: #00e6e6;
  filter: drop-shadow(0 0 8px rgba(0,230,230,0.5));
}

.slider-btn:active {
  transform: scale(0.95);
}

.season-description {
  width: 100%;
  max-width: 1000px;
  margin: 50px auto 20px auto;
  padding: 30px 35px;
  border-radius: 18px;
}

.season-description p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.92);
  margin-bottom: 18px;
}

.season-description p:last-child {
  margin-bottom: 0;
}

.season-save {
  margin-top: 30px;
}

.save-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(0,230,230,0.08);
  border-radius: 18px;
  transition: 0.3s ease;
}

.save-item:hover {
  background: rgba(0,230,230,0.04);
  border-color: rgba(0,230,230,0.18);
}

.save-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.folder-icon {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #00e6e6;
  stroke-width: 1.7;
}

.save-info h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
}

.save-info span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

.download-btn-modern {
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  color: white;
  padding: 10px 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.25s ease;
}

.download-btn-modern:hover {
  background: rgba(0,230,230,0.08);
}

.download-btn-modern:hover .download-icon {
  stroke: #00e6e6;
  transform: translateY(2px);
}

.download-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: rgba(255,255,255,0.7);
  stroke-width: 2;
  transition: 0.25s ease;
}

.folder-icon {
  width: 24px;
  height: 24px;
}


.download-btn-symbol {
  background: #00e6e6;
  border: none;
  border-radius: 8px;
  padding: 4px 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
}

.download-icon {
  width: 18px;
  height: 18px;
}

::-webkit-scrollbar {
  width: 14px;
  background: #0a0a0a;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background-color: rgba(120,120,120,0.8);
  border-radius: 999px;
  border: 3px solid #0a0a0a;
}


@media (max-width: 768px) {

  .season-page {
    width: 92%;
    margin: 0 auto 40px auto;
  }

  .season-header {
    margin-top: 80px;
    margin-bottom: 20px;
  }

  .season-header h1 {
    font-size: 1.6rem;
  }

  /* META (верхняя инфа) */
  .season-meta {
    gap: 16px;
    margin-bottom: 25px;
  }

  .meta-item {
    font-size: 0.85rem;
    gap: 6px;
  }

  .meta-icon {
    width: 18px;
    height: 18px;
  }

  /* НОМЕР СЕЗОНА */
  .season-number {
    font-size: 1.4rem;
  }

  /* ТАБЫ */
  .season-tabs {
    gap: 12px;
    flex-wrap: wrap;
  }

  .tab-btn {
    font-size: 0.9rem;
    gap: 6px;
  }

  .tab-icon {
    width: 16px;
    height: 16px;
  }

  /* СЛАЙДЕР */
  .season-slider {
    flex-direction: row;
    gap: 8px;
    margin: 20px auto;
  }

  .slider-btn {
    padding: 4px;
  }

  .slider-btn svg {
    width: 20px;
    height: 20px;
  }

  .slider-track img {
    height: 220px;
  }

  /* ОПИСАНИЕ */
  .season-description {
    padding: 18px 16px;
    margin: 25px auto 15px auto;
  }

  .season-description p {
    font-size: 0.95rem;
    line-height: 1.6;
  }

  /* SAVE БЛОК */
  .save-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .download-btn-modern {
    width: 100%;
    justify-content: center;
  }

  /* TOOLTIP отключаем на мобилках */
  .meta-item::after {
    display: none;
  }
}