/* =========================================================
   lessons.css — Course detail page styles
   Migrated from lessons.php inline <style> and enhanced
   to match CyberAI's cyan/orange/dark-glass brand language.
   ========================================================= */

/* ── Layout ──────────────────────────────────────────────── */

.course-hero {
  max-width: 1000px;
  margin: var(--space-6) auto;
  padding: var(--space-6);
  background:
    linear-gradient(145deg, rgba(12, 46, 68, 0.92) 0%, rgba(6, 28, 45, 0.96) 100%),
    radial-gradient(circle at 14% 16%, rgba(55, 192, 255, 0.14) 0%, transparent 48%),
    radial-gradient(circle at 86% 84%, rgba(255, 138, 0, 0.10) 0%, transparent 44%);
  border: 1.5px solid rgba(55, 192, 255, 0.22);
  border-radius: var(--radius);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.55),
    0 0 60px rgba(55, 192, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px) saturate(140%);
  position: relative;
  overflow: hidden;
}

/* Subtle iridescent top-edge accent on the hero */
.course-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(55, 192, 255, 0.60),
    rgba(255, 138, 0, 0.50),
    rgba(168, 85, 247, 0.40),
    transparent
  );
  pointer-events: none;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: start;
}

/* ── Course title ─────────────────────────────────────────── */

.course-hero h1 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  text-shadow: 0 0 28px rgba(55, 192, 255, 0.35);
  margin-bottom: 0.5rem;
}

/* ── Meta badges ─────────────────────────────────────────── */

.meta-line {
  color: var(--muted);
  margin: 0.4rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.22rem 0.65rem;
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid;
  white-space: nowrap;
}

/* Default badge (modules count / generic) */
.badge {
  background: rgba(55, 192, 255, 0.10);
  border-color: rgba(55, 192, 255, 0.25);
  color: rgba(55, 192, 255, 0.90);
}

/* Level / difficulty badge */
.badge:nth-child(1) {
  background: rgba(55, 192, 255, 0.12);
  border-color: rgba(55, 192, 255, 0.30);
  color: #37c0ff;
}

/* Duration badge */
.badge:nth-child(2) {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.30);
  color: #a855f7;
}

/* Price badge */
.badge:nth-child(3) {
  background: rgba(255, 138, 0, 0.12);
  border-color: rgba(255, 138, 0, 0.30);
  color: #ff8a00;
}

/* Modules badge */
.badge:nth-child(4) {
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.28);
  color: #10b981;
}

/* ── Hero CTAs ───────────────────────────────────────────── */

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.25rem;
  align-items: center;
}

/* ── Sidebar cards ─────────────────────────────────────────
   Override global .boxed for lesssons page with glassmorphism */

.course-hero .boxed,
.grid-2 aside .boxed {
  background:
    linear-gradient(145deg, rgba(10, 40, 60, 0.90) 0%, rgba(6, 24, 40, 0.94) 100%);
  border: 1px solid rgba(55, 192, 255, 0.18);
  border-radius: var(--radius);
  padding: 0.85rem;
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.40),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  margin-top: 0;
}

.grid-2 aside .boxed + .boxed {
  margin-top: 10px;
}

/* ── Progress bar ────────────────────────────────────────── */

.progress {
  height: 12px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 0.5rem;
  border: 1px solid rgba(55, 192, 255, 0.12);
}

.progress > span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #37c0ff 0%, #ff8a00 100%);
  border-radius: 999px;
  box-shadow: 0 0 8px rgba(55, 192, 255, 0.50);
  transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.mini-muted {
  color: var(--muted);
  font-size: 0.9rem;
}

/* ── You'll need (checklist in sidebar) ──────────────────── */

.list-check {
  list-style: none;
  padding-left: 0;
  margin-top: 0.5rem;
}

