.loader {
    width: 80px;
    height: 80px;
    border: 8px solid #ddd;
    border-top: 8px solid #09f;
    border-radius: 50%;
    animation: spin 1s linear infinite;

    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

@keyframes spin {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}
#giftButton {
  position: relative;
  padding: 15px 35px;
  font-size: 20px;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  background: linear-gradient(135deg,#ff4b6e,#ff1744);
  color: white;
  overflow: visible;
}

.emoji {
  position: absolute;
  left: 50%;
  top: 50%;
  font-size: 28px;
  pointer-events: none;
  animation: fly3 1.2s ease-out forwards;
}

@keyframes fly3 {
  0% {
    transform: translate(0,0) rotate(0deg) scale(1);
    opacity: 1;
  }

  100% {
        transform: translate(var(--x),var(--y)) rotate(360deg) scale(1.8);
        opacity: 0;
    }
}
.clear {
    clear: both;
}
#songtext {
    white-space: pre-wrap;
	font-size: clamp(14px, 4vw, 22px);
}

#songtext span.active {
    color: red;
    text-shadow: 0 0 8px orange;
}
#songtext span.done {
    color:gray;
}

.song-search input{
	font-size:clamp(14px, 2vw, 20px);;
}
.karaoke {
    font-size: 40px;
    font-weight: bold;

    color: #777;

    background:
        linear-gradient(
            to right,
            #ff0000 0%,
            #ff0000 0%,
            #777 0%
        );

    background-clip: text;
    -webkit-background-clip: text;

    color: transparent;

    animation: fillText 3s linear forwards;
}


@keyframes fillText {

    from {
        background-size: 0% 100%;
    }

    to {
        background-size: 100% 100%;
    }

}

button {
	  background: #ff4ecd;
	  border: none;
	  color: white;

    padding:10px 20px;
    margin:5px;
    cursor:pointer;
    border-radius:8px;
}
nav{
	padding:5px;
}
.progress {
    width:100%;
    height:8px;
    background:#555;
    margin-top:20px;
    cursor:pointer;
}

.bar {
    height:100%;
    width:0%;
    background:#00ff99;
}

p.hero {
  font-size: clamp(14px, 2vw, 18px);
  max-width: 600px;
  opacity: 0.9;
}

/* FLOATING BUTTON */
.cta-fixed {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ff4ecd;
  padding: 15px 20px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
  animation: pulse 2s infinite;
  z-index:998;
}

/* SECTIONS */
section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: auto;
}


.container{
    place-items: center;
	
}

/* CARD GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.grid a{
		color:#FFF;

}

.gridCelb{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 15px;
}

.card {
  background: #1b1b2e;
  padding: 20px;
  border-radius: 16px;
  transition: 0.3s;
  cursor: pointer;
}
.card a{
	color:#FFFFFF;
}
.card:hover {
  transform: translateY(-10px);
  background: #2a2a45;
}

/* SLIDE IN */
.slide {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s;
}

.slide.show {
  opacity: 1;
  transform: translateY(0);
}

/* FAQ */
.faq-item {
  background: #1b1b2e;
  margin-bottom: 10px;
  padding: 15px;
  border-radius: 10px;
  cursor: pointer;
}

.faq-answer {
  display: none;
  margin-top: 10px;
  opacity: 0.8;
}

/* MODAL */
.modal {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
  z-index:999;
}

.modal-content {
  background: #fff;
  color: #000;
  padding: 30px;
  border-radius: 20px;
  width: 90%;
  max-width: 400px;
}
.but_st2{
	background:#8A2BE2;
	height:20px;
	padding: 0px 10px;
}

@keyframes fadeInDown {
  from {opacity:0; transform: translateY(-30px);}
  to {opacity:1; transform: translateY(0);}
}

@keyframes pulse {
  0% {transform: scale(1);}
  50% {transform: scale(1.1);}
  100% {transform: scale(1);}
}

.content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: #1f2937;
}

.content h1 {
	font-size: clamp(22px, 4vw, 32px);
    line-height: 1.2;
    margin-bottom: 15px;
    color: #111827;
}

.content h2 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 10px;
    color: #1e3a8a;
}

.content h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #374151;
}

.content p {
    margin-bottom: 14px;
    color: #374151;
}


	body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #AFBFCF;
  color: #fff;
  overflow-x: hidden;
}

.loaddots {
    animation: blink 1.5s infinite;
}

@keyframes blink {
    0% {opacity:0.2}
    50% {opacity:1}
    100% {opacity:0.2}
}

.shakeNo {
    animation: shakeNo 0.5s ease;
}
@keyframes shakeNo {

    0% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(-8deg);
    }

    40% {
        transform: rotate(8deg);
    }

    60% {
        transform: rotate(-6deg);
    }

    80% {
        transform: rotate(6deg);
    }

    100% {
        transform: rotate(0deg);
    }
}

/* HEADER */
header {
  height: 30vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: radial-gradient(circle at top, #ff4ecd, #2b2b55);
  position: relative;
}


.like-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
	margin-right:5px;
    padding: 12px 22px;
    border: none;
    border-radius: 50px;

    background: linear-gradient(135deg,#ff4b6e,#ff1744);
    color: white;

    font-size: 18px;
    font-weight: 600;

    cursor: pointer;

    box-shadow:
        0 8px 20px rgba(255,23,68,.35);

    transition: .25s;
}

.like-btn:hover {
    transform: translateY(-3px);
}

.like-btn:active {
    transform: scale(.92);
}


.heart {
    font-size: 28px;
    transition:.3s;
}


.like-btn.active .heart {
    animation: heartBeat .5s;
    color:white;
}


@keyframes heartBeat {

    0% {
        transform:scale(1);
    }

    30% {
        transform:scale(1.5);
    }

    60% {
        transform:scale(.9);
    }

    100% {
        transform:scale(1);
    }

}

.floating-heart{
    position:absolute;
    color:white;
    font-size:20px;
}
.an1{
    animation: fly 1s ease forwards;
}
.an2{
    animation: fly 2s ease forwards;
}
.an3{
    animation: fly2 2s cubic-bezier(.17,.67,.83,.67);
}

@keyframes fly2 {

    0% {
        opacity:1;
        transform:
        translateY(0) scale(1);
    }

    100% {
        opacity:0;
        transform:
        translateY(-70px)
        scale(1.8);
    }

}
@keyframes fly {

    0% {
        opacity:1;
        transform:
        translateY(0) scale(1);
    }

    100% {
        opacity:0;
        transform:
        translateY(-70px)
        scale(1.8);
    }

}