/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

/*========== Colors ==========*/
/*========== Font and typography ==========*/
/*========== Font weight ==========*/
@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto-Thin.ttf") format("ttf");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto-ThinItalic.ttf") format("ttf");
  font-weight: 100;
  font-style: italic;
}
@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto-Light.ttf") format("ttf");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto-LightItalic.ttf") format("ttf");
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto-Regular.ttf") format("ttf");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto-Italic.ttf") format("ttf");
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto-Medium.ttf") format("ttf");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto-MediumItalic.ttf") format("ttf");
  font-weight: 500;
  font-style: italic;
}
@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto-Bold.ttf") format("ttf");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto-BoldItalic.ttf") format("ttf");
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto-Black.ttf") format("ttf");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Roboto";
  src: url("../../fonts/Roboto-BlackItalic.ttf") format("ttf");
  font-weight: 900;
  font-style: italic;
}
/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}
*::-webkit-scrollbar {
  width: 8px;
}
*::-webkit-scrollbar-track {
  background: transparent;
}
*::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}
*::-webkit-scrollbar-thumb:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

html {
  scroll-behavior: smooth;
}

body,
input,
button {
  font-family: "Roboto", sans-serif;
  font-size: 0.938rem;
}

body {
  color: hsl(0, 0%, 100%);
  transition: background-color 0.4s;
  line-height: 20px;
}

input,
button {
  border: none;
  outline: none;
}

h1,
h2,
h3,
h4 {
  color: inherit;
  font-weight: 500;
}

ul {
  list-style: none;
}

a {
  text-decoration: none !important;
  color: #0d6efd;
}
a:hover {
  color: #408cfd;
}

a:has(> i) {
  color: inherit;
}

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

#wrapper {
  display: flex;
  padding-top: 60px;
  height: 100vh;
}

#content {
  position: relative;
  z-index: 1;
  overflow-y: auto;
  flex-grow: 1;
}

.ts-control > div {
  background: #0d6efd !important;
  color: white !important;
}

.header {
  height: 100vh;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.5);
}
.header__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 0;
  filter: brightness(0.5);
}
.header__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.header__content__social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.header__content__social a {
  color: rgb(177, 177, 177);
  font-size: 2rem;
  transition: color 0.5s ease;
}
.header__content__social a:hover {
  color: white;
}
.header__logo {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
}
.header__logo__profile {
  text-align: center;
  height: 300px;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.8));
}

