* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --green: #13f45d;
  --green2: #18c84e;
  --cyan: #14e4ff;
  --yellow: #f4f018;
  --orange: #ff9800;
  --dark: #050d16;
}
.icodearts-signature {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);

  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;

  color: #13f45d;

  cursor: pointer;

  text-shadow:
    0 0 10px rgba(19,244,93,.8),
    0 0 24px rgba(19,244,93,.45);

  animation: electricPulse 1.8s ease-in-out infinite;
}

@keyframes electricPulse {

  0%, 100% {
    opacity: .75;
    transform: translateX(-50%) scale(1);
  }

  50% {
    opacity: 1;
    transform: translateX(-50%) scale(1.06);
    text-shadow:
      0 0 16px rgba(19,244,93,1),
      0 0 42px rgba(19,244,93,.75);
  }
}

.icodearts-panel {
  position: fixed;
  top: 0;
  right: 0;

  width: min(480px, 95vw);
  height: 100dvh;

  background:
    linear-gradient(180deg,
      #07111d,
      #02060d);

  transform: translateX(110%);
  transition: .45s cubic-bezier(.2,.9,.2,1);

  z-index: 150;

  border-left: 1px solid rgba(19,244,93,.25);

  box-shadow:
    -20px 0 60px rgba(0,0,0,.65),
    0 0 40px rgba(19,244,93,.14);

  display: flex;
  flex-direction: column;
}

.icodearts-panel.show {
  transform: translateX(0);
}

.icodearts-body {
  padding: 24px;
  overflow-y: auto;
}

.icode-card {
  padding: 24px;
  border-radius: 24px;
  margin-bottom: 24px;

  background:
    linear-gradient(135deg,
      rgba(19,244,93,.08),
      rgba(20,228,255,.05));

  border: 1px solid rgba(255,255,255,.08);

  box-shadow:
    0 0 30px rgba(19,244,93,.08);
}

.icode-card h2 {
  margin-bottom: 14px;
  color: #13f45d;
}

.icode-card p {
  color: rgba(255,255,255,.82);
  line-height: 1.7;
}

.icode-card ul {
  margin-top: 18px;
  padding-left: 18px;
}

.icode-card li {
  margin-bottom: 10px;
}

.icode-card a {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 20px;

  border-radius: 999px;

  background:
    linear-gradient(90deg,
      #13f45d,
      #14e4ff);

  color: #04111b;
  text-decoration: none;
  font-weight: 900;
}

.english {
  border-color: rgba(20,228,255,.18);
}




.chat-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: .35s ease;
  z-index: 90;
}

.chat-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.chat-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 92vw);
  height: 100dvh;
  background: linear-gradient(180deg, #081421, #03070d);
  border-left: 1px solid rgba(19,244,93,.35);
  box-shadow: -20px 0 60px rgba(0,0,0,.65), 0 0 35px rgba(19,244,93,.18);
  transform: translateX(110%);
  transition: transform .45s cubic-bezier(.2,.9,.2,1);
  z-index: 100;
  display: flex;
  flex-direction: column;
}

.chat-panel.show {
  transform: translateX(0);
}

.chat-header {
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.back-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #13f45d;
  background: rgba(19,244,93,.08);
  color: #13f45d;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 0 18px rgba(19,244,93,.25);
}

.chat-header h3 {
  color: #13f45d;
  font-size: 24px;
}

.chat-header p {
  color: rgba(255,255,255,.65);
  font-size: 14px;
  margin-top: 3px;
}

.chat-body {
  flex: 1;
  padding: 22px;
  overflow-y: auto;
}

.bot-message {
  width: fit-content;
  max-width: 82%;
  margin-bottom: 14px;
  padding: 13px 16px;
  border-radius: 18px 18px 18px 4px;
  background: rgba(19,244,93,.12);
  border: 1px solid rgba(19,244,93,.28);
  color: white;
  box-shadow: 0 0 18px rgba(19,244,93,.08);
}

.chat-input {
  padding: 16px;
  display: flex;
  gap: 10px;
  border-top: 1px solid rgba(255,255,255,.12);
}

.chat-input input {
  flex: 1;
  border: none;
  outline: none;
  border-radius: 999px;
  padding: 14px 18px;
  background: rgba(255,255,255,.08);
  color: white;
}

