html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Orbitron', sans-serif;
    background: #0f0f0f;
    color: #f2f2f2;
    height: 100%;
    overflow: hidden;
}

.scroll-container {
    /* scroll-snap-type: y mandatory; */
    overflow-y: scroll;
    height: 100vh;
}

section {
    scroll-snap-align: start;
    /* height: 100vh; */
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease forwards;
}

section:nth-child(1) {
    animation-delay: 0.2s;
}

section:nth-child(2) {
    animation-delay: 1.2s;
}

section:nth-child(3) {
    animation-delay: 2.2s;
}

section:nth-child(4) {
    animation-delay: 3.2s;
}

section:nth-child(5) {
    animation-delay: 4.2s;
}

section:nth-child(6) {
    animation-delay: 5.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glitch {
    0% {
        text-shadow: 2px 2px #ff00cc, -2px -2px #00ffff;
    }

    50% {
        text-shadow: -2px 2px #00ffff, 2px -2px #ff00cc;
    }

    100% {
        text-shadow: 2px 2px #ff00cc, -2px -2px #00ffff;
    }
}

.features,
.skills,
.value,
.faqs {
    background: #1a1a1a;
    border-left: 5px solid #ff00cc;
    border-right: 5px solid #00ffff;
}

.testimonials,
.team {
    background: #111111;
    border-left: 5px solid #00ffff;
    border-right: 5px solid #ff00cc;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #00ffff;
}

p,
li {
    font-size: 1.2rem;
    line-height: 1.8rem;
    color: #f2f2f2;
}

.testimonial {
    margin-bottom: 2rem;
    border-left: 3px solid #ff00cc;
    padding-left: 1rem;
}

.team-member {
    display: inline-block;
    text-align: center;
    margin: 1rem;
}

.team-member img {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    border: 3px solid #00ffff;
}
.kael-button {
    display: inline-block;
    padding: 12px 28px;
    background: #0f0f0f;
    color: #00f7ff;
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #00f7ff;
    border-radius: 8px;
    box-shadow: 0 0 8px #00f7ff, 0 0 15px #00f7ff inset;
    transition: all 0.25s ease-in-out;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.kael-button::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.2) 0%, transparent 70%);
    animation: pulse 2s infinite ease-in-out;
    z-index: 0;
}

.kael-button:hover {
    background-color: #00f7ff;
    color: #0f0f0f;
    box-shadow: 0 0 12px #00f7ff, 0 0 25px #00f7ff inset;
}

.zara-button {
    display: inline-block;
    padding: 12px 28px;
    background: #0f0f0f;
    color: #ff00aa;
    font-family: 'Orbitron', sans-serif;
    font-size: 18px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid #ff00aa;
    border-radius: 8px;
    box-shadow: 0 0 8px #ff00aa, 0 0 15px #ff00aa inset;
    transition: all 0.25s ease-in-out;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.zara-button::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 0, 170, 0.2) 0%, transparent 70%);
    animation: pulse 2s infinite ease-in-out;
    z-index: 0;
}

.zara-button:hover {
    background-color: #ff00aa;
    color: #0f0f0f;
    box-shadow: 0 0 12px #ff00aa, 0 0 25px #ff00aa inset;
}

@keyframes pulse {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(25%, 25%);
    }
}

.head-section {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    background: linear-gradient(90deg, #ff00cc, #3333ff);
    padding: 16px;

}

header {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 2.5rem;
    animation: glitch 2s infinite;
}

.progress-container {
    position: relative;
    width: 100px;
    height: 100px;
  }

  .progress-ring {
    transform: rotate(-90deg);
  }

  .progress-ring circle {
    fill: none;
    stroke-width: 10;
    stroke-linecap: round;
  }

  .progress-ring-bg {
    stroke: #333;
  }

  .progress-ring-fg {
    stroke: #00f0ff;
    transition: stroke-dashoffset 0.1s linear;
  }

  .play-button {
    margin-top: 20px;
    padding: 10px 20px;
    background: #00f0ff;
    color: #000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
  }

  .female{
    background: #ff00cc;
    stroke: #ff00cc;
  }

  .male{
    background: #00f0ff;
    stroke: #00f0ff;
  }

  .hidden {
    display: none;
  }
 
  .character-selection {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 20px;
    
  }

  .character-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    width: 100%;
    
  }

  .character-image {
    width: 500px;
    max-height: 500px;
    object-fit: contain; /* fit image inside without cropping */
  }

  .character-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }

  /* Make layout stack vertically on small screens */
  @media (max-width: 768px) {
    .character-selection {
      flex-direction: column;
      align-items: center;
      max-width: 390;
    }
    .section{
        height: auto;
    }
  }