@charset "UTF-8";
:root {
  /* this has to be set to switch between light or dark */
  color-scheme: light dark;
  --light-bg: ghostwhite;
  --light-color: #0A0E13;
  --light-code: #ef9a00;
  --dark-bg: #0A0E13;
  --dark-color: ghostwhite;
  --dark-code: #ef9a00;
}

.figtree, body {
  font-family: "Figtree", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.figtree-light {
  font-weight: 300;
}
.figtree-regular {
  font-weight: 400;
}
.figtree-medium, body {
  font-weight: 500;
}
.figtree-semi-bold {
  font-weight: 600;
}
.figtree-bold, .intro .title, .sub-title, .btn-primary {
  font-weight: 700;
}
.figtree-extra-bold {
  font-weight: 800;
}

.bungee, .logo-text, .language-switch-container, .brand {
  font-family: "Bungee", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.bungee-regular, .logo-text, .brand {
  font-weight: 400;
}

body {
  background-color: #0A0E13;
  margin: 0;
  min-width: 320px;
  padding: 0;
}

a {
  color: ghostwhite;
  text-decoration: none;
  transition: all 0.4s ease 0s;
}
a:hover {
  color: #ef9a00;
}

.main-container {
  color: ghostwhite;
  margin-top: 170px;
}
@media only screen and (min-width: 768px) {
  .main-container {
    margin-top: 210px;
  }
}

.primary-color {
  color: #ef9a00;
}

.brand b {
  color: #ef9a00;
}

.btn-primary {
  background-color: #ef9a00;
  border-color: #ef9a00;
  border-radius: 0px;
  clip-path: polygon(15px 0%, calc(100% - 15px) 0%, 100% 50%, calc(100% - 15px) 100%, 15px 100%, 0% 50%);
  color: #0A0E13;
  padding: 15px 30px;
  position: relative;
  text-transform: uppercase;
  transition: 0.3s;
  min-width: 200px;
}
.btn-primary:before, .btn-primary:after {
  content: "";
  background-color: #0A0E13;
  border-radius: 0;
  clip-path: polygon(85% 0, 100% 0, 95% 0, 90% 0, 15% 50%, 100% 100%, 85% 100%, 0% 50%, 85% 0);
  height: calc(100% - 10px);
  left: 5px;
  transition: clip-path 0.3s ease 0.1s;
  top: 5px;
  position: absolute;
  width: 16px;
  z-index: -1;
}
.btn-primary:after {
  right: 5px;
  left: auto;
  transform: rotate(180deg);
  transform-style: preserve-3d;
}
.btn-primary:hover {
  background-color: ghostwhite;
  border-color: #ef9a00;
  clip-path: polygon(0px 0%, 100% 0%, 100% 50%, 100% 100%, 0 100%, 0% 50%);
  color: #0A0E13;
}
.btn-primary:hover:before, .btn-primary:hover:after {
  clip-path: polygon(0 0, 107% 0, 88% 0, 1px 2px, 1px calc(100% - 2px), 88% 100%, 107% 100%, 0 100%, 0 0);
}
.btn-primary .fa-brands {
  font-size: 20px;
}
.btn-primary--alt {
  padding: 10px 30px;
}
.btn-primary--alt:hover {
  clip-path: polygon(15px 0%, calc(100% - 15px) 0%, 100% 50%, calc(100% - 15px) 100%, 15px 100%, 0% 50%);
}
.btn-primary--alt:hover:before, .btn-primary--alt:hover:after {
  clip-path: polygon(85% 0, 100% 0, 95% 0, 90% 0, 15% 50%, 100% 100%, 85% 100%, 0% 50%, 85% 0);
}

.sub-title {
  background-color: rgba(239, 154, 0, 0.1);
  clip-path: polygon(6px 0%, calc(100% - 6px) 0%, 100% 6px, 100% calc(100% - 6px), calc(100% - 6px) 100%, 6px 100%, 0% calc(100% - 6px), 0% 6px);
  color: #F6AA00;
  display: inline-block;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 2px;
  padding: 3px 20px;
  text-transform: capitalize;
}

.msn-wrapper {
  margin-top: 10px;
  max-width: 500px;
}

.language-switch-container {
  position: absolute;
  right: 10px;
  top: -40px;
  z-index: 20;
}
.language-switch-container .language-switch {
  display: inline-block;
  width: 60px;
  height: 30px;
  transform: rotate(0deg) translateX(0px) translateY(0px);
}
.language-switch-container .language-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.language-switch-container .language-switch input:checked + .slider:before {
  transform: translateX(-30px);
}
.language-switch-container .language-switch input:checked + .slider .dark-icon {
  color: #0A0E13;
  transition: all 0.8s ease 0s;
}
.language-switch-container .language-switch input:checked + .slider .dark-icon:hover {
  animation: none;
  transform: none;
}
.language-switch-container .language-switch input:checked + .slider .light-icon {
  color: rgba(148, 148, 148, 0.5);
  transition: all 0.8s ease 0s;
}
.language-switch-container .language-switch input:checked + .slider .light-icon:hover {
  color: rgba(148, 148, 148, 0.9);
}
.language-switch-container .language-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 40px;
  border: 1px solid #949494;
  background-color: rgba(148, 148, 148, 0.1);
  transition: all 0.4s ease 0s;
  padding: 0 5px;
}
.language-switch-container .language-switch .slider::before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  background-color: ghostwhite;
  left: 31px;
  top: 1px;
  box-shadow: rgba(10, 14, 19, 0.3) 0px 2px 4px;
  border-radius: 50%;
  transition: all 0.4s ease 0s;
}
.language-switch-container .language-switch .icon {
  font-size: 12px;
  color: ghostwhite;
  position: absolute;
  transition: all 0.8s ease 0s;
}
.language-switch-container .language-switch .light-icon {
  right: 6px;
  color: #0A0E13;
}
.language-switch-container .language-switch .dark-icon {
  left: 5px;
  color: rgba(148, 148, 148, 0.5);
}
.language-switch-container .language-switch .dark-icon:hover {
  color: rgba(148, 148, 148, 0.9);
}