.chat-input input::placeholder {
  color: rgba(255,255,255,.45);
}

.chat-input button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: #13f45d;
  color: #06121d;
  font-size: 20px;
  cursor: pointer;
}

body {
  min-height: 100dvh;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--dark);
  color: #fff;
  overflow: hidden;
}

.app {
  position: relative;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 55% 45%, rgba(19,244,93,.13), transparent 25%),
    radial-gradient(circle at 20% 75%, rgba(20,228,255,.08), transparent 26%),
    linear-gradient(120deg, #040a12 0%, #071827 50%, #03070d 100%);
}

.hex {
  position: absolute;
  inset: 0;
  opacity: .22;
  background:
   radial-gradient(circle at 20% 20%, rgba(0,255,140,.15), transparent 20%),
   radial-gradient(circle at 80% 70%, rgba(0,180,255,.12), transparent 25%),
   linear-gradient(180deg, #02060d 0%, #071827 100%);
  background-size: 110px 95px;
}
.particles {
  display: none;
}
/*
.particles {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle, rgba(19,244,93,.8) 0 2px, transparent 3px) 10% 18% / 190px 190px,
    radial-gradient(circle, rgba(20,228,255,.55) 0 1px, transparent 3px) 70% 28% / 240px 240px;
  animation: floatParticles 10s linear infinite;
  opacity: .35;
}*/

.radio-ui {
  position: relative;
  width: min(96vw, 1420px);
  height: min(88vh, 760px);
  border-radius: 34px;
  overflow: visible;
  display: grid;
  grid-template-columns: 34% 40% 26%;
  align-items: center;
  padding: 55px 65px;
  background:
    linear-gradient(120deg, rgba(4,14,24,.94), rgba(8,23,34,.78), rgba(3,8,14,.96));
  box-shadow:
    0 30px 90px rgba(0,0,0,.65),
    inset 0 0 0 1px rgba(20,228,255,.12),
    inset 0 0 70px rgba(19,244,93,.05);
}

.radio-ui::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 0 40px rgba(19,244,93,.12);
}

.brand-left {
  position: relative;
  z-index: 2;
}

.vertical-text {
  position: absolute;
  left: -58px;
  top: 40px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  color: rgba(255,255,255,.65);
  font-size: 35px;
  font-weight: 900;
  letter-spacing: 4px;
  text-shadow: 0 0 10px rgba(255,255,255,.22);
}

.brand-content h1 {
  font-size: clamp(42px, 5vw, 76px);
  line-height: .9;
  color: var(--yellow);
  text-shadow:
    0 0 15px rgba(244,240,24,.75),
    0 0 40px rgba(19,244,93,.3);
}

.brand-content h2 {
  margin-top: 12px;
  font-size: clamp(38px, 4.7vw, 70px);
  line-height: .9;
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(20,228,255,.9);
}

.brand-content p {
  margin-top: 22px;
  color: rgba(255,255,255,.86);
  font-size: 20px;
  font-weight: 700;
}

.wave {
  margin-top: 34px;
  width: 260px;
  height: 48px;
  background:
    repeating-linear-gradient(90deg,
      transparent 0 8px,
      var(--green) 9px 12px,
      transparent 13px 18px);
  clip-path: polygon(
    0 50%, 4% 40%, 8% 65%, 12% 20%, 16% 70%, 20% 45%, 24% 55%,
    28% 10%, 32% 85%, 36% 45%, 40% 55%, 44% 30%, 48% 75%, 52% 40%,
    56% 62%, 60% 18%, 64% 80%, 68% 46%, 72% 56%, 76% 34%, 80% 70%,
    84% 50%, 88% 38%, 92% 63%, 96% 44%, 100% 50%
  );
  filter: drop-shadow(0 0 12px var(--green));
  animation: wavePulse 1.1s ease-in-out infinite;
}

.live-badge {
  margin-top: 28px;
  width: fit-content;
  padding: 12px 24px;
  border: 2px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-size: 22px;
  font-weight: 900;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(19,244,93,.05);
  box-shadow: 0 0 22px rgba(19,244,93,.18);
}

