/* GQLite.com Logo ACG (Anime, Comics, Games) Style */

/* ACG style for GQLite.com - creating a soft, cute anime/manga appearance */
.gqlite-logo-acg {
  font-family: 'Fredoka One', 'Poppins', 'Bebas Neue', sans-serif;
  position: relative;
  letter-spacing: 2px;
  text-transform: lowercase;
}

.gqlite-logo-acg span {
  display: inline-block;
  position: relative;
  transition: all 0.3s ease;
  animation: acg-wobble 4s ease-in-out infinite;
  color: #FFFFFF;
  text-shadow: 
    2px 2px 0px #FF69B4,
    4px 4px 0px #4169E1,
    0 0 15px rgba(255, 255, 255, 0.8);
}

/* ACG colors for each character - using soft pastel colors */
.gqlite-logo-acg span:nth-child(1) { /* G */
  color: #FFB6C1;
  animation-delay: 0s;
}

.gqlite-logo-acg span:nth-child(2) { /* Q */
  color: #ADD8E6;
  animation-delay: 0.1s;
}

.gqlite-logo-acg span:nth-child(3) { /* L */
  color: #98FB98;
  animation-delay: 0.2s;
}

.gqlite-logo-acg span:nth-child(4) { /* I */
  color: #FFFFE0;
  animation-delay: 0.3s;
}

.gqlite-logo-acg span:nth-child(5) { /* T */
  color: #FFDAB9;
  animation-delay: 0.4s;
}

.gqlite-logo-acg span:nth-child(6) { /* E */
  color: #E6E6FA;
  animation-delay: 0.5s;
}

.gqlite-logo-acg span:nth-child(7) { /* . */
  color: #F0E68C;
  animation-delay: 0.6s;
}

.gqlite-logo-acg span:nth-child(8) { /* C */
  color: #FFCCCB;
  animation-delay: 0.7s;
}

.gqlite-logo-acg span:nth-child(9) { /* O */
  color: #B0E0E6;
  animation-delay: 0.8s;
}

.gqlite-logo-acg span:nth-child(10) { /* M */
  color: #DDA0DD;
  animation-delay: 0.9s;
}

/* Chibi-style circular background for each character */
.gqlite-logo-acg span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120%;
  height: 140%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/* Cat ears for ACG style */
.gqlite-logo-acg::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 20%;
  width: 30px;
  height: 50px;
  background: #FF69B4;
  border-radius: 50% 50% 0 0;
  transform: rotate(-20deg);
  z-index: -2;
}

.gqlite-logo-acg::after {
  content: '';
  position: absolute;
  top: -40px;
  right: 20%;
  width: 30px;
  height: 50px;
  background: #4169E1;
  border-radius: 50% 50% 0 0;
  transform: rotate(20deg);
  z-index: -2;
}

/* Hover effect for ACG logo */
.gqlite-logo-acg:hover span {
  animation: acg-dance 0.5s ease-in-out infinite alternate;
  text-shadow: 
    3px 3px 0px #FF69B4,
    6px 6px 0px #4169E1,
    0 0 25px rgba(255, 255, 255, 0.9);
}

.gqlite-logo-acg:hover span:nth-child(1) { transform: translateY(-12px) rotate(-5deg); }
.gqlite-logo-acg:hover span:nth-child(2) { transform: translateY(-12px) rotate(5deg); }
.gqlite-logo-acg:hover span:nth-child(3) { transform: translateY(-12px) rotate(-4deg); }
.gqlite-logo-acg:hover span:nth-child(4) { transform: translateY(-12px) rotate(4deg); }
.gqlite-logo-acg:hover span:nth-child(5) { transform: translateY(-12px) rotate(-5deg); }
.gqlite-logo-acg:hover span:nth-child(6) { transform: translateY(-12px) rotate(5deg); }
.gqlite-logo-acg:hover span:nth-child(7) { transform: translateY(-12px) rotate(-3deg); }
.gqlite-logo-acg:hover span:nth-child(8) { transform: translateY(-12px) rotate(3deg); }
.gqlite-logo-acg:hover span:nth-child(9) { transform: translateY(-12px) rotate(-5deg); }
.gqlite-logo-acg:hover span:nth-child(10) { transform: translateY(-12px) rotate(5deg); }

.gqlite-logo-acg:hover::before {
  transform: rotate(-10deg) scale(1.1);
  background: #FF85A2;
}

.gqlite-logo-acg:hover::after {
  transform: rotate(10deg) scale(1.1);
  background: #5D8AE7;
}

/* Animation keyframes for ACG effects */
@keyframes acg-wobble {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-3px) rotate(-1deg); }
  75% { transform: translateY(3px) rotate(1deg); }
}

@keyframes acg-dance {
  0% { transform: translateY(-12px) rotate(var(--rotate, 0deg)); }
  100% { transform: translateY(-18px) rotate(var(--rotate, 0deg)); }
}

/* Responsive adjustments for ACG style */
@media (max-width: 1024px) {
  .gqlite-logo-acg span {
    text-shadow: 
      1.5px 1.5px 0px #FF69B4,
      3px 3px 0px #4169E1,
      0 0 12px rgba(255, 255, 255, 0.8);
  }
  
  .gqlite-logo-acg::before,
  .gqlite-logo-acg::after {
    width: 25px;
    height: 40px;
    top: -35px;
  }
}

@media (max-width: 768px) {
  .gqlite-logo-acg {
    letter-spacing: 1px;
  }
  
  .gqlite-logo-acg span {
    text-shadow: 
      1px 1px 0px #FF69B4,
      2px 2px 0px #4169E1,
      0 0 10px rgba(255, 255, 255, 0.8);
  }
  
  .gqlite-logo-acg::before,
  .gqlite-logo-acg::after {
    width: 20px;
    height: 35px;
    top: -30px;
  }
}

@media (max-width: 480px) {
  .gqlite-logo-acg span {
    text-shadow: 
      1px 1px 0px #FF69B4,
      1.5px 1.5px 0px #4169E1,
      0 0 8px rgba(255, 255, 255, 0.8);
  }
  
  .gqlite-logo-acg::before,
  .gqlite-logo-acg::after {
    display: none;
  }
}