.header {
  min-width: 320px;
  position: absolute;
  top: 50px;
}
.header-container {
  background-color: ghostwhite;
  border-radius: 10px; /* opcional si quieres bordes más suaves */
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.3);
  clip-path: polygon(26px 0%, calc(100% - 26px) 0%, 100% 26px, 100% calc(100% - 26px), calc(100% - 26px) 100%, 26px 100%, 0% calc(100% - 26px), 0% 26px);
}
@media only screen and (max-width: 560px) {
  .header .header-links {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  .header .btn-primary {
    font-size: 14px;
    min-width: auto;
    padding: 7px 30px;
  }
  .header .btn-primary .fa-brands {
    display: none;
  }
}

.logo {
  max-width: 95px;
}
@media only screen and (min-width: 385px) {
  .logo {
    max-width: 95px;
  }
}
@media only screen and (min-width: 768px) {
  .logo {
    max-width: 135px;
  }
}

.logo-text {
  text-align: center;
}
.logo-text span {
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .logo-text span.display-4 {
    font-size: 34px;
  }
  .logo-text span.display-6 {
    font-size: 28px;
  }
}

.intro {
  color: ghostwhite;
  padding: 2.5rem;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .intro {
    padding: 4rem;
  }
}
.intro::after {
  content: "";
  background: #0F1C23;
  clip-path: polygon(56px 0%, calc(100% - 56px) 0%, 100% 56px, 100% calc(100% - 56px), calc(100% - 56px) 100%, 56px 100%, 0% calc(100% - 56px), 0% 56px);
  inset: 0;
  position: absolute;
  z-index: -1;
}
.intro-image img {
  border-radius: 30px;
  box-shadow: 0px 0px 14px 9px #0a0e13;
  transition: all 0.4s ease 0s;
}
@media only screen and (min-width: 1200px) {
  .intro-image img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-14%, -50%);
    width: 686px;
  }
}
@media only screen and (min-width: 1243px) {
  .intro-image img {
    transform: translate(-14%, -50%);
    width: 715px;
  }
}
@media only screen and (min-width: 1399px) {
  .intro-image img {
    transform: translate(-7%, -50%);
    width: 736px;
  }
}
@media only screen and (min-width: 1424px) {
  .intro-image img {
    transform: translate(-8%, -50%);
    width: 763px;
  }
}
.intro .title {
  font-size: 1.5rem;
}
@media only screen and (min-width: 385px) {
  .intro .title {
    font-size: 3rem;
  }
}