.live-badge span {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px var(--green);
  animation: blink 1s infinite;
}

.equalizer {
  position: absolute;
  left: 20px;
  bottom: -160px;
  height: 110px;
  display: flex;
  align-items: end;
  gap: 10px;
  opacity: .55;
}

.equalizer i {
  width: 14px;
  height: 20px;
  background: var(--green);
  box-shadow: 0 0 18px rgba(19,244,93,.8);
  animation: bars 1s ease-in-out infinite;
}

.equalizer i:nth-child(2n) { animation-delay: .2s; }
.equalizer i:nth-child(3n) { animation-delay: .35s; }
.equalizer i:nth-child(4n) { animation-delay: .5s; }

.turntable {
  position: relative;
  z-index: 3;
  display: grid;
  place-items: center;
  min-height: 600px;
}

.vinyl-wrap {
  position: relative;
  width: min(44vw, 560px);
  height: min(44vw, 560px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  filter: drop-shadow(0 0 35px rgba(19,244,93,.45));
}

.vinyl-wrap::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 4px solid rgba(19,244,93,.85);
  box-shadow:
    0 0 26px rgba(19,244,93,.8),
    0 0 80px rgba(19,244,93,.35);
  animation: pulseOuter 2s ease-in-out infinite;
}

.vinyl {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 22%, rgba(255,255,255,.22), transparent 8%),
    repeating-radial-gradient(circle, #070707 0 7px, #171717 8px 11px, #050505 12px 16px),
    radial-gradient(circle, #242424, #020202 74%);
  box-shadow:
    inset 0 0 30px rgba(255,255,255,.08),
    0 35px 80px rgba(0,0,0,.75);
  animation: spin 7s linear infinite;
  animation-play-state: paused;
}

.vinyl.playing {
  animation-play-state: running;
}

.vinyl-shine {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    conic-gradient(from 20deg,
      transparent 0deg,
      rgba(255,255,255,.24) 34deg,
      transparent 62deg,
      transparent 160deg,
      rgba(93,141,255,.22) 195deg,
      transparent 230deg,
      transparent 360deg);
  mix-blend-mode: screen;
  opacity: .75;
}

.center-label {
  position: relative;
  z-index: 4;
  width: 42%;
  height: 42%;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #071323;
  border: 4px solid var(--green);
  box-shadow:
    0 0 0 8px rgba(19,244,93,.16),
    0 0 25px rgba(19,244,93,.9),
    0 0 75px rgba(19,244,93,.55);
}

.center-label img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  bottom: 26px;
  z-index: 10;
  width: 122px;
  height: 122px;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,.95);
  background:
    radial-gradient(circle, rgba(19,244,93,1), rgba(13,190,70,.94));
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow:
    0 0 25px rgba(19,244,93,.9),
    0 0 70px rgba(19,244,93,.45),
    0 25px 45px rgba(0,0,0,.6);
  transition: .2s ease;
}

.play-button:hover {
  transform: scale(1.07);
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-left: 38px solid #06121d;
  margin-left: 8px;
}

.play-button.pause .play-icon {
  width: 38px;
  height: 46px;
  border: none;
  border-left: 12px solid #06121d;
  border-right: 12px solid #06121d;
  margin-left: 0;
}

.sound-rings {
  position: absolute;
  bottom: 60px;
  width: 260px;
  height: 120px;
  pointer-events: none;
}

.sound-rings span {
  position: absolute;
  top: 36px;
  width: 38px;
  height: 70px;
  border: 6px solid var(--green);
  border-top-color: transparent;
  border-bottom-color: transparent;
  opacity: .85;
  filter: drop-shadow(0 0 8px var(--green));
  animation: ringPulse 1.2s ease-in-out infinite;
}

.sound-rings span:first-child {
  left: 10px;
  border-left: none;
  border-radius: 0 60px 60px 0;
}

.sound-rings span:last-child {
  right: 10px;
  border-right: none;
  border-radius: 60px 0 0 60px;
}

.status {
  position: absolute;
  bottom: -20px;
  color: rgba(255,255,255,.8);
  font-weight: 700;
  letter-spacing: 1px;
}