.list-check li {
  padding-left: 1.5rem;
  position: relative;
  margin: 0.45rem 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

.list-check li::before {
  content: '✓';
  position: absolute;
  left: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #37c0ff 0%, #0ea5e9 100%);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  top: 0.12rem;
  flex-shrink: 0;
}

/* ── Lesson TOC links ────────────────────────────────────── */

.toc-box {
  margin-top: 10px;
}

.toc-box strong {
  display: block;
  margin-bottom: 0.4rem;
}

.toc-box a {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.28rem 0.4rem;
  border-radius: 0.4rem;
  color: var(--accent);
  text-decoration: none;
  font-size: 0.88rem;
  transition: background 0.15s, color 0.15s, transform 0.15s;
}

.toc-box a:hover {
  background: rgba(55, 192, 255, 0.10);
  color: #37c0ff;
  transform: translateX(2px);
}

/* ── Update progress inline form ─────────────────────────── */

.inline-form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.6rem;
}

.inline-form label {
  color: var(--muted);
  font-size: 0.85rem;
}

.inline-form input[type="number"] {
  width: 72px;
  padding: 0.3rem 0.5rem;
  border-radius: 6px;
  border: 1px solid rgba(55, 192, 255, 0.25);
  background: rgba(6, 28, 45, 0.80);
  color: var(--text);
  font-size: 0.9rem;
}

.inline-form input[type="number"]:focus {
  outline: 2px solid rgba(55, 192, 255, 0.50);
  outline-offset: 1px;
  border-color: rgba(55, 192, 255, 0.50);
}

/* ── Content sections ────────────────────────────────────── */

.section {
  max-width: 1000px;
  margin: var(--space-4) auto;
  padding: var(--space-5);
  background: var(--surface);
  border: 1px solid rgba(55, 192, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.section h2 {
  border-left: 3px solid rgba(55, 192, 255, 0.70);
  padding-left: 0.65rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

/* Restore generic .boxed (non-sidebar use outside hero/grid context) */
.boxed {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.7rem;
}

/* ── Curriculum: module blocks ──────────────────────────── */

.module-block {
  margin: 14px 0 20px;
}

.module-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 14px 0 6px;
  font-weight: 700;
  padding-left: 0.1rem;
}

.module-header::before {
  content: attr(data-module, '');
}

/* Module number chip */
.module-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(55, 192, 255, 0.15);
  border: 1px solid rgba(55, 192, 255, 0.30);
  border-radius: 4px;
  padding: 0.1rem 0.45rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: #37c0ff;
  letter-spacing: 0.03em;
}

.module-sub {
  color: var(--muted);
  font-weight: 500;
  margin-left: 0.1rem;
}

/* Collapsible details/summary */
details {
  border-radius: 0.5rem;
}

details > summary {
  cursor: pointer;
  padding: 0.4rem 0.25rem;
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  user-select: none;
  transition: color 0.15s;
}

details > summary::-webkit-details-marker { display: none; }
details > summary::marker { display: none; }

details > summary::before {
  content: '▶';
  font-size: 0.65rem;
  display: inline-block;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  color: rgba(55, 192, 255, 0.70);
}

details[open] > summary::before {
  transform: rotate(90deg);
}

details > summary:hover {
  color: #37c0ff;
}

/* ── Lesson list ─────────────────────────────────────────── */

.lesson-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lesson-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem;
  align-items: flex-start;
  padding: 0.65rem 0.8rem;
  border: 1px solid var(--border);
  border-left: 3px solid transparent;
  border-radius: 0.6rem;
  background: var(--surface);
  margin: 0.45rem 0;
  transition: background 0.18s, border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}

.lesson-item:hover {
  background: rgba(55, 192, 255, 0.05);
  border-color: rgba(55, 192, 255, 0.28);
  border-left-color: rgba(55, 192, 255, 0.60);
  transform: translateX(2px);
  box-shadow: 0 2px 12px rgba(55, 192, 255, 0.08);
}

.lesson-item:has(.paywall-overlay) {
  grid-template-columns: minmax(0, 1fr) auto;
}

.lesson-main {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.lesson-title {
  font-weight: 500;
  line-height: 1.35;
}

/* Duration badge — now a proper pill */
.duration-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(168, 85, 247, 0.10);
  border: 1px solid rgba(168, 85, 247, 0.22);
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
  font-size: 0.80rem;
  color: #a855f7;
  white-space: nowrap;
  align-self: flex-start;
  margin-top: 0.15rem;
}

/* ── Lesson preview button ───────────────────────────────── */