.latest-playlist {
  position: relative;
}
.latest-playlist .title {
  font-size: 5rem;
  left: 50%;
  position: absolute;
  top: 0;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.playlist-item .playlist {
  background-color: #0F1C23;
  clip-path: polygon(26px 0%, calc(100% - 26px) 0%, 100% 26px, 100% calc(100% - 26px), calc(100% - 26px) 100%, 26px 100%, 0% calc(100% - 26px), 0% 26px);
  height: 100%;
  padding: 1.1rem;
  position: relative;
}
.playlist-item .playlist .thumbnail-container {
  margin-bottom: 2.5rem;
  position: relative;
}
.playlist-item .playlist .thumbnail-container img {
  clip-path: polygon(22px 0%, calc(100% - 22px) 0%, 100% 22px, 100% 100%, 0% 100%, 0% 22px);
  transition: all 0.4s ease 0s;
}
.playlist-item .playlist .thumbnail-container img:hover {
  filter: brightness(150%);
  transition: all 0.4s ease 0s;
}
.playlist-item .playlist .thumbnail-container .platform {
  background-color: #0F1C23;
  bottom: -20px;
  clip-path: polygon(6px 0%, calc(100% - 6px) 0%, 100% 6px, 100% calc(100% - 6px), calc(100% - 6px) 100%, 6px 100%, 0% calc(100% - 6px), 0% 6px);
  left: 50%;
  padding: 5px 6px;
  position: absolute;
  transform: translateX(-50%);
}
.playlist-item .playlist .thumbnail-container .platform span {
  background-color: #F6AA00;
  color: #0A0E13;
  display: block;
  font-size: 0.9rem;
  clip-path: polygon(6px 0%, calc(100% - 6px) 0%, 100% 6px, 100% calc(100% - 6px), calc(100% - 6px) 100%, 6px 100%, 0% calc(100% - 6px), 0% 6px);
  padding: 3px 10px;
  text-align: center;
  width: 80px;
}
.playlist-item .playlist-title {
  text-align: center;
}

.social-links .social {
  background-color: #0F1C23;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  transform: rotate(90deg);
  transition: all 0.4s ease 0s;
}
.social-links .social:hover {
  background-color: ghostwhite;
  transition: all 0.4s ease 0s;
}
.social-links .social a {
  display: block;
  min-width: 60px;
  padding: 10px 13px 8px 12px;
  text-align: center;
}
.social-links .social .fa {
  transform: rotate(-90deg);
}
.social-links .social .fa-youtube {
  color: #ff0000;
}
.social-links .social .fa-tiktok {
  background: linear-gradient(135deg, #25F4EE, #FE2C55);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.social-links .social .fa-facebook-f {
  color: #1778F2;
}
.social-links .social .fa-instagram {
  background: linear-gradient(135deg, #FEC053, #F2203E, #B729A8, #5342D6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

footer {
  background-color: #0F1C23;
  margin-top: 60px;
}
footer .copyright-text {
  background: #0F1C23;
  font-size: 14px;
  line-height: 1;
  padding: 15px;
  position: relative;
  color: ghostwhite;
}

/*# sourceMappingURL=general.css.map */