.music-note {
  position: absolute;
  color: var(--green);
  font-size: 58px;
  text-shadow: 0 0 18px var(--green);
  animation: floatNote 4s ease-in-out infinite;
}

.note1 { top: 28px; left: 60px; }
.note2 { top: 60px; right: 42px; animation-delay: .8s; }
.note3 { top: 230px; right: -4px; animation-delay: 1.4s; }

.socials {
  position: relative;
  z-index: 3;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 26px;
  justify-items: center;
  margin-bottom: 22px;
}

.socials a {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 4px solid var(--green);
  color: var(--green);
  text-decoration: none;
  font-size: 38px;
  font-weight: 900;
  background: rgba(0,0,0,.25);
  box-shadow: 0 0 22px rgba(19,244,93,.4);
  transition: .2s ease;
}

.socials a:hover {
  transform: translateY(-7px) scale(1.04);
  box-shadow: 0 0 34px currentColor;
}

.socials .orange {
   color: var(--cyan);
   border-color: var(--cyan);

   box-shadow:
      0 0 18px rgba(20,228,255,.45),
      0 0 40px rgba(20,228,255,.18);
}

.socials small {
  font-weight: 900;
  font-size: 13px;
  color: var(--green);
}

.socials small:nth-of-type(1),
.socials small:nth-of-type(4) {
  color: var(--orange);
}

