html, body {
    font-family: Georgia, Bangla;
    background-color: black;
    text-align: center;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}
@font-face {
    font-family: "Bangla";
    src: url("./bangla.ttf");
}
h1 {
  font-family: "Times New Roman", Times, serif;
  font-size: 22px;
  background-color: #000000;
  padding: 20px 30px;
  text-align: center;
  border-radius: 12px;
  width: fit-content;
  margin: 40px auto;
  box-shadow: 
    0 4px 8px rgba(255, 255, 255, 0.1), 
    0 6px 20px rgba(0, 0, 0, 0.3),
    inset 0 0 8px rgba(255, 255, 255, 0.05);
  border: 1px solid #444;
  transition: all 0.3s ease;
}

h1 {
  font-family: "Times New Roman", serif;
  font-size: 20px;
  color: #ffffff;
  background-color: black;
  padding: 15px 20px;
  text-align: center;
  border-radius: 25px;
  width: fit-content;
  margin: 30px auto;
  box-shadow: 
    0 4px 8px rgba(0, 0, 0, 0.5),   /* Darker shadow for a more refined look */
    0 6px 15px rgba(255, 255, 255, 0.2),  /* Light highlight shadow for contrast */
    inset 0 0 15px rgba(255, 255, 255, 0.1);  /* Soft inner glow */
  border: 1px solid #444;  /* Elegant border with soft contrast */
  transition: all 0.3s ease-in-out;
  font-weight: 600;
}
h1:hover {
  box-shadow: 
    0 8px 15px rgba(0, 38, 102, 0.6),   /* Deep blue glow for premium feel */
    0 10px 20px rgba(0, 38, 102, 0.4),  /* Rich deep blue outer glow */
    inset 0 0 10px rgba(0, 38, 102, 0.3);  /* Deep blue inner glow */
  transform: scale(1.05);
}
/* Rainbow glowing text */
.rainbow-text {
  background-image: linear-gradient(-90deg, #ff0000, #a6f656, #55f6f6, #a655f6, #f65555);
  background-size: 200%;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  animation: animate 3s linear infinite reverse;  /* Slower animation for smoother glow */
  display: inline-block;
  font-weight: 600;
}
h2 {
    font-family: font-family: "Times New Roman", Times, serif;
    font-size: 1.25em;
  background: linear-gradient(45deg, white, lightblue, blue, violet, purple, pink, red);
  -webkit-background-clip: text;
  color: transparent;
  line-height: 1.5;
  font-weight: normal;
  text-align: center;
  margin: 0.5em 0;
}
p {
    font-family: Georgia, Bangla;
    text-align: center;
    font-size: 4.5vw;
    font-weight: normal;
    color: #00ffe7;
    margin-top: 15px;
    line-height: 1.6;
}
.container {
  background-color: black;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1);
  width: auto;
  text-align: center;
  position: relative;
  animation: rainbow-glow 5s infinite;
  border: 1.5px solid transparent;
}
textarea {
  font-family: Georgia, Bangla;
  width: 300px;
  height: 150px;
  padding: 5px;
  margin: 20px 0;
  font-size: 16;
  border: 1.5px solid #00ffe7;
  border-radius: 15px;
  background-color: black;
  color: #00ffe7;
}
:root {
  --shiny-cta-bg: #000000;
  --shiny-cta-bg-subtle: #1a1818;
  --shiny-cta-fg: #ffffff;
  --shiny-cta-highlight: blue;
  --shiny-cta-highlight-subtle: #8484ff;
}
@property --gradient-angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@property --gradient-angle-offset {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
@property --gradient-percent {
  syntax: "<percentage>";
  initial-value: 5%;
  inherits: false;
}
@property --gradient-shine {
  syntax: "<color>";
  initial-value: white;
  inherits: false;
}
.shiny-cta {
  --animation: gradient-angle linear infinite;
  --duration: 3s;
  --shadow-size: 2px;
  isolation: isolate;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  outline-offset: 2px;
  padding: 1rem 2rem;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.2;
  border: 1px solid transparent;
  border-radius: 360px;
  color: var(--shiny-cta-fg);
  background: linear-gradient(var(--shiny-cta-bg), var(--shiny-cta-bg))
      padding-box,
    conic-gradient(
        from calc(var(--gradient-angle) - var(--gradient-angle-offset)),
        transparent,
        var(--shiny-cta-highlight) var(--gradient-percent),
        var(--gradient-shine) calc(var(--gradient-percent) * 2),
        var(--shiny-cta-highlight) calc(var(--gradient-percent) * 3),
        transparent calc(var(--gradient-percent) * 4)
      )
      border-box;
  box-shadow: inset 0 0 0 1px var(--shiny-cta-bg-subtle);

  &::before,
  &::after,
  span::before {
    content: "";
    pointer-events: none;
    position: absolute;
    inset-inline-start: 50%;
    inset-block-start: 50%;
    translate: -50% -50%;
    z-index: -1;
  }

  &:active {
    translate: 0 1px;
  }
}
.shiny-cta::before {
  --size: calc(100% - var(--shadow-size) * 3);
  --position: 2px;
  --space: calc(var(--position) * 2);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(
      circle at var(--position) var(--position),
      white calc(var(--position) / 4),
      transparent 0
    )
    padding-box;
  background-size: var(--space) var(--space);
  background-repeat: space;
  -webkit-mask-image: conic-gradient(
    from calc(var(--gradient-angle) + 45deg),
    black,
    transparent 10% 90%,
    black
  );
    mask-image: conic-gradient(
    from calc(var(--gradient-angle) + 45deg),
    black,
    transparent 10% 90%,
    black
  );
  border-radius: inherit;
  opacity: 0.4;
  z-index: -1;
}
.shiny-cta::after {
  --animation: shimmer linear infinite;
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(
    -50deg,
    transparent,
    var(--shiny-cta-highlight),
    transparent
  );
  -webkit-mask-image: radial-gradient(circle at bottom, transparent 40%, black);
          mask-image: radial-gradient(circle at bottom, transparent 40%, black);
  opacity: 0.6;
}
.shiny-cta span {
  z-index: 1;
  &::before {
    --size: calc(100% + 1rem);
    width: var(--size);
    height: var(--size);
    box-shadow: inset 0 -1ex 2rem 4px var(--shiny-cta-highlight);
    opacity: 0;
  }
}
.shiny-cta {
  --transition: 800ms cubic-bezier(0.25, 1, 0.5, 1);
  transition: var(--transition);
  transition-property: --gradient-angle-offset, --gradient-percent,
    --gradient-shine;
  &,
  &::before,
  &::after {
    animation: var(--animation) var(--duration),
      var(--animation) calc(var(--duration) / 0.4) reverse paused;
    animation-composition: add;
  }
  span::before {
    transition: opacity var(--transition);
    -webkit-animation: calc(var(--duration) * 1.5) breathe linear infinite;
            animation: calc(var(--duration) * 1.5) breathe linear infinite;
  }
}
.shiny-cta:is(:hover, :focus-visible) {
  --gradient-percent: 20%;
  --gradient-angle-offset: 95deg;
  --gradient-shine: var(--shiny-cta-highlight-subtle);
  &,
  &::before,
  &::after {
    -webkit-animation-play-state: running;
            animation-play-state: running;
  }
  span::before {
    opacity: 1;
  }
}
@-webkit-keyframes gradient-angle {
  to {
    --gradient-angle: 360deg;
  }
}
@keyframes gradient-angle {
  to {
    --gradient-angle: 360deg;
  }
}
@-webkit-keyframes shimmer {
  to {
    rotate: 360deg;
  }
}
@keyframes shimmer {
  to {
    rotate: 360deg;
  }
}
@-webkit-keyframes breathe {
  from,
  to {
    scale: 1;
  }
  50% {
    scale: 1.2;
  }
}
@keyframes breathe {
  from,
  to {
    scale: 1;
  }
  50% {
    scale: 1.2;
  }
}
}
#questions-list {
  text-align: center;
  list-style-type: decimal;
  padding: 0;
  margin: 0 auto;
  width: 90%;
  max-width: 600px;
}
#questions-list li {
  font-family: Georgia, Bangla;
  text-align: center;
  width: 300px;
  font-size: 3vw;
  font-weight: normal;
  color: #00ffe7;
  margin: 8px 0;
  line-height: 1.6;
}
/* Responsive adjustment for small screens */
@media (max-width: 600px) {
  #questions-list li {
    font-size: 4.5vw;
  }
}