@font-face {
  font-family: "FGKlara";
  src: url("FGKlara.ttf") format("truetype");
}

:root {
  --color-primary: #ff9900;
  --color-white: #ffffff;
  --color-white-dark: #e9e9e9;
  --color-accent: #e23e5d;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "FGKlara", sans-serif;
}

/* Hero Section Styles */
header {
  position: fixed;
  z-index: 1000;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px 0px;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 10px 0;
}

.full-header {
  transform: translateY(0);
  transition: all 0.3s ease;
}

header.scrolled .full-header {
  box-shadow: 0 4px 16px rgba(100, 196, 171, 0.3);
  background-color: #000000;
}

.full-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
  color: var(--color-white);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  width: max-content;
}

.full-header .logo-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding-right: 30px;
}

.full-header .logo-container h2 {
  margin-top: 10px;
}

.full-header .logo-container img {
  max-width: 50px;
  border-radius: 50%;
}

.links-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.links-container a {
  color: var(--color-white-dark);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 4px 8px;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5%;
  background: url("/src/wp.png");
  background-size: cover;
}

.hero-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 140px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-left {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-ca-container {
  flex: 0 0 480px; /* Fixed width for the CA container */
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  padding: 30px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  border: 1px solid rgba(100, 196, 171, 0.2);
}

.ca-input-wrapper {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
}

.ca-input {
  width: 100%;
  padding: 12px 20px;
  border: 2px solid var(--color-primary);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-size: 1rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.ca-input.disabled {
  border-color: rgba(100, 196, 171, 0.3);
  color: rgba(255, 255, 255, 0.6);
  cursor: not-allowed;
}

.copy-button,
.dex-button {
  padding: 12px 24px;
  border: none;
  border-radius: 25px;
  background: var(--color-primary);
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.copy-button:disabled,
.dex-button.disabled {
  background: rgba(100, 196, 171, 0.3);
  cursor: not-allowed;
}

.tooltip {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.9rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tooltip::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid rgba(0, 0, 0, 0.8);
}

.copy-button:disabled:hover .tooltip,
.dex-button.disabled:hover .tooltip {
  opacity: 1;
  visibility: visible;
  top: -45px;
}

.dex-button {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  gap: 8px;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--color-white);
}

.cta-button {
  padding: 1rem 2rem;
  font-size: 1.2rem;
  background-color: var(--color-white);
  color: gray;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  transform: scale(1.05);
}

.hero-bg-container {
  bottom: -230px;
  flex: none;
  left: -215px;
  overflow: hidden;
  position: absolute;
  right: -215px;
  z-index: 1;
}

.hero-bg-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.3) sepia(0.3) saturate(1.5) hue-rotate(120deg);
}

.hero-bg {
  width: 100%;
  height: 100%;
  animation: moveBackAndForth 20s ease-in-out infinite;
}

.image-with-text-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 800px;
  height: 800px;
  margin: 0 auto;
}

.ye-img {
  position: absolute;
  max-width: 400px;
  z-index: 2;
}

.circular-text {
  position: absolute;
  width: 600px;
  height: 600px;
  animation: rotate 20s linear infinite;
}

.circular-text span {
  position: absolute;
  left: 50%;
  font-size: 2em;
  color: var(--color-white);
  transform-origin: 0 300px;
  transform: rotate(calc(30deg * var(--i)));
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes moveBackAndForth {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-7%);
  }
  100% {
    transform: translateX(0);
  }
}

.intro-section {
  background: #c0c0c0;
  padding: 60px 20px;
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.intro-card {
  max-width: 800px;
  margin: 0 auto;
  background: #3c4b4766;
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(100, 196, 171, 0.2);
  transform: translateY(50px);
  opacity: 0;
  animation: slideUp 0.8s ease forwards;
}

.intro-text h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
  color: #fff;
}

.reveal-text {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: revealText 0.5s ease forwards;
  animation-delay: 0.5s;
  color: #d6d6d6;
}

.stats-container {
  margin-top: 40px;
}

.stat {
  margin-bottom: 20px;
}

.stat-title {
  display: block;
  margin-bottom: 10px;
  font-size: 1.1em;
  color: var(--color-primary);
}