.footer {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 3rem 0 1.5rem;
  margin-top: 2rem;
}
.footer__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.footer__contact {
  text-align: center;
  margin-bottom: 2rem;
}
.footer__contact h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer__contact p {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.footer__contact p i {
  color: #c4c4c4;
}
.footer__contact a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__contact a:hover {
  color: #e0e0e0;
  text-decoration: underline;
}
.footer__social {
  width: 100%;
  margin-bottom: 2rem;
}
.footer__social-icons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.footer__social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer__social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.footer__social-icons a i {
  font-size: 1.5rem;
}
.footer__copyright {
  width: 100%;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.9rem;
  color: #a0a0a0;
}
.footer__copyright p {
  margin-bottom: 0.8rem;
}
.footer__copyright .footer__links {
  margin-top: 0.5rem;
}
.footer__copyright .footer__links a {
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__copyright .footer__links a:hover {
  color: #ffffff;
  text-decoration: underline;
}
@media (max-width: 768px) {
  .footer {
    padding: 2rem 0 1rem;
  }
  .footer__social-icons {
    gap: 0.8rem;
  }
  .footer__social-icons a {
    width: 40px;
    height: 40px;
  }
  .footer__social-icons a i {
    font-size: 1.3rem;
  }
}

.audios-grid,
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.audio-card,
.video-card {
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.audio-card:hover,
.video-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}
.audio-card__header,
.video-card__header {
  margin-bottom: 1rem;
}
.audio-card__header h3,
.video-card__header h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.audio-card__date,
.video-card__date {
  font-size: 0.9rem;
  color: #aaa;
  display: block;
}
.audio-card__description,
.video-card__description {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.5;
}
.audio-card__player,
.video-card__player {
  width: 100%;
}
.audio-card__player audio, .audio-card__player video,
.video-card__player audio,
.video-card__player video {
  width: 100%;
  border-radius: 4px;
}
.audio-card__external-link,
.video-card__external-link {
  margin-top: 1rem;
}
.audio-card__external-link a,
.video-card__external-link a {
  display: inline-block;
  padding: 0.8rem 1.2rem;
  background-color: #4a6cf7;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}
.audio-card__external-link a:hover,
.video-card__external-link a:hover {
  background-color: #3a5ae0;
}
.audio-card__external-link a i,
.video-card__external-link a i {
  margin-left: 0.5rem;
}

.audio-card {
  background-color: rgba(74, 108, 247, 0.1);
}

.audios {
  color: #fff;
  padding: 5rem;
}
.audios h2 {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 2rem;
}

.audio-player-container {
  max-width: 1200px;
  margin: 0 auto;
}

.audio-player {
  margin-bottom: 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.audio-player .audio-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}
.audio-player .audio-controls .play-pause-btn {
  background-color: #fff;
  color: #000;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.audio-player .audio-controls .play-pause-btn:hover {
  background-color: #f0f0f0;
  transform: scale(1.05);
}
.audio-player .audio-controls .play-pause-btn:active {
  transform: scale(0.95);
}
.audio-player .audio-controls .play-pause-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.audio-player .audio-controls .play-pause-btn i {
  font-size: 1.2rem;
}
.audio-player .audio-controls .waveform-container {
  flex: 1;
  height: 60px;
  background-color: rgba(17, 17, 17, 0.3);
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.audio-player .audio-controls .waveform-container .waveform {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 1;
}
.audio-player .audio-controls .waveform-container .loading-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.audio-player .audio-controls .waveform-container .loading-indicator.active {
  opacity: 1;
  visibility: visible;
}
.audio-player .audio-controls .waveform-container .loading-indicator i {
  margin-right: 8px;
}
.audio-player .audio-controls .volume-control {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 40px;
}
.audio-player .audio-controls .volume-control .volume-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease;
  min-width: 28px;
  text-align: center;
}
.audio-player .audio-controls .volume-control .volume-btn:hover {
  color: #4a6cf7;
}
.audio-player .audio-controls .volume-control .volume-slider-container {
  height: 120px;
  width: 40px;
  position: absolute;
  bottom: 45px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #121212;
  border-radius: 6px;
  padding: 15px 0;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}
.audio-player .audio-controls .volume-control .volume-slider-container:before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #121212;
}
.audio-player .audio-controls .volume-control .volume-slider-container .volume-slider-track {
  width: 4px;
  height: 90px;
  background-color: #333;
  border-radius: 2px;
  position: relative;
  overflow: visible;
}
.audio-player .audio-controls .volume-control .volume-slider-container .volume-slider-track .volume-slider-progress {
  width: 100%;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0%;
  border-radius: 2px;
}
.audio-player .audio-controls .volume-control .volume-slider-container .volume-slider-track .volume-slider-handle {
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: 0%;
  transform: translateX(-50%) translateY(50%);
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: transform 0.1s ease;
  z-index: 2;
}
.audio-player .audio-controls .volume-control .volume-slider-container .volume-slider-track .volume-slider-handle:hover {
  transform: translateX(-50%) translateY(50%) scale(1.2);
}
.audio-player .audio-controls .volume-control:hover .volume-slider-container, .audio-player .audio-controls .volume-control:focus-within .volume-slider-container, .audio-player .audio-controls .volume-control.active .volume-slider-container {
  display: flex;
}
.audio-player .track-info {
  font-size: 0.9rem;
  color: #aaa;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.audio-player .track-info .now-playing {
  margin: 0;
}
.audio-player .track-info .now-playing #current-track-title {
  color: #fff;
  font-weight: 500;
}
.audio-player .track-info .time-info {
  margin: 0;
  color: #888;
}

wave {
  overflow: hidden;
}

.wavesurfer-handle {
  background-color: rgba(255, 255, 255, 0.3);
  width: 2px !important;
}

.audio-playlist {
  max-height: 400px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.3) transparent;
}
.audio-playlist::-webkit-scrollbar {
  width: 5px;
}
.audio-playlist::-webkit-scrollbar-track {
  background: transparent;
}
.audio-playlist::-webkit-scrollbar-thumb {
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 3px;
}
.audio-playlist .playlist-title {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 1.5rem;
}
.audio-playlist .playlist-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.audio-playlist .playlist-item:hover {
  background-color: rgba(255, 255, 255, 0.05);
}
.audio-playlist .playlist-item.active {
  background-color: rgba(255, 255, 255, 0.1);
  border-left: 2px solid #4a6cf7;
  padding-left: calc(0.5rem - 2px);
}
.audio-playlist .playlist-item.active h3 {
  color: #fff;
}
.audio-playlist .playlist-item .track-details h3 {
  font-size: 1rem;
  font-weight: normal;
  color: #ddd;
}
.audio-playlist .playlist-item .track-details .track-date {
  font-size: 0.8rem;
  color: #666;
}
.audio-playlist .playlist-item .track-duration {
  color: #aaa;
}
.audio-playlist .playlist-item .track-duration .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.videos {
  color: #fff;
  padding: 2rem 0;
}
.videos .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.videos .videos-empty {
  text-align: center;
  padding: 3rem 0;
  color: #aaa;
  font-style: italic;
}

