@font-face {
  font-family: "Unbounded";
  src: url("../fonts/Unbounded-ExtraLight.woff2") format("woff2"),
    url("../fonts/Unbounded-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Unbounded";
  src: url("../fonts/Unbounded-Light.woff2") format("woff2"),
    url("../fonts/Unbounded-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Unbounded";
  src: url("../fonts/Unbounded-Regular.woff2") format("woff2"),
    url("../fonts/Unbounded-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Unbounded";
  src: url("../fonts/Unbounded-Bold.woff2") format("woff2"),
    url("../fonts/Unbounded-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}


html {
  box-sizing: border-box;
}

a {
  transition: 0.8s;
}

a:hover {
  transition: 0.8s;
  opacity: 0.7;
}

.none {
  display: none !important;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul {
  padding: 0;
  margin: 0;
}

/* Цвета */


:root {
  --violet: #190b28;
  --white: #ffeed6;
  --light-orange: #fc9e4f;
  --orange: #ff521b;
  --helper: rgba(255, 255, 255, 0.01);
  --transparent-orange: rgba(252, 158, 79, 0.7);
  --transparent-violet: rgba(25, 11, 40, 0.6);
  --red: #de3c4b;
  --transp-orange-2: rgba(252, 158, 79, 0.4);
  --font-family: "Unbounded", sans-serif;
}

.bg-main {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
}

body {
  margin: 0;
  font-family: "Unbounded", system-ui, sans-serif;
  /* background-image: url("../images/main.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat; */
  min-height: 100vh;
}

.container {
  margin: 0 auto;
  max-width: 1180px;
}

/* Иконки Google Fonts*/

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-smoothing: antialiased;
}

/* Тексты */

.headers {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.4;
  text-transform: uppercase;
}

.sub-headers {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.4;
}

.text {
  font-family: var(--font-family);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.4;
}

.add-text {
  font-family: var(--font-family);
  font-weight: 200;
  font-size: 12px;
  line-height: 1.4;
}

.tech-text {
  font-family: var(--font-family);
  font-weight: 200;
  font-size: 10px;
  line-height: 140%;
  color: var(--white);
}

/* Header */

.header {
  padding: 12px 0;
  /* margin-bottom: 416px; */
}

.header_inner {
  display: flex;
  justify-content: space-between;
}

.header_inner-logo {
  color: var(--white);
}

.header_nav {
  display: flex;
}

.header_nav-list {
  list-style-type: none;
  display: flex;
  gap: 40px;
  align-items: center;
}

.header_nav-link {
  color: var(--light-orange);
  text-decoration: none;
}

.header_contacts {
  display: flex;
  gap: 12px;
  align-items: center;
}

.header_icon-link {
  color: var(--light-orange);
  border-radius: 6px;
  border: 2px solid var(--light-orange);
  padding: 3px;
  width: 34px;
  height: 34px;
}

.header_icon-link-burger {
  display: none;
}

.header_phone {
  color: var(--light-orange);
  text-decoration: none;
}

.material-symbols-outlined {
  font-size: 24px;
  line-height: 1;
}

/* Middle */

.middle_inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.search {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 572px;
  margin: 0 auto;
  padding: 12px;
  border: 1px solid var(--light-orange);
  border-radius: 8px;
  color: var(--light-orange);
  background: transparent;
}

.search_input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  color: var(--light-orange);
  font: inherit;
}

.search_input::placeholder {
  color: var(--light-orange);
  opacity: 0.7;
}


.search_block {
  display: flex;
  gap: 54px;
  justify-content: center;
}

.search_block-item {
  color: var(--light-orange);
  text-decoration: none;
  border: 3px solid var(--light-orange);
  border-radius: 8px;
  padding: 6px 40px;
  box-shadow: 0 0 8px 0 var(--light-orange);
  background: var(--violet);
  text-shadow: 0 0 20px rgba(255, 171, 94, 0.9);
}

.search_icon {
  color: var(--light-orange);
  cursor: pointer;
  text-decoration: none;
}

/* Footer */

.footer {
  /* margin-top: 300px; */
  padding: 24px 0;
  position: fixed;
  bottom: 0;
  width: 100%;
  background: rgba(0,0,0,0.5);
}

.footer_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer_inner-icons {
  display: flex;
  gap: 12px;
}

.footer_ico {
  width: 34px;
  height: 34px;
  padding: 7px;
  border-radius: 6px;
  border: 2px solid var(--light-orange);
}

.footer_policy {
  color: var(--light-orange);
  text-decoration: none;
}

.bread_link,
.bread_item {
  text-decoration: none;
  color: var(--white);
  list-style: none;
}

/* Content */

.content {
  padding-bottom: 82px;
}

.content_inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 580px;
}

.content_top {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
  width: 498px;
}

.content_block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.content_block-video,
.content_block-music,
.content_block-events {
  display: flex;
  flex-direction: column;
  gap: 16px;
}


.content_block-video-list {
  display: flex;
  gap: 20px;

}

.content_block-header {
  display: flex;
  justify-content: space-between;
  color: var(--light-orange);
  align-items: center;
}

.content_block-ico {
  border: 3px solid var(--light-orange);
  border-radius: 4px;
  padding: 4px;
  box-shadow: 0 0 6px 0 var(--light-orange);
  background: var(--violet);
  font-size: 40px;
}

.content_block-video-item {
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.content_block-video-cover {
  display: block;
  position: relative;
}

.content_block-video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.content_block-video-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content_block-video-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.content_block-video-top {
  display: flex;
  justify-content: space-between;
}

.content_block-video-price {
  color: var(--white);
}

.content_block-video-buy {
  border: 1px solid var(--light-orange);
  border-radius: 4px;
  padding: 2px 16px;
  text-decoration: none;
  color: var(--light-orange);
  box-shadow: 0 0 4px 0 var(--light-orange);
  background: var(--violet);
}

.content_block-video-title {
  color: var(--light-orange);
}

.content_block-video-desc {
  color: var(--white);
}

.content_block-music {}

.content_block-music-list {
  display: flex;
  gap: 20px;
}

.content_block-music-item {
  width: 180px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.content_block-music-cover {
  position: relative;
  display: block;
}

.content_block-music-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.content_block-music-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.content_block-music-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content_block-music-title,
.content_block-music-artist {
  color: var(--white);
}

.content_block-music-volume-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.content_block-music-volume-range {
  -webkit-appearance: none;
  appearance: none;
  width: 52px;
  height: 1px;
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
}


.content_block-music-volume-range::-webkit-slider-runnable-track {
  height: 1px;
  border-radius: 999px;
  background: var(--white);
}

.content_block-music-volume-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--light-orange);
  border: none;
  margin-top: -4px;
}

.content_block-music-volume-range::-moz-range-track {
  height: 1px;
  border-radius: 999px;
  background: var(--white);
}

.content_block-music-volume-range::-moz-range-thumb {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--light-orange);
  border: none;
}

.content_block-music-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.music-controls_volume {
  display: flex;
  align-items: center;
  gap: 4px;
}

.content_block-events {}

.content_block-events-list {
  display: flex;
  gap: 20px;
}

.content_block-events-item {
  width: 280px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.content_block-events-cover {
  display: block;
  width: 100%;
}

.content_block-events-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.content_block-events-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--transparent-orange);
}

.content_block-events-title {
  color: var(--light-orange);
}

.content_block-events-extra {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 8px;
}

.content_block-events-desc {
  color: var(--white);
}

.content_block-events-extra-row {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  color: var(--transparent-orange);

}

.content_block-events-file {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--transparent-orange);
}