.progress-bar {
  width: 100%;
  height: 30px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  overflow: hidden;
}

.progress {
  width: 0;
  height: 100%;
  background: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  animation: fillProgress 1.5s ease forwards;
  animation-delay: 1s;
}

.launch-info {
  text-align: center;
  margin-top: 40px;
}

.coming-soon {
  font-size: 1.5em;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.blink {
  animation: blink 1.5s infinite;
}

.pump-fun-logo {
  height: 40px;
  filter: brightness(0) invert(1);
}

.chain-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 1.2em;
}

.sol-logo {
  height: 30px;
}

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

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

@keyframes fillProgress {
  to {
    width: 100%;
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Tokenomics Section */
.tokenomics-section {
  padding: 80px 20px 140px;
  background: #c0c0c0;
  color: var(--color-white);
}

.section-title {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 40px;
  color: var(--color-primary);
}

.tokenomics-container {
  max-width: 800px;
  margin: 0 auto;
}

.tokenomics-card {
  background: #3c4b4766;
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(100, 196, 171, 0.2);
}

.token-details {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 40px;
}

.token-detail-item {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.token-detail-item h3 {
  color: var(--color-primary);
  margin-bottom: 15px;
  font-size: 1.5em;
}

.token-value {
  font-size: 2em;
  color: var(--color-white);
  font-weight: bold;
}

/* How To Buy Section */
.how-to-buy-section {
  padding: 80px 20px 140px 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("/src/back.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--color-white);
  position: relative;
}

.gallery {
  display: grid; /* Using Grid for layout */
  grid-template-columns: repeat(4, 1fr); /* Default: 4 columns per row */
  gap: 16px; /* Space between images */
  padding: 16px; /* Padding around the gallery */
}

.how-to-buy-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 1;
}

/* Update these selectors to appear above the blur */
.how-to-buy-section .section-title,
.how-to-buy-section .steps-container {
  position: relative;
  z-index: 2;
}

.steps-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.step-card {
  background: rgba(100, 196, 171, 0.1);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
  box-shadow: 0 8px 32px 0 rgba(31, 135, 118, 0.37);
}

.step-card:hover {
  transform: translateY(-10px);
}

.steps-container-movie {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  padding-bottom: 30px;
  background-color: #c0c0c0;
}

.step-card-movie {
  background: rgba(100, 196, 171, 0.1);
  border-radius: 10px;
  padding: 10px;
  width: 300px;
  text-align: center;
  position: relative;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease;
  box-shadow: 0 8px 32px 0 rgba(229, 255, 0, 0.37);
}

.step-card-movie:hover {
  transform: translateY(-10px);
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin: 0 auto 20px;
}

/* Footer */
.footer {
  background: rgba(0, 0, 0, 0.9);
  padding: 40px 20px;
  color: var(--color-white);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--color-white);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(100, 196, 171, 0.1);
  transition: all 0.3s ease;
}

.social-link i {
  font-size: 1.2rem;
}

.social-link:hover {
  background: var(--color-primary);
}

.footer-disclaimer {
  text-align: center;
  color: var(--color-white-dark);
  font-size: 0.9em;
  max-width: 600px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-container {
    flex-direction: column;
    padding: 120px 20px 40px;
    gap: 60px;
  }

  .hero-ca-container {
    flex: 0 0 auto;
    width: 100%;
    max-width: 500px;
  }

  .image-with-text-container {
    width: 100%;
    max-width: 600px;
    height: 600px;
  }

  .ye-img {
    max-width: 300px;
  }

  .circular-text {
    width: 500px;
    height: 500px;
  }

  .circular-text span {
    transform-origin: 0 250px;
    font-size: 1.5em;
  }
}

@media (max-width: 768px) {
  .full-header {
    flex-direction: column;
  }

  .hero {
    height: 110vh;
  }

  .hero-container {
    padding: 100px 15px 30px;
    gap: 40px;
    height: 100vh;
  }

  .image-with-text-container {
    height: 400px;
  }

  .ye-img {
    max-width: 200px;
  }

  .circular-text {
    width: 350px;
    height: 350px;
  }

  .circular-text span {
    transform-origin: 0 175px;
    font-size: 1.2em;
  }

  .float-item {
    --size: calc(var(--size) * 0.8) !important;
  }

  .ca-input-wrapper {
    flex-direction: column;
  }

  .copy-button,
  .dex-button {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .intro-card {
    padding: 25px;
  }

  .intro-text h2 {
    font-size: 2em;
  }

  .reveal-text {
    font-size: 1.1em;
  }

  .tokenomics-section {
    padding: 60px 15px 100px;
  }

  .tokenomics-card {
    padding: 25px;
  }

  .token-details {
    gap: 25px;
  }

  .token-detail-item {
    min-width: 100%;
  }

  .token-detail-item h3 {
    font-size: 1.3em;
  }

  .token-value {
    font-size: 1.6em;
  }

  .how-to-buy-section {
    padding: 60px 15px;
  }

  .steps-container {
    gap: 20px;
  }

  .step-card {
    padding: 20px;
  }

  .section-title {
    font-size: 2em;
    margin-bottom: 30px;
  }

  .footer {
    padding: 30px 15px;
  }

  .social-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-height: 680px) {
  .hero {
    height: 150vh;
  }
}

.highlight {
  color: var(--color-primary);
}

.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.float-item {
  position: absolute;
  font-size: var(--size);
  color: var(--color-primary);
  opacity: 0.6;
  animation: float 15s linear infinite;
  animation-delay: var(--delay);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  font-weight: bold;
  letter-spacing: 1px;
}

.float-item.special {
  font-size: calc(var(--size) * 1.5);
  opacity: 0.3;
  color: var(--color-white);
  transform-origin: center;
  animation: floatSpecial 15s linear infinite;
  animation-delay: var(--delay);
}

.float-item:nth-child(odd) {
  animation-direction: reverse;
}

.float-item:nth-child(1) {
  left: 10%;
  top: -100px;
}
.float-item:nth-child(2) {
  left: 30%;
  top: -100px;
}
.float-item:nth-child(3) {
  left: 50%;
  top: -100px;
}
.float-item:nth-child(4) {
  left: 70%;
  top: -100px;
}
.float-item:nth-child(5) {
  left: 90%;
  top: -100px;
}
.float-item:nth-child(6) {
  left: 20%;
  top: -100px;
}
.float-item:nth-child(7) {
  left: 40%;
  top: -100px;
}
.float-item:nth-child(8) {
  left: 60%;
  top: -100px;
}
.float-item:nth-child(9) {
  left: 80%;
  top: -100px;
}

.float-item.symbol {
  font-size: calc(var(--size) * 1.2);
}

@keyframes float {
  0% {
    transform: translateY(-100px) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.6;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(100vh) rotate(360deg);
    opacity: 0;
  }
}

@keyframes floatSpecial {
  0% {
    transform: translateY(-100px) rotate(0deg) scale(1);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  50% {
    transform: translateY(50vh) rotate(180deg) scale(1.5);
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateY(100vh) rotate(360deg) scale(1);
    opacity: 0;
  }
}

/* Add hover effect */
.floating-elements:hover .float-item {
  animation-play-state: paused;
}

/* Cursor effects */
.cursor-effects {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
}

.cursor-particle {
  position: absolute;
  pointer-events: none;
  font-size: 20px;
  color: var(--color-primary);
  animation: particleFade 1s forwards;
  text-shadow: 0 0 10px rgba(100, 196, 171, 0.5);
}

.mouse-trail {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.5;
  animation: trailFade 0.5s linear forwards;
}

@keyframes particleFade {
  0% {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -200%) scale(0) rotate(360deg);
    opacity: 0;
  }
}

@keyframes trailFade {
  0% {
    opacity: 0.5;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}

/* Smooth Scroll */
html {
  scroll-behavior: smooth;
}

body {
  overflow-y: auto;
  scroll-padding-top: 80px; /* Adjust based on your header height */
}

/* Add styles for active navigation link */
.links-container a.active {
  color: var(--color-primary);
  position: relative;
}

.links-container a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-primary);
  animation: linkActivate 0.3s ease forwards;
}

@keyframes linkActivate {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Add hover effects for links */
.links-container a {
  position: relative;
  transition: color 0.3s ease;
}

.links-container a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-primary);
  transition: width 0.3s ease;
}

.links-container a:hover {
  color: var(--color-primary);
}

.links-container a:hover::after {
  width: 100%;
}

/* Add hover effects for social links */
.social-link {
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  transition: left 0.3s ease;
  z-index: -1;
}

.social-link:hover::before {
  left: 0;
}

/* Add responsive font sizes */
@media (max-width: 480px) {
  :root {
    font-size: 14px;
  }

  .full-header .logo-container h2 {
    font-size: 1.5rem;
  }

  .links-container a {
    font-size: 0.8rem;
  }

  .footer-disclaimer {
    font-size: 0.8em;
  }
}

/* Add smooth transitions for all interactive elements */
.copy-button,
.dex-button,
.step-card,
.social-link,
.links-container a,
.float-item {
  will-change: transform;
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Add touch device optimization */
@media (hover: none) {
  .links-container a:hover::after {
    width: 0;
  }

  .step-card:hover {
    transform: none;
  }

  .social-link:hover::before {
    left: -100%;
  }

  /* Use active states instead */
  .links-container a:active {
    color: var(--color-primary);
  }

  .step-card:active {
    transform: translateY(-5px);
  }

  .social-link:active {
    background: var(--color-primary);
  }
}

.hero-social-links {
  display: flex;
  gap: 10px;
  width: 100%;
}

.social-button {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(100, 196, 171, 0.2);
  border-radius: 25px;
  color: var(--color-white);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.social-button i {
  font-size: 1.2rem;
}

.social-button:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(100, 196, 171, 0.3);
}

/* Update responsive styles */
@media (max-width: 768px) {
  .hero-social-links {
    flex-direction: column;
  }

  .social-button {
    width: 100%;
  }
}

/* Update social button hover */
.social-button {
  transform: translateY(0);
  transition: all 0.2s ease-out;
}

.social-button:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(100, 196, 171, 0.3);
}

/* Update button hover effects */
.copy-button:not(:disabled),
.dex-button:not(.disabled) {
  transform: scale(1);
  transition: all 0.2s ease-out;
}

.copy-button:not(:disabled):hover,
.dex-button:not(.disabled):hover {
  transform: scale(1.05);
  background: var(--color-primary);
}

/* Loader Styles */
.loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-in-out;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.loader-circle {
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader-logo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  z-index: 2;
  animation: logoFloat 2s ease-in-out infinite;
}

.loader-orbit {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(100, 196, 171, 0.2);
  border-radius: 50%;
  animation: orbit 2s linear infinite;
}

.orbit-dot {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--color-primary);
}

