/* GQLite.com Logo Blue and White Porcelain Style */

/* Blue and White Porcelain style for GQLite.com - creating a traditional Chinese porcelain appearance */
.gqlite-logo-blue-and-white {
  font-family: 'Fredoka One', 'Bebas Neue', 'Poppins', cursive, sans-serif;
  position: relative;
  letter-spacing: -1px;
}

.gqlite-logo-blue-and-white span {
  display: inline-block;
  color: #1A5276;
  text-shadow: 
    1px 1px 0px rgba(255, 255, 255, 0.8),
    -1px -1px 0px rgba(255, 255, 255, 0.8),
    2px 2px 0px rgba(26, 82, 118, 0.5);
  position: relative;
  transition: all 0.3s ease;
  animation: porcelain-float 5s ease-in-out infinite;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 2px 4px;
  border-radius: 2px;
  border: 1px solid rgba(26, 82, 118, 0.3);
}

/* Porcelain texture background */
.gqlite-logo-blue-and-white {
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 50%);
  padding: 5px 10px;
  border-radius: 4px;
  border: 2px solid rgba(26, 82, 118, 0.5);
}

/* Porcelain pattern effect for each character */
.gqlite-logo-blue-and-white span::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(45deg, #D6EAF8, #1A5276, #D6EAF8);
  z-index: -2;
  opacity: 0.1;
  filter: blur(1px);
}

/* Crackle glaze effect for porcelain */
.gqlite-logo-blue-and-white::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%231a5276' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

/* Hover effect for Blue and White Porcelain logo */
.gqlite-logo-blue-and-white:hover span {
  color: #2980B9;
  transform: scale(1.05) rotate(var(--rotate, 0deg));
  animation: porcelain-shimmer 2s ease-in-out infinite;
  text-shadow: 
    1px 1px 0px rgba(255, 255, 255, 0.9),
    -1px -1px 0px rgba(255, 255, 255, 0.9),
    2px 2px 0px rgba(26, 82, 118, 0.6),
    0 0 5px rgba(214, 234, 248, 0.7);
}

.gqlite-logo-blue-and-white:hover span:nth-child(1) { --rotate: -1deg; }
.gqlite-logo-blue-and-white:hover span:nth-child(2) { --rotate: 1deg; }
.gqlite-logo-blue-and-white:hover span:nth-child(3) { --rotate: -0.5deg; }
.gqlite-logo-blue-and-white:hover span:nth-child(4) { --rotate: 0.5deg; }
.gqlite-logo-blue-and-white:hover span:nth-child(5) { --rotate: -1deg; }
.gqlite-logo-blue-and-white:hover span:nth-child(6) { --rotate: 1deg; }
.gqlite-logo-blue-and-white:hover span:nth-child(7) { --rotate: -0.5deg; }
.gqlite-logo-blue-and-white:hover span:nth-child(8) { --rotate: 0.5deg; }
.gqlite-logo-blue-and-white:hover span:nth-child(9) { --rotate: -1deg; }
.gqlite-logo-blue-and-white:hover span:nth-child(10) { --rotate: 1deg; }

/* Animation keyframes for Blue and White Porcelain effects */
@keyframes porcelain-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes porcelain-shimmer {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.9; text-shadow: 
    1px 1px 0px rgba(255, 255, 255, 0.9),
    -1px -1px 0px rgba(255, 255, 255, 0.9),
    2px 2px 0px rgba(26, 82, 118, 0.6),
    0 0 8px rgba(214, 234, 248, 0.9);
  }
}

/* Responsive adjustments for Blue and White Porcelain style */
@media (max-width: 1024px) {
  .gqlite-logo-blue-and-white span {
    padding: 1px 3px;
  }
  
  .gqlite-logo-blue-and-white {
    padding: 4px 8px;
  }
}

@media (max-width: 768px) {
  .gqlite-logo-blue-and-white {
    letter-spacing: -2px;
    padding: 3px 6px;
  }
  
  .gqlite-logo-blue-and-white span {
    padding: 1px 2px;
    border-width: 1px;
  }
  
  .gqlite-logo-blue-and-white span::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .gqlite-logo-blue-and-white::after {
    display: none;
  }
}