/* assets/css/floating-logos.css
   Keep this file in: wp-content/plugins/floating-logos/assets/css/floating-logos.css
   (existing styles: identical to the refactor previously provided)
*/

.fl-floating-logos {
  text-align: center;
  margin: 40px 0;
  position: relative;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.fl-frame {
  width: 100%;
  height: 0;
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,.45), inset 0 0 0 1px rgba(255,255,255,.06);
  background: radial-gradient(120% 90% at 10% 10%, #1c2a4a 0%, #0f1a33 55%, #0a1428 100%);
  isolation: isolate;
}

.fl-frame canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.fl-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .35;
  z-index: 1;
}

.fl-stars i {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #e6eefc;
  border-radius: 50%;
  filter: drop-shadow(0 0 6px rgba(255,255,255,.35));
}

.fl-logo {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  box-shadow: 0 10px 18px rgba(0,0,0,.35), inset 0 -2px 6px rgba(0,0,0,.25), inset 0 2px 8px rgba(255,255,255,.15);
  user-select: none;
  -webkit-user-drag: none;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  cursor: pointer;
  z-index: 3;
}

.fl-logo img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  display: block;
  filter: invert(1);
}

.fl-logo:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 24px rgba(0,0,0,.5), inset 0 -2px 6px rgba(0,0,0,.3), inset 0 2px 10px rgba(255,255,255,.2);
}

.fl-logo-label {
  position: absolute;
  bottom: -20px;
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: #e6eefc;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
  z-index: 4;
}

.fl-logo.show-label .fl-logo-label {
  opacity: 1;
}

@media (max-width: 768px) {
  .fl-logo img { width: 65%; height: 65%; }
  .fl-logo-label { font-size: 10px; bottom: -18px; }
}

@media (max-width: 480px) {
  .fl-logo img { width: 60%; height: 60%; }
  .fl-logo-label { font-size: 9px; bottom: -16px; }
}