.loader-text {
  display: flex;
  gap: 8px;
  font-size: 2.5rem;
  font-weight: bold;
  color: var(--color-white);
}

.loader-text span {
  animation: textPop 0.5s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

.loader-text span:nth-child(1) {
  animation-delay: 0.2s;
}
.loader-text span:nth-child(2) {
  animation-delay: 0.3s;
}
.loader-text span:nth-child(3) {
  animation-delay: 0.4s;
}
.loader-text span:nth-child(4) {
  animation-delay: 0.5s;
}
.loader-text span:nth-child(5) {
  animation-delay: 0.6s;
}
.loader-text span:nth-child(6) {
  animation-delay: 0.7s;
}

.loader-subtitle {
  color: var(--color-white-dark);
  font-size: 1rem;
  opacity: 0.7;
  animation: subtitlePulse 2s ease-in-out infinite;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes orbit {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes textPop {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes subtitlePulse {
  0%,
  100% {
    opacity: 0.7;
  }
  50% {
    opacity: 0.4;
  }
}

.loader-wrapper.fade-out {
  opacity: 0;
  pointer-events: none;
}

/* Prevent scroll while loading */
body.loading {
  overflow: hidden;
}

/* Add responsive adjustments */
@media (max-width: 768px) {
  .loader-text {
    font-size: 2rem;
  }

  .loader-circle {
    width: 100px;
    height: 100px;
  }

  .loader-logo {
    width: 60px;
    height: 60px;
  }
}
