@import url('https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&display=swap');

@font-face {
  font-family: 'DisposableDroidBB';
  src: url('./fonts/DisposableDroidBB.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@import url('https://fonts.googleapis.com/css2?family=Kosugi&family=Spectral+SC:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;1,200;1,300;1,400;1,500;1,600;1,700;1,800&family=Tomorrow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');


.history-fc {
  font-family: "Andika", sans-serif;
}


.button {
  border-radius: 50%;
  transition-duration: .3s;
}

.button:hover .bell {
  animation: bellRing 0.9s both;
}

@keyframes bellRing {
  0%,
  100% {
    transform-origin: top;
  }

  15% {
    transform: rotateZ(10deg);
  }

  30% {
    transform: rotateZ(-10deg);
  }

  45% {
    transform: rotateZ(5deg);
  }

  60% {
    transform: rotateZ(-5deg);
  }

  75% {
    transform: rotateZ(2deg);
  }
}

.button:active {
  transform: scale(0.8);
}
  

@keyframes bounce-up-down {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
}

.animate-bounce-small {
  animation: bounce-up-down 1s ease-in-out infinite;
}

.member-glow-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}


.member-glow-wrapper {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.member-glow-wrapper::before,
.member-glow-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
  animation: none;
}

.member-glow-wrapper::before {
  left: -75%;
  width: 50%;
}

.member-glow-wrapper::after {
  left: -85%;
  width: 25%;
}

.member-glow-wrapper.animate-glow::before {
  animation: glowSwipe1 1s ease-in-out forwards;
}

.member-glow-wrapper.animate-glow::after {
  animation: glowSwipe2 1s ease-in-out forwards;
  animation-delay: 0.2s;
}

@keyframes glowSwipe1 {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

@keyframes glowSwipe2 {
  0% {
    left: -85%;
  }
  100% {
    left: 135%;
  }
}

.g_id_signin .abcRioButtonContents {
  display: none !important;
}

.g_id_signin .abcRioButton {
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  padding: 0 !important;
}



.plan-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.plan-card:hover {
    transform: translateY(-5px);
}
.highlighted {
    position: relative;
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 10px 25px rgba(238, 107, 26, 0.3);
}
.highlighted:hover {
    transform: scale(1.08) translateY(-5px);
}
.top-gradient {
    height: 4px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}



.gradient-bg {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, #ee6b1a, #df3f0f, #d6090c);
    transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    z-index: 0;
}

.gradient-bg.right {
    right: 0;
}

.gradient-bg.left {
    left: 0;
}

.hidden-panel {
    display: none;
}

.container {
    position: relative;
    z-index: 10;
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
}

.content-wrapper {
    width: 100%;
    max-width: 450px;
    padding: 2rem;
}

.btn-switch {
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-switch:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .gradient-bg {
        width: 100%;
        height: 50%;
        top: auto;
        bottom: 0;
    }
    
    .gradient-bg.right {
        top: 0;
        bottom: auto;
    }
    
    .gradient-bg.left {
        top: auto;
        bottom: 0;
    }
    
    .container {
        width: 100%;
        height: 50%;
    }
}

.login-register {
  font-family: "Montserrat", sans-serif;
}

.member-plans {
  font-family: "Montserrat", sans-serif;
}



.menu-hidden {
    display: none;
}

.menu-visible {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
}

.menu-container {
    z-index: 999;
}

.close-icon {
    display: none;
}

.close-icon-visible {
    display: inline;
}



.active-nav {
  font-weight: 700;
  transform: scale(1.1);
}




.scrolling-text-container {
    width: 300px;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    font-family: "DM Mono", monospace;
    font-weight: 300;
}

.scrolling-text {
  will-change: transform;
}

.scrolling-text a {
    margin-left: 10px;
}

/* .scrolling-text-container-footer {
  width: 140px;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

@keyframes scroll-footer {
  0% {
      transform: translateX(100%);
  }
  100% {
      transform: translateX(-100%);
  }
}

.scrolling-text-footer {
  display: inline-block;
  white-space: nowrap;
  animation: scroll-footer 15s linear infinite;
}

.scrolling-text-footer span {
  margin-left: 20px;
} */

.spinner span {
  animation: loading6454 1.75s ease infinite;
}

.spinner span:nth-child(2) {
  animation-delay: 0.25s;
}

.spinner span:nth-child(3) {
  animation-delay: 0.5s;
}

.spinner span:nth-child(4) {
  animation-delay: 0.75s;
}

@keyframes loading6454 {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }
}


@keyframes bounceArrow {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-2px);
  }
}