.side-vibes {
  position: absolute;
  right: 28px;
  top: 48px;

  writing-mode: vertical-rl;

  color: var(--cyan);

  font-size: 54px;
  font-weight: 900;

  text-shadow:
    0 0 18px rgba(20,228,255,.95),
    0 0 45px rgba(20,228,255,.55),
    0 0 90px rgba(20,228,255,.25);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes blink {
  50% { opacity: .35; transform: scale(.75); }
}

@keyframes pulseOuter {
  50% {
    box-shadow:
      0 0 35px rgba(19,244,93,1),
      0 0 110px rgba(19,244,93,.58);
  }
}

@keyframes wavePulse {
  50% { transform: scaleY(.65); opacity: .75; }
}

@keyframes bars {
  0%, 100% { height: 18px; }
  50% { height: 105px; }
}

@keyframes ringPulse {
  50% {
    transform: scaleX(1.2);
    opacity: .45;
  }
}

@keyframes floatNote {
  0%, 100% { transform: translateY(0) rotate(-6deg); opacity: .75; }
  50% { transform: translateY(-22px) rotate(8deg); opacity: 1; }
}

@keyframes floatParticles {
  to { background-position: 150px 60px, -100px 120px; }
}


/* PANEL FACEBOOK - funciona en computadora y celular */
.facebook-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(430px, 94vw);
  height: 100dvh;
  background: linear-gradient(180deg, #081421, #03070d);
  transform: translateX(110%);
  transition: transform .45s cubic-bezier(.2,.9,.2,1);
  z-index: 120;
  border-left: 1px solid rgba(20,228,255,.22);
  box-shadow:
    -20px 0 60px rgba(0,0,0,.65),
    0 0 40px rgba(20,228,255,.12);
  display: flex;
  flex-direction: column;
}

.facebook-panel.show {
  transform: translateX(0);
}

.facebook-body {
  flex: 1;
  overflow: hidden;
  background: #fff;
}

.facebook-body iframe {
  width: 100%;
  height: 100%;
  border: none;
  background: #fff;
}

@media (max-width: 980px) {
    .equalizer i:nth-child(1),
.equalizer i:nth-child(2),
.equalizer i:nth-child(11),
.equalizer i:nth-child(12) {
   display: none;
}
  body { overflow: auto; }

  .radio-ui {
    width: 100%;
    min-height: 100dvh;
    height: auto;
    border-radius: 0;
    grid-template-columns: 1fr;
    padding: 38px 22px 80px;
    gap: 28px;
  }

  .brand-left {
    text-align: center;
  }

  .vertical-text,
  .side-vibes,
  .music-note {
    display: none;
  }

  .wave,
  .live-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .turntable {
    min-height: 430px;
  }

  .vinyl-wrap {
    width: min(84vw, 390px);
    height: min(84vw, 390px);
  }

  .play-button {
    width: 92px;
    height: 92px;
    bottom: 8px;
  }

  .play-icon {
    border-top-width: 19px;
    border-bottom-width: 19px;
    border-left-width: 30px;
  }

  .status {
    bottom: -34px;
  }

  .socials {
    margin-top: 24px;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }

  .socials a {
     color: var(--yellow);
     border: 4px solid var(--yellow);

     box-shadow:
        0 0 18px rgba(244,240,24,.35),
        0 0 40px rgba(244,240,24,.15);
  }

  .socials small {
    font-size: 10px;
  }
  
  
  
  .facebook-panel {
    position: fixed;
    top: 0;
    right: 0;

    width: min(430px, 94vw);
    height: 100dvh;

    background:
      linear-gradient(180deg,
        #081421,
        #03070d);

    transform: translateX(110%);
    transition: .45s cubic-bezier(.2,.9,.2,1);

    z-index: 120;

    border-left: 1px solid rgba(20,228,255,.22);

    box-shadow:
      -20px 0 60px rgba(0,0,0,.65),
      0 0 40px rgba(20,228,255,.12);
  }

  .facebook-panel.show {
    transform: translateX(0);
  }

  .facebook-body {
    height: calc(100dvh - 95px);
    overflow: hidden;
  }

  .facebook-body iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: #fff;
  }
  
  
  
  .equalizer {
  position: absolute;
  left: 50%;
  bottom: -15px;
  width: 88vw;
  max-width: 390px;
  height: 110px;
  transform: translateX(-50%);
  justify-content: center;
  align-items: end;
  gap: 7px;
  opacity: .35;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.equalizer i {
  width: 9px;
}

.turntable {
  position: relative;
  z-index: 3;
}

.vinyl-wrap {
  z-index: 5;
}

.play-button {
  z-index: 8;
}
  
  
  
  
  
  
  
  
  
}


.cyan-btn {
   color: var(--cyan) !important;
   border-color: var(--cyan) !important;

   box-shadow:
      0 0 18px rgba(20,228,255,.45),
      0 0 40px rgba(20,228,255,.18) !important;
}

.yellow-btn {
   color: var(--yellow) !important;
   border-color: var(--yellow) !important;

   box-shadow:
      0 0 18px rgba(244,240,24,.35),
      0 0 40px rgba(244,240,24,.15) !important;
}

.cyan-text {
   color: var(--cyan) !important;
}

.yellow-text {
   color: var(--yellow) !important;
}


.store-buttons {
   position: absolute;

   bottom: -78px;
   left: 50%;

   transform: translateX(-50%);

   display: flex;
   gap: 16px;

   z-index: 20;
}

.store-buttons img {
   height: 52px;

   opacity: .92;

   transition: .25s ease;

   filter:
      drop-shadow(0 0 10px rgba(0,0,0,.45));
}

.store-buttons img:hover {
   transform: translateY(-4px) scale(1.04);

   opacity: 1;

   filter:
      drop-shadow(0 0 16px rgba(20,228,255,.35));
}


.store-buttons {
   animation: fadeStores 1.5s ease;
}

@keyframes fadeStores {
   from {
      opacity: 0;
      transform: translateX(-50%) translateY(15px);
   }

to {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
}

 
 
.header-app-icons {
   display: flex;
   gap: 10px;

   margin-top: 14px;
}

.header-app-icons a {
   width: 42px;
   height: 42px;

   border-radius: 50%;

   display: grid;
   place-items: center;

   text-decoration: none;

   font-size: 20px;

   transition: .25s ease;

   background: rgba(255,255,255,.04);
}

.header-app-icons a:first-child {
   color: var(--yellow);

   border: 2px solid var(--yellow);

   box-shadow:
      0 0 14px rgba(244,240,24,.25);
}

.header-app-icons a:last-child {
   color: var(--cyan);

   border: 2px solid var(--cyan);

   box-shadow:
      0 0 14px rgba(20,228,255,.25);
}

.header-app-icons a:hover {
   transform: scale(1.08);

   background: rgba(255,255,255,.08);
}


@media (max-width: 980px) {
  .equalizer i:nth-of-type(1),
  .equalizer i:nth-of-type(2),
  .equalizer i:nth-of-type(15),
  .equalizer i:nth-of-type(16) {
    display: none !important;
  }
}