.content_top-show_all {
  text-decoration: none;
  color: var(--light-orange);
  border: 2px solid var(--light-orange);
  border-radius: 8px;
  padding: 6px 16px;
  box-shadow: 0 0 4px 0 var(--light-orange);
  background: var(--violet);
}

/* Блок с заказами */

.content_block-orders_item {
  border: 1px solid var(--light-orange);
  border-radius: 8px;
  padding: 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: var(--white);
}

.content_block-orders_title {
  color: var(--white);
  display: flex;
  gap: 40px;
}

.content_block-orders_text {
  display: flex;
  gap: 20px;
}

.content_block-orders_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.content_block-orders_meta {
  display: flex;
  gap: 20px;
  color: var(--white);
}

.content_block-orders_date {
  color: var(--light-orange);
}

/* блок с мини-видео */
.content_block-orders_videos {
  display: grid;
  grid-template-columns: repeat(3, 180px);
  gap: 20px;
}

.content_block-orders_video {
  width: 180px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.orders_video-cover {
  width: 100%;
  border-radius: 12px;
  background: #444;
}

.orders_video-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.orders_video-footer {
  display: flex;
  justify-content: space-between;
}

.orders_video-cover {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  overflow: hidden;
  height: 120px;
}

.orders_video-cover_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.orders_video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  border: none;
  background: transparent;
  cursor: pointer;
}

.orders_video-tag {
  color: var(--transparent-orange);
}

.content_block-orders_btn {
  border: 2px solid var(--light-orange);
  border-radius: 4px;
  padding: 6px 16px;
  box-shadow: 0 0 4px 0 var(--light-orange);
  background: var(--violet);
  text-decoration: none;
  color: var(--light-orange);
  display: inline-flex;
  gap: 4px;
  align-items: center;
  align-self: flex-start;
}

.content_block-orders_btn span:nth-child(2) {
  font-size: 22px;
}

/* Купленный предмет */
.content_block-orders_bought_item {
  border: 1px solid var(--light-orange);
  border-radius: 8px;
  padding: 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  color: var(--white);
}

.content_block-orders_bought_title {
  display: flex;
  gap: 20px;
}

.content_block-orders_bought {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.content_block-orders_bought-text {
  color: var(--transparent-orange);
}