.bounce-arrow {
  display: inline-block;
  animation: bounceArrow 1.2s ease-in-out infinite;
}



/* .loader {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  white-space: nowrap;
}

.loader-text {
  border-right: 2px solid;
  animation: blink 0.7s steps(1) infinite;
  overflow: hidden;
  display: inline-block;
  white-space: nowrap;
}

@keyframes blink {
  0%, 100% {
    border-right-color: rgba(119, 118, 118, 0.75);
  }
  50% {
    border-right-color: transparent;
  }
} */




@keyframes floatUpDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.animate-bounce-up {
  animation: floatUpDown 1s infinite ease-in-out;
}



.header-info {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: height 0.5s ease;
}

#posts-section {
  border-radius: 8px;
  padding: 15px;
  height: auto;
  overflow: hidden;
  transition: height 0.5s ease;
}

/* #cast-news-button {
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
} */




/* .container-news-1 {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.news-item {
    position: absolute;
    width: 100%;
    height: 80%;
    top: 0;
    left: 100%;
    transition: left 0.5s ease-in-out;
    display: none;
}

.news-item.active {
    left: 0;
    display: block;
}

.news-item-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
} */


.card-veil {
  position: relative;
  overflow: hidden;
}

.card-veil::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.12),
    rgba(255, 255, 255, 0.342),
    rgba(255, 255, 255, 0.356)
  );
  pointer-events: none;
  z-index: 10;
}



/* .lazy-image {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-in-out, transform 1s ease-in-out;
}

.lazy-image.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.box-episodes-content {
  transition: all 0.35s ease-in-out;
  opacity: 1;
  transform: scale(1);
  box-shadow: 0px 7px 16px 0px rgba(0, 0, 0, 0.2);
} */





.promotion-card {
    transition: all 0.3s ease;
    transform-origin: center;
}

.promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.15);
}

.heart-btn {
    transition: all 0.2s ease;
}

.heart-btn:hover {
    transform: scale(1.1);
    color: #ef4444;
}

.promo-tag {
    position: absolute;
    top: 10px;
    left: -5px;
    padding: 5px 15px;
    background: linear-gradient(45deg, #ef4444, #f97316);
    color: white;
    font-weight: 700;
    font-size: 0.75rem;
    transform: rotate(-5deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.promo-tag::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    border-left: 5px solid transparent;
    border-right: 0 solid transparent;
    border-top: 5px solid #c2410c;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 8px;
    padding: 5px;
    min-width: 50px;
}

.countdown-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ef4444;
}

.countdown-label {
    font-size: 0.65rem;
    color: #ef4444;
    text-transform: uppercase;
}

.add-to-cart {
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.add-to-cart::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(30deg);
    transition: all 0.6s ease;
}

.add-to-cart:hover::after {
    left: 120%;
}

.sale-badge {
    animation: pulse-slow 2s infinite;
}

.custom-shadow {
  box-shadow: 30px 30px 0px 0px #FDF5BF;
}


@media (min-width: 640px) {
    .hidden-sm {
        display: flex;
    }
}

.up-site {
    position: relative;
    bottom: 100px;
    right: 10px;
}

.footer-copyright {
  font-family: 'DisposableDroidBB', sans-serif;

}

@layer utilities {
  .fade-in {
    @apply opacity-0 transition-opacity duration-700;
  }

  .fade-in.show {
    @apply opacity-100;
  }
}