.videos-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 2rem;
}

.video-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .video-item {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
}
.video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}
.video-item__content {
  flex: 1;
}
@media (min-width: 768px) {
  .video-item__content {
    max-width: 60%;
  }
}
.video-item__header {
  margin-bottom: 1.2rem;
}
.video-item__header h3 {
  font-size: 1.8rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}
.video-item__date {
  font-size: 0.9rem;
  color: #aaa;
  display: inline-block;
  padding: 0.3rem 0.8rem;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
}
.video-item__description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #ddd;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .video-item__description {
    margin-bottom: 0;
  }
}
.video-item__player {
  width: 100%;
}
@media (min-width: 768px) {
  .video-item__player {
    max-width: 40%;
  }
}
.video-item__player video {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  background-color: #000;
  max-height: 250px;
  object-fit: cover;
}
.video-item__thumbnail {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background-color: #111;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.video-item__thumbnail.clickable {
  cursor: pointer;
  transition: transform 0.3s ease;
}
.video-item__thumbnail.clickable:hover {
  transform: scale(1.03);
}
.video-item__thumbnail.clickable:hover .play-overlay {
  opacity: 1;
}
.video-item__thumbnail .thumbnail-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-item__thumbnail .thumbnail-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-item__thumbnail .thumbnail-placeholder i {
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.2);
}
.video-item__thumbnail .play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.video-item__thumbnail .play-overlay i {
  font-size: 4rem;
  color: #fff;
  filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.5));
}
.video-item__external-link {
  margin-top: 1rem;
}
.video-item__external-link a {
  display: block;
  padding: 1rem 1.5rem;
  background-color: #4a6cf7;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  text-align: center;
  font-weight: 500;
  transition: all 0.3s ease;
}
.video-item__external-link a:hover {
  background-color: #3a5ae0;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(74, 108, 247, 0.3);
}
.video-item__external-link a i {
  margin-left: 0.5rem;
}

.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  overflow-y: auto;
}
.video-modal.active {
  opacity: 1;
  visibility: visible;
}
.video-modal__content {
  width: 90%;
  max-width: 1000px;
  background-color: #111;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  position: relative;
}
@media (max-width: 767px) {
  .video-modal__content {
    width: 95%;
    margin: 1rem 0;
  }
}
.video-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem;
  background-color: rgba(255, 255, 255, 0.05);
}
.video-modal__header h3 {
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  margin: 0;
}
.video-modal__close {
  background: none;
  border: none;
  color: #aaa;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: color 0.2s ease;
}
.video-modal__close:hover {
  color: #fff;
}
.video-modal__player {
  width: 100%;
}
.video-modal__player .modal-video-player {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
}
.video-modal__player .video-modal__iframe-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-modal__player .video-modal__iframe-container .modal-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-modal__player .video-modal__fallback {
  padding: 2rem;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.3);
}
.video-modal__player .video-modal__fallback p {
  margin-bottom: 1.5rem;
  color: #ddd;
  font-size: 1.1rem;
}
.video-modal__player .video-modal__fallback .external-fallback-link {
  display: inline-block;
  padding: 1rem 1.5rem;
  background-color: #4a6cf7;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.video-modal__player .video-modal__fallback .external-fallback-link:hover {
  background-color: #3a5ae0;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(74, 108, 247, 0.3);
}
.video-modal__player .video-modal__fallback .external-fallback-link i {
  margin-left: 0.5rem;
}

@media (max-width: 990px) {
  .audios {
    padding: 1rem 0 1.5rem 0;
  }
  .videos {
    padding: 0;
  }
}
h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.about {
  padding: 10rem;
  font-size: 18px;
  line-height: 1.5;
}
.about strong {
  font-weight: bold;
}
.about em {
  font-style: italic;
}

@media (max-width: 1440px) {
  .about {
    padding: 5rem;
  }
}
@media (max-width: 990px) {
  .about {
    padding: 3rem 0;
  }
}
.legal-page,
.privacy-page {
  max-width: 900px;
  margin: 2rem auto 4rem;
  padding: 0 1.5rem;
  color: #fff;
}
.legal-page h1,
.privacy-page h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}
.legal-page section,
.privacy-page section {
  margin-bottom: 2.5rem;
}
.legal-page section h2,
.privacy-page section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
}
.legal-page section p,
.privacy-page section p {
  margin-bottom: 1rem;
  line-height: 1.6;
}
.legal-page section ul,
.privacy-page section ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-page section ul li,
.privacy-page section ul li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.legal-page section a,
.privacy-page section a {
  color: #007bff;
  text-decoration: none;
  transition: color 0.3s ease;
}
.legal-page section a:hover,
.privacy-page section a:hover {
  text-decoration: underline;
  color: #0056b3;
}
@media (max-width: 768px) {
  .legal-page,
  .privacy-page {
    margin: 1.5rem auto 3rem;
  }
  .legal-page h1,
  .privacy-page h1 {
    font-size: 1.8rem;
  }
  .legal-page section h2,
  .privacy-page section h2 {
    font-size: 1.3rem;
  }
}

body {
  background-color: hsla(0, 0%, 0%, 0.9);
}

