@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
:root {
  --background-color: rgb(22, 22, 22);
  --header-background-color: #ff6600;
  --header-text-color: white;
  --header-height: 50px;
  --progress-bar-wrapper-background-color: rgb(32, 32, 32);
  --progress-bar-background-color: rgba(255, 255, 255, 0.333);
  --progress-bar-color: white;
  --progress-bar-height: 8px;
  --progress-bar-gap: 3px;
  --button-color: #3482db;
  --button-hover-color: #318aff;
  --button-active-color: #0054c2;
  --low-opacity-black: rgba(0, 0, 0, 0.333);
  --mid-opacity-black: rgba(0, 0, 0, 0.5);
  --padding: 15px;
  --content-spacing: 5px;
  --content-small: 100px;
  --content-full: 150px;
  --border-radius: 5px;
}

html {
  scroll-behavior: smooth;
}

.layout {
  display: flex;
  flex-direction: column;
}
.layout > .header {
  flex: 0 0 auto;
  width: 100%;
  height: var(--header-height);
  background-color: var(--header-background-color);
  color: var(--header-text-color);
}
.layout > .header a {
  color: var(--header-text-color);
  font-size: 150%;
}
.layout > .header > .right.hidden,
.layout > .header > .left.hidden {
  visibility: hidden;
}
.layout > .header > .logo {
  height: inherit;
}
.layout > .header > .logo > a {
  height: inherit;
}
.layout > .header > .logo > a > img {
  height: 100%;
  width: auto;
  padding: 5px;
}
.layout > .header > .close-button {
  padding: var(--padding);
}
.layout > .header > .title {
  padding: var(--padding);
  display: flex;
  gap: 5px;
}
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
:root {
  --background-color: rgb(22, 22, 22);
  --header-background-color: #ff6600;
  --header-text-color: white;
  --header-height: 50px;
  --progress-bar-wrapper-background-color: rgb(32, 32, 32);
  --progress-bar-background-color: rgba(255, 255, 255, 0.333);
  --progress-bar-color: white;
  --progress-bar-height: 8px;
  --progress-bar-gap: 3px;
  --button-color: #3482db;
  --button-hover-color: #318aff;
  --button-active-color: #0054c2;
  --low-opacity-black: rgba(0, 0, 0, 0.333);
  --mid-opacity-black: rgba(0, 0, 0, 0.5);
  --padding: 15px;
  --content-spacing: 5px;
  --content-small: 100px;
  --content-full: 150px;
  --border-radius: 5px;
}

html {
  scroll-behavior: smooth;
}

.layout {
  display: flex;
  flex-direction: column;
}
.layout > .header {
  flex: 0 0 auto;
  width: 100%;
  height: var(--header-height);
  background-color: var(--header-background-color);
  color: var(--header-text-color);
}
.layout > .header a {
  color: var(--header-text-color);
  font-size: 150%;
}
.layout > .header > .right.hidden,
.layout > .header > .left.hidden {
  visibility: hidden;
}
.layout > .header > .logo {
  height: inherit;
}
.layout > .header > .logo > a {
  height: inherit;
}
.layout > .header > .logo > a > img {
  height: 100%;
  width: auto;
  padding: 5px;
}
.layout > .header > .close-button {
  padding: var(--padding);
}
.layout > .header > .title {
  padding: var(--padding);
  display: flex;
  gap: 5px;
}
.layout > .header > .title > .current-date {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.layout > .header > .title > .current-date.visible {
  opacity: 1;
}
.layout > .content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.layout > footer {
  height: 20dvh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

body#highlights {
  height: 100dvh;
  overflow: hidden;
}

.preview {
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 9/16;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--padding);
  height: 100%;
  cursor: pointer;
}
.preview > .title {
  top: 0;
  position: absolute;
  color: white;
  padding: var(--padding);
  text-shadow: 2px 1px 9px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.preview > .title.visible {
  opacity: 1;
}
.preview > .play {
  aspect-ratio: 1/1;
  transition: transform 0.1s ease-in-out;
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  padding: 20px;
  font-size: 300%;
  border-radius: 100px;
}
.preview > .play > .fa-play {
  position: relative;
  left: 9%;
}
.preview > .preview-background {
  width: 100%;
  height: 100%;
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.preview > .total {
  position: absolute;
  bottom: 0;
  margin: var(--padding);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  background-color: var(--low-opacity-black);
  border-radius: 30px;
  display: inline-block;
  color: white;
  font-size: 80%;
  text-align: center;
  padding: 8px 12px;
}
.preview > .total.visible {
  opacity: 1;
}

.rainbow {
  background: linear-gradient(124deg, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3);
  background-size: 1800% 1800%;
  animation: rainbow 18s ease infinite;
}

@keyframes rainbow {
  0% {
    background-position: 0% 82%;
  }
  50% {
    background-position: 100% 19%;
  }
  100% {
    background-position: 0% 82%;
  }
}
.modal {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: auto; 
  background-color: rgba(0,0,0,0.8); 
}

.modal-content {
  background-color: var(--background-color);
  color: white;
  margin: 15% auto; 
  padding: 20px;
  border: 1px solid var(--header-background-color);
  width: 80%; 
  max-width: 500px;
  text-align: center;
  border-radius: var(--border-radius);
  position: relative;
}

#custom-modal .close-button {
  color: #aaa;
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 28px;
  font-weight: bold;
}

#custom-modal .close-button:hover,
#custom-modal .close-button:focus {
  color: var(--header-background-color);
  text-decoration: none;
  cursor: pointer;
}

#modal-link {
    color: var(--header-background-color);
    text-decoration: none;
    font-weight: bold;
}

#modal-link:hover {
    text-decoration: underline;
}
/*# sourceMappingURL=style.css.map */
.layout > .header > .title > .current-date.visible {
  opacity: 1;
}
.layout > .content {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.layout > footer {
  height: 20dvh;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

body#highlights {
  height: 100dvh;
  overflow: hidden;
}

.preview {
  border-radius: var(--border-radius);
  overflow: hidden;
  aspect-ratio: 9/16;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--padding);
  height: 100%;
  cursor: pointer;
}
.preview > .title {
  top: 0;
  position: absolute;
  color: white;
  padding: var(--padding);
  text-shadow: 2px 1px 9px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.preview > .title.visible {
  opacity: 1;
}
.preview > .play {
  aspect-ratio: 1/1;
  transition: transform 0.1s ease-in-out;
  display: flex;
  align-items: center;
  cursor: pointer;
  z-index: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  padding: 20px;
  font-size: 300%;
  border-radius: 100px;
}
.preview > .play > .fa-play {
  position: relative;
  left: 9%;
}
.preview > .preview-background {
  width: 100%;
  height: 100%;
  position: absolute;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: width 0.3s ease-in-out, height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.preview > .total {
  position: absolute;
  bottom: 0;
  margin: var(--padding);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  background-color: var(--low-opacity-black);
  border-radius: 30px;
  display: inline-block;
  color: white;
  font-size: 80%;
  text-align: center;
  padding: 8px 12px;
}
.preview > .total.visible {
  opacity: 1;
}

.rainbow {
  background: linear-gradient(124deg, #ff2400, #e81d1d, #e8b71d, #e3e81d, #1de840, #1ddde8, #2b1de8, #dd00f3, #dd00f3);
  background-size: 1800% 1800%;
  animation: rainbow 18s ease infinite;
}

@keyframes rainbow {
  0% {
    background-position: 0% 82%;
  }
  50% {
    background-position: 100% 19%;
  }
  100% {
    background-position: 0% 82%;
  }
}/*# sourceMappingURL=style.css.map */