.lesson-preview-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.28rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(55, 192, 255, 0.28);
  background: rgba(55, 192, 255, 0.07);
  color: rgba(55, 192, 255, 0.85);
  font-size: 0.80rem;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
  align-self: flex-start;
}

.lesson-preview-btn:hover {
  background: rgba(55, 192, 255, 0.14);
  border-color: rgba(55, 192, 255, 0.50);
  color: #37c0ff;
  box-shadow: 0 0 10px rgba(55, 192, 255, 0.18);
}

.lesson-preview-btn:focus-visible {
  outline: 2px solid rgba(55, 192, 255, 0.60);
  outline-offset: 2px;
}

/* ── Lesson preview iframe shell ─────────────────────────── */

.lesson-preview-shell {
  margin-top: 0.5rem;
  display: none;
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(55, 192, 255, 0.18);
  background: #000;
}

.lesson-preview-shell iframe {
  display: block;
  width: 100%;
  height: 260px;
  border: 0;
}

/* ── Focus-visible: global interactive elements ──────────── */

.lesson-item:focus-visible,
.toc-box a:focus-visible,
details > summary:focus-visible,
.inline-form input[type="number"]:focus-visible {
  outline: 2px solid rgba(55, 192, 255, 0.60);
  outline-offset: 2px;
}

/* ── Paywall overlay ─────────────────────────────────────── */

.paywall-overlay {
  position: relative;
  margin-top: 1rem;
  padding: 1.5rem 1.8rem;
  background: linear-gradient(135deg, rgba(20, 25, 35, 1), rgba(15, 20, 30, 1));
  border: 1px solid rgba(255, 138, 0, 0.5);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 0 60px rgba(255, 138, 0, 0.1);
  width: 100%;
  grid-column: 1 / -1;
  z-index: 10;
  color: var(--text);
}

.paywall-overlay::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, #ff8a00, #ff6b00);
  border-radius: 0 12px 12px 0;
}

.paywall-badges {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.paywall-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid;
}

.paywall-badge.locked {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.4);
  color: #ef4444;
}

.paywall-badge.level {
  background: rgba(55, 192, 255, 0.12);
  border-color: rgba(55, 192, 255, 0.3);
  color: #37c0ff;
}

.paywall-badge.duration {
  background: rgba(168, 85, 247, 0.12);
  border-color: rgba(168, 85, 247, 0.3);
  color: #a855f7;
}

.paywall-course-ref {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}

.paywall-course-ref::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #10b981;
  margin-top: 0.35rem;
  flex-shrink: 0;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.6);
}

.paywall-course-ref span {
  font-size: 0.9rem;
  color: var(--muted);
}

.paywall-heading {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text);
  line-height: 1.4;
}

.paywall-benefits {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem;
}

.paywall-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.45rem 0;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
}

.paywall-benefits li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff8a00, #ff6b00);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.paywall-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff8a00, #ff6b00);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(255, 138, 0, 0.4);
}

.paywall-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 138, 0, 0.5);
}

/* ── Sticky sidebar ──────────────────────────────────────── */

@media (min-width: 900px) {
  .grid-2 > aside {
    position: sticky;
    top: 80px;
    height: fit-content;
  }
}

/* ── Responsive: mobile ──────────────────────────────────── */

@media (max-width: 899px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ── Profile icon animation styles ──────────────────────── */

.profile-icon-container {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 50% !important;
  overflow: visible !important;
  background: transparent !important;
}

.profile-icon-neon {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  border-radius: 50% !important;
  mix-blend-mode: normal !important;
  filter:
    drop-shadow(0 0 12px rgba(55, 192, 255, 0.9))
    drop-shadow(0 0 24px rgba(55, 192, 255, 0.7))
    drop-shadow(0 0 16px rgba(255, 138, 0, 0.8))
    drop-shadow(0 0 32px rgba(255, 138, 0, 0.6))
    drop-shadow(0 0 12px rgba(168, 85, 247, 0.7))
    brightness(1.15) contrast(1.2) saturate(1.3) !important;
  animation:
    adminLogoPulsate 2.5s ease-in-out infinite,
    adminLogoEnergyAccumulate 4s ease-in-out infinite,
    adminLogoGlow 3s ease-in-out infinite !important;
  position: relative !important;
  z-index: 1 !important;
  opacity: 1 !important;
  background: transparent !important;
}

.profile-icon-ring-layer {
  position: absolute !important;
  border-radius: 50% !important;
  pointer-events: none !important;
  z-index: -3 !important;
  display: block !important;
}

.profile-icon-ring-1 {
  inset: -20px !important;
  border: 2px solid transparent !important;
  background:
    radial-gradient(circle at 50% 50%,
      transparent 40%,
      rgba(55, 192, 255, 0.5) 45%,
      rgba(255, 138, 0, 0.4) 50%,
      rgba(168, 85, 247, 0.4) 55%,
      transparent 60%) !important;
  animation: adminLogoRing1Pulse 2s ease-in-out infinite, adminLogoRing1Ripple 2.5s ease-out infinite !important;
  filter: blur(8px) !important;
  mix-blend-mode: screen !important;
  opacity: 0.9 !important;
}

.profile-icon-ring-2 {
  inset: -28px !important;
  border: 2px solid transparent !important;
  background:
    conic-gradient(from 45deg at 50% 50%,
      rgba(236, 72, 153, 0.5) 0deg,
      rgba(59, 130, 246, 0.4) 90deg,
      rgba(55, 192, 255, 0.5) 180deg,
      rgba(255, 138, 0, 0.4) 270deg,
      rgba(236, 72, 153, 0.5) 360deg) !important;
  animation: adminLogoRing2Pulse 3s ease-in-out infinite, adminLogoRing2Rotate 10s linear infinite, adminLogoRing2Ripple 3s ease-out infinite !important;
  filter: blur(12px) !important;
  mix-blend-mode: screen !important;
  opacity: 0.8 !important;
}

.profile-icon-ring-3 {
  inset: -36px !important;
  border: 2px solid transparent !important;
  background:
    radial-gradient(circle at 50% 50%,
      transparent 50%,
      rgba(168, 85, 247, 0.3) 52%,
      rgba(55, 192, 255, 0.3) 54%,
      rgba(255, 138, 0, 0.25) 56%,
      rgba(236, 72, 153, 0.2) 58%,
      transparent 62%) !important;
  animation: adminLogoRing3Pulse 3.5s ease-in-out infinite, adminLogoRing3Expand 5s ease-in-out infinite, adminLogoRing3Ripple 3.5s ease-out infinite !important;
  filter: blur(14px) !important;
  mix-blend-mode: screen !important;
  opacity: 0.75 !important;
}

.profile-icon-ripple-1,
.profile-icon-ripple-2,
.profile-icon-ripple-3,
.profile-icon-ripple-4 {
  position: absolute !important;
  border-radius: 50% !important;
  pointer-events: none !important;
  z-index: -4 !important;
  display: block !important;
  inset: 0 !important;
  border: 2px solid transparent !important;
  background:
    radial-gradient(circle at 50% 50%,
      rgba(55, 192, 255, 0.8) 0%,
      rgba(55, 192, 255, 0.6) 15%,
      rgba(255, 138, 0, 0.5) 30%,
      rgba(168, 85, 247, 0.4) 45%,
      rgba(236, 72, 153, 0.3) 60%,
      transparent 75%) !important;
  mix-blend-mode: screen !important;
  opacity: 0 !important;
}

.profile-icon-ripple-1 { animation: adminLogoRippleWave 3s ease-out infinite !important; animation-delay: 0s !important; }
.profile-icon-ripple-2 { animation: adminLogoRippleWave 3s ease-out infinite !important; animation-delay: 0.75s !important; }
.profile-icon-ripple-3 { animation: adminLogoRippleWave 3s ease-out infinite !important; animation-delay: 1.5s !important; }
.profile-icon-ripple-4 { animation: adminLogoRippleWave 3s ease-out infinite !important; animation-delay: 2.25s !important; }

.profile-icon-container::before {
  content: '' !important;
  position: absolute !important;
  inset: -16px !important;
  border-radius: 50% !important;
  background:
    radial-gradient(circle at 50% 50%,
      rgba(55, 192, 255, 0.9) 0%,
      rgba(55, 192, 255, 0.8) 10%,
      rgba(255, 138, 0, 0.7) 20%,
      rgba(168, 85, 247, 0.6) 30%,
      rgba(236, 72, 153, 0.5) 40%,
      rgba(59, 130, 246, 0.4) 50%,
      transparent 65%) !important;
  animation: adminLogoEnergyWave 3s ease-in-out infinite, adminLogoRingPulse 2.5s ease-in-out infinite, adminLogoEnergyAccumulateRipple 4s ease-in-out infinite !important;
  z-index: -1 !important;
  filter: blur(20px) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.profile-icon-container::after {
  content: '' !important;
  position: absolute !important;
  inset: -8px !important;
  border-radius: 50% !important;
  background:
    conic-gradient(from 0deg at 50% 50%,
      rgba(55, 192, 255, 0.6) 0deg,
      rgba(255, 138, 0, 0.5) 120deg,
      rgba(168, 85, 247, 0.5) 240deg,
      rgba(55, 192, 255, 0.6) 360deg) !important;
  animation: adminLogoConicRotate 8s linear infinite, adminLogoRingPulse2 2s ease-in-out infinite !important;
  z-index: -2 !important;
  filter: blur(6px) !important;
  opacity: 0.4 !important;
  pointer-events: none !important;
}

/* ── Profile icon keyframes ──────────────────────────────── */

@keyframes adminLogoPulsate {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

@keyframes adminLogoEnergyAccumulate {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(55,192,255,0.9)) drop-shadow(0 0 24px rgba(55,192,255,0.7)) drop-shadow(0 0 16px rgba(255,138,0,0.8)) drop-shadow(0 0 32px rgba(255,138,0,0.6)) drop-shadow(0 0 12px rgba(168,85,247,0.7)) brightness(1.15) contrast(1.2) saturate(1.3); }
  50% { filter: drop-shadow(0 0 20px rgba(55,192,255,1)) drop-shadow(0 0 40px rgba(55,192,255,0.9)) drop-shadow(0 0 28px rgba(255,138,0,1)) drop-shadow(0 0 56px rgba(255,138,0,0.8)) drop-shadow(0 0 20px rgba(168,85,247,1)) brightness(1.3) contrast(1.35) saturate(1.5); }
}

@keyframes adminLogoGlow {
  0%, 100% { opacity: 0.95; }
  50% { opacity: 1; }
}

@keyframes adminLogoRing1Pulse {
  0%, 100% { opacity: 0.9; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes adminLogoRing2Pulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@keyframes adminLogoRing3Pulse {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 0.95; transform: scale(1.06); }
}

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

@keyframes adminLogoRing3Expand {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

@keyframes adminLogoEnergyWave {
  0%, 100% { opacity: 0; transform: scale(0.8); }
  30% { opacity: 0.6; }
  60% { opacity: 0.3; transform: scale(1.2); }
}

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

@keyframes adminLogoRingPulse2 {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.5; }
}

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

@keyframes adminLogoEnergyAccumulateRipple {
  0%, 100% { opacity: 0; transform: scale(0.9); }
  40% { opacity: 0.4; transform: scale(1.1); }
  70% { opacity: 0.2; transform: scale(1.3); }
}

@keyframes adminLogoRing1Ripple {
  0% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.4); opacity: 0.4; }
  100% { transform: scale(1.8); opacity: 0; }
}

@keyframes adminLogoRing2Ripple {
  0% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.5); opacity: 0.35; }
  100% { transform: scale(2); opacity: 0; }
}

@keyframes adminLogoRing3Ripple {
  0% { transform: scale(1); opacity: 0.75; }
  50% { transform: scale(1.5); opacity: 0.3; }
  100% { transform: scale(2); opacity: 0; }
}

@keyframes adminLogoRippleWave {
  0% { transform: scale(1); opacity: 0.9; filter: blur(4px); }
  15% { transform: scale(1.2); opacity: 0.8; filter: blur(6px); }
  30% { transform: scale(1.5); opacity: 0.6; filter: blur(10px); }
  50% { transform: scale(2); opacity: 0.4; filter: blur(14px); }
  70% { transform: scale(2.5); opacity: 0.2; filter: blur(18px); }
  100% { transform: scale(3); opacity: 0; filter: blur(22px); }
}
