@font-face {
  font-family: Montserrat;
  src: url("../fonts/Montserrat/Montserrat-VariableFont_wght.b87689f37dfb.ttf");
}

a:hover {
  text-decoration: none !important;
}

body.homepage {
  height: 100vh;
  max-height: 100vh;
  background-color: #0a0a0a;
  color: #fff;
  padding: 0;
  margin: 0;
  font-family: 'Courier New', 'Courier', monospace;
  overflow-x: hidden;
  overflow-y: auto;
}

body.homepage h1, body.homepage h2, body.homepage h3 {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 900;
}

body.homepage a {
  text-decoration: none;
}

body.homepage a:hover {
  text-decoration: line-through;
}

body.homepage div#landing {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  filter: contrast(1.2);
  z-index: 0;
}

body.homepage div#landing canvas {
  width: 100%;
  height: 100%;
  display: block;
}

body.homepage div.container {
  position: relative;
  z-index: 1;
  width: 25%;
  min-width: 500px;
  height: fit-content;
  min-height: 100%;
  margin: 0 auto;
  background: linear-gradient(180deg, #000 0%, #1a1a1a 100%);
  padding: 1.5rem 1rem;
  box-sizing: border-box;
  gap: 1.5rem;
  display: flex;
  flex-direction: column;
  border-left: 4px solid #ff0066;
  border-right: 4px solid #00ff99;
  box-shadow: 0 0 40px rgba(255, 0, 102, 0.3),
              inset 0 0 100px rgba(0, 0, 0, 0.5);
  clip-path: polygon(
    0% 0%,
    100% 0%,
    100% 2%,
    100% 98%,
    100% 100%,
    0% 100%,
    0% 98%,
    0% 2%
  );
}

@media (max-width: 999px) {
  body.homepage div.container {
    margin-top: 200px;
  }
}

@media (max-width: 650px) {
  body.homepage div.container {
    width: 100%;
    border-left: 2px solid #ff0066;
    border-right: 2px solid #00ff99;
  }
}

body.homepage div.container h1 {
  color: #ff0066;
  font-size: 2.5rem;
  text-shadow: 3px 3px 0 #00ff99,
               6px 6px 0 rgba(255, 0, 102, 0.3);
  transform: rotate(-1deg);
  margin-bottom: 0.5rem;
}

body.homepage div.container h2 {
  color: #00ff99;
  font-size: 1.2rem;
  margin: 0.5rem 0;
  text-shadow: 2px 2px 0 rgba(255, 0, 102, 0.5);
  font-style: italic;
  transform: rotate(0.5deg);
}

body.homepage div.container h3 {
  color: #fff;
  font-size: 1.1rem;
  border-bottom: 2px solid #ff0066;
  padding-bottom: 0.3rem;
  display: inline-block;
}

body.homepage div.container div.title {
  border-bottom: 3px dashed #ff0066;
  padding-bottom: 1rem;
  position: relative;
}

body.homepage div.container div.title::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #00ff99;
  opacity: 0.5;
}

body.homepage div.container div.programs {
  box-sizing: border-box;
  text-align: center;
  margin: 1rem 0;
}

body.homepage div.container div.programs a {
  border: 3px solid #ff0066;
  margin: 1rem 0;
  padding: 0.8rem 2rem;
  box-sizing: border-box;
  display: inline-block;
  background: linear-gradient(135deg, #ff0066 0%, #cc0052 100%);
  font-weight: 900;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 3px;
  position: relative;
  transform: skew(-5deg);
  transition: all 0.2s;
  box-shadow: 4px 4px 0 #00ff99,
              8px 8px 0 rgba(0, 255, 153, 0.3);
}

body.homepage div.container div.programs a:hover {
  background: linear-gradient(135deg, #00ff99 0%, #00cc7a 100%);
  border-color: #00ff99;
  box-shadow: 4px 4px 0 #ff0066,
              8px 8px 0 rgba(255, 0, 102, 0.3);
  transform: skew(-5deg) translate(-2px, -2px);
}

body.homepage div.container div.podcasts {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 1.5rem;
  align-items: center;
}

body.homepage div.container div.podcasts iframe {
  padding: 0.5rem;
  background: #ffffff;
  box-sizing: border-box;
  border: 3px solid #ff0066;
  border-radius: 0;
  box-shadow: 5px 5px 0 rgba(0, 255, 153, 0.3);
  position: relative;
}

body.homepage div.container div.podcasts iframe:nth-child(even) {
  border-color: #00ff99;
  box-shadow: 5px 5px 0 rgba(255, 0, 102, 0.3);
}

body.homepage div.container div.podcasts a {
  color: #00ff99;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 0.5rem 1rem;
  border: 2px dashed #00ff99;
  background: rgba(0, 255, 153, 0.1);
  transition: all 0.2s;
}

body.homepage div.container div.podcasts a:hover {
  background: rgba(0, 255, 153, 0.2);
  color: #fff;
  border-style: solid;
  text-decoration: none;
}

body.homepage div.container div.social-networks {
  border-top: 3px dashed #ff0066;
  padding-top: 1rem;
  position: relative;
}

body.homepage div.container div.social-networks::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #00ff99;
  opacity: 0.5;
}

body.homepage div.container div.social-networks ul {
  display: flex;
  padding: 0;
  list-style: none;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

body.homepage div.container div.social-networks ul a {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.85rem;
  padding: 0.4rem 0.6rem;
  background: rgba(255, 0, 102, 0.1);
  border: 2px solid transparent;
  transition: all 0.2s;
}

body.homepage div.container div.social-networks ul a:hover {
  color: #ff0066;
  border-color: #ff0066;
  background: rgba(255, 0, 102, 0.2);
  transform: translate(-2px, -2px);
  box-shadow: 2px 2px 0 #00ff99;
}

body.homepage div.container div.social-networks ul img {
  width: 1.2rem;
  filter: invert(1) brightness(1.5);
}

body.homepage div.container div.contact {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

body.homepage div.container div.contact a {
  color: #00ff99;
  font-weight: bold;
  border-bottom: 2px solid #00ff99;
  padding-bottom: 2px;
  transition: all 0.2s;
}

body.homepage div.container div.contact a:hover {
  color: #ff0066;
  border-color: #ff0066;
}

/*# sourceMappingURL=comunaradio.css.d41d8cd98f00.map */