/*# sourceMappingURL=data:application/json;charset=utf-8,%7B%22version%22:3,%22sourceRoot%22:%22%22,%22sources%22:%5B%22../../assets/styles/utils/_reset.scss%22,%22../../assets/styles/utils/_variables.scss%22,%22../../assets/styles/utils/_fonts.scss%22,%22../../assets/styles/utils/_base.scss%22,%22../../assets/styles/components/_header.scss%22,%22../../assets/styles/components/_footer.scss%22,%22../../assets/styles/components/_audio-video.scss%22,%22../../assets/styles/pages/_home.scss%22,%22../../assets/styles/pages/_legal.scss%22,%22../../assets/styles/app.scss%22%5D,%22names%22:%5B%5D,%22mappings%22:%22AAAA;AAAA;AAAA;AAAA;AAKA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;EAaC;EACA;EACA;EACA;EACA;EACA;;;AAED;AACA;AAAA;EAEC;;;AAED;EACC;;;AAED;EACC;;;AAED;EACC;;;AAED;AAAA;EAEC;EACA;;;AC1CD;AAoBA;AASA;AC7BA;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;ACjFJ;AACA;EACE;EACA;EACA;EAoBA;EACA;;AAnBA;EACE;;AAGF;EACE;;AAGF;EACE;EACA;;AAEA;EACE;;;AASN;EACE;;;AAGF;AAAA;AAAA;EAGE,aFdiB;EEejB,WFXiB;;;AEcnB;EACE,OF1BW;EE2BX;EACA;;;AAGF;AAAA;EAEE;EACA;;;AAGF;AAAA;AAAA;AAAA;EAIE;EACA,aFzBY;;;AE4Bd;EACE;;;AAGF;EACE;EACA,OFhEQ;;AEkER;EACE;;;AAIJ;EACE;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;;;AAGF;EACE;EACA;EACA;EACA;;;AAGF;EACE;EACA;;;ACjGF;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAEA;EACI;;AAMhB;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;;;ACnEZ;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAIR;EACI;EACA;EACA;;AAEA;EACI;EACA;;AAKZ;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;;AAMhB;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;;AAEA;EACI;EACA;EACA;;AAEA;EACI;EACA;;AAMhB;EAhHJ;IAiHQ;;EAEA;IACI;;EAEA;IACI;IACA;;EAEA;IACI;;;;AC3HpB;AAAA;EAEI;EACA;EACA;EACA;;;AAGJ;AAAA;EAEI;EACA;EACA;EACA;;AAEA;AAAA;EACI;EACA;;AAGJ;AAAA;EACI;;AAEA;AAAA;EACI;EACA;EACA;;AAIR;AAAA;EACI;EACA;EACA;;AAGJ;AAAA;EACI;EACA;EACA;;AAGJ;AAAA;EACI;;AAEA;AAAA;AAAA;EACI;EACA;;AAIR;AAAA;EACI;;AAEA;AAAA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;AAAA;EACI;;AAGJ;AAAA;EACI;;;AAOhB;EACI;;;AAGJ;EACI;EACA;;AAEA;EACI;EACA;EACA;EACA;;;AAIR;EACI;EACA;;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;;AAKZ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAMhB;EAGI;;AAKZ;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAEA;EACI;EACA;;AAIR;EACI;EACA;;;AAMZ;EACI;;;AAGJ;EACI;EACA;;;AAGJ;EACI;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;;AAGJ;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;;AAKJ;EACI;EACA;EACA;;AAGJ;EACI;EACA;;AAIR;EACI;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;;AAOhB;EACI;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;;AAIR;EACI;EACA;EACA;EACA;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EAVJ;IAWQ;IACA;IACA;;;AAGJ;EACI;EACA;;AAGJ;EACI;;AAEA;EAHJ;IAIQ;;;AAIR;EACI;;AAEA;EACI;EACA;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAEA;EANJ;IAOQ;;;AAIR;EACI;;AAEA;EAHJ;IAIQ;;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAEA;EACI;;AAEA;EACI;;AAKZ;EACI;EACA;EACA;EACA;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAKZ;EACI;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;;;AAOhB;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EATJ;IAUQ;IACA;;;AAIR;EACI;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;;AAIR;EACI;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;EACA;EACA;EACA;;AAIR;EACI;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAEA;EACI;EACA;EACA;;AAGJ;EACI;;;AAOpB;EACI;IACI;;EAGJ;IACI;;;ACxtBR;EACI;EACA;EACA;;;AAGJ;EACI;EACA;EACA;;AAEA;EACI;;AAGJ;EACI;;;AAIR;EACI;IACI;;;AAIR;EACI;IACI;;;AC5BR;AAAA;EAEI;EACA;EACA;EACA;;AAEA;AAAA;EACI;EACA;EACA;EACA;;AAGJ;AAAA;EACI;;AAEA;AAAA;EACI;EACA;EACA;EACA;EACA;;AAGJ;AAAA;EACI;EACA;;AAGJ;AAAA;EACI;EACA;;AAEA;AAAA;EACI;EACA;;AAIR;AAAA;EACI;EACA;EACA;;AAEA;AAAA;EACI;EACA;;AAKZ;EApDJ;AAAA;IAqDQ;;EAEA;AAAA;IACI;;EAGJ;AAAA;IACI;;;;AC9CZ;EACI,kBRES%22,%22file%22:%22app.output.css%22%7D */
