/* ============================================================
   AltaySec Phishing Farkındalık Platformu
   components.css — Reusable UI Components
   ============================================================ */

/* ─────────────────────────────────────────
   1. NAVIGATION
───────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--t-base) var(--ease-smooth),
              border-color var(--t-base) var(--ease-smooth);
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
  border-bottom-color: var(--border-default);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  transition: opacity var(--t-fast);
}

.navbar-logo:hover { opacity: 0.8; }

.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--red);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: 0;
  box-shadow: 0 0 16px var(--red-glow);
}

.logo-text span {
  color: var(--red);
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav-link {
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}

.nav-link.active {
  color: var(--red);
}

.navbar-cta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.navbar-back {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  transition: color var(--t-fast), border-color var(--t-fast);
}

.navbar-back:hover {
  color: var(--text-secondary);
  border-color: var(--border-default);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 2px;
  transition: transform var(--t-base), opacity var(--t-fast);
}

.menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .menu-toggle { display: flex; }

  .navbar-nav {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.98);
    border-bottom: 1px solid var(--border-subtle);
    flex-direction: column;
    padding: var(--space-lg);
    gap: var(--space-xs);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--t-slow) var(--ease-smooth), opacity var(--t-base);
    backdrop-filter: blur(20px);
  }

  .navbar-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link { width: 100%; padding: 12px 16px; font-size: 1rem; }
  .navbar-cta { display: none; }
}

/* ─────────────────────────────────────────
   2. BUTTONS
───────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all var(--t-base) var(--ease-smooth);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--t-fast);
}

.btn:hover::before { background: rgba(255,255,255,0.06); }

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 16px var(--red-glow);
}

.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 6px 24px var(--red-glow-lg);
  transform: translateY(-1px);
}

.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-default);
}

.btn-outline:hover {
  border-color: var(--border-strong);
  background: rgba(255,255,255,0.04);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding-inline: var(--space-md);
}

.btn-ghost:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.06);
}

.btn-cyan {
  background: var(--cyan);
  color: #000;
  font-weight: 700;
  box-shadow: 0 4px 16px var(--cyan-glow);
}

.btn-cyan:hover {
  box-shadow: 0 6px 28px rgba(0, 212, 255, 0.3);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
  border-radius: var(--radius-sm);
}

.btn-icon {
  padding: 10px;
  border-radius: var(--radius-md);
  aspect-ratio: 1;
}

/* ─────────────────────────────────────────
   3. CARDS
───────────────────────────────────────── */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: border-color var(--t-base), transform var(--t-base), box-shadow var(--t-base);
}

.card:hover {
  border-color: var(--border-default);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.card-red {
  border-color: rgba(255, 59, 48, 0.2);
}

.card-red:hover {
  border-color: rgba(255, 59, 48, 0.4);
  box-shadow: 0 4px 32px var(--red-glow);
}

.card-cyan {
  border-color: rgba(0, 212, 255, 0.15);
}

.card-cyan:hover {
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 4px 32px var(--cyan-glow);
}

.card-glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-subtle);
}

/* ─────────────────────────────────────────
   4. BADGES & TAGS
───────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.badge-red {
  background: var(--red-glow);
  color: var(--red-light);
  border: 1px solid rgba(255, 59, 48, 0.2);
}

.badge-cyan {
  background: var(--cyan-glow);
  color: var(--cyan);
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.badge-amber {
  background: var(--amber-glow);
  color: var(--amber);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.badge-green {
  background: var(--green-glow);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.badge-muted {
  background: rgba(255,255,255,0.05);
  color: var(--text-muted);
  border: 1px solid var(--border-subtle);
}

/* Dot indicator */
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse 2s ease infinite;
}

/* ─────────────────────────────────────────
   5. PHISHING TRAP BANNER (Hero Alert)
───────────────────────────────────────── */
.trap-banner {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  z-index: 900;
  background: linear-gradient(135deg, #1a0000 0%, #0d0000 100%);
  border-bottom: 2px solid var(--red);
  padding: 14px var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  animation: slideDown 0.5s var(--ease-smooth) 2s both;
  box-shadow: 0 4px 32px rgba(255, 59, 48, 0.3);
}

.trap-banner-left {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.trap-icon {
  width: 36px;
  height: 36px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  animation: pulseFast 1.5s ease infinite;
}

.trap-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trap-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.trap-subtitle {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
}

.trap-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex-shrink: 0;
}

.trap-btn-verify {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--t-fast), transform var(--t-fast);
  animation: glow 2s ease infinite;
}

.trap-btn-verify:hover {
  background: var(--red-dark);
  transform: scale(1.02);
}

.trap-btn-close {
  background: transparent;
  color: rgba(255,255,255,0.4);
  border: none;
  padding: 6px;
  cursor: pointer;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  line-height: 1;
  transition: color var(--t-fast), background var(--t-fast);
}

.trap-btn-close:hover {
  color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.08);
}

/* Trap revealed state */
.trap-revealed {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s var(--ease-smooth);
  padding: var(--space-lg);
}

.trap-reveal-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 59, 48, 0.3);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  max-width: 560px;
  width: 100%;
  text-align: center;
  box-shadow: 0 0 80px rgba(255, 59, 48, 0.15);
  animation: slideUp 0.5s var(--ease-smooth);
}

.trap-reveal-icon {
  width: 80px;
  height: 80px;
  background: var(--red-glow);
  border: 2px solid rgba(255, 59, 48, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto var(--space-lg);
}

/* ─────────────────────────────────────────
   6. STAT CARDS
───────────────────────────────────────── */
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color var(--t-base), transform var(--t-base);
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transition: transform var(--t-slow) var(--ease-smooth);
}

.stat-card:hover {
  border-color: rgba(255, 59, 48, 0.2);
  transform: translateY(-3px);
}

.stat-card:hover::before {
  transform: scaleX(1);
}

.stat-value {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--space-sm);
  color: var(--red);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ─────────────────────────────────────────
   7. FEATURE CARDS
───────────────────────────────────────── */
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
  transition: all var(--t-base) var(--ease-smooth);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--red-glow) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--t-slow);
}

.feature-card:hover {
  border-color: rgba(255, 59, 48, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(255, 59, 48, 0.12);
}

.feature-card:hover::after { opacity: 1; }

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--red-glow);
  border: 1px solid rgba(255, 59, 48, 0.2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  position: relative;
  z-index: 1;
  transition: background var(--t-base), border-color var(--t-base);
}

.feature-card:hover .feature-icon {
  background: rgba(255, 59, 48, 0.2);
  border-color: rgba(255, 59, 48, 0.4);
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
  position: relative;
  z-index: 1;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.feature-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  margin-top: var(--space-lg);
  position: relative;
  z-index: 1;
  transition: gap var(--t-fast);
}

.feature-card:hover .feature-link { gap: 10px; }

/* ─────────────────────────────────────────
   8. BLOG CARDS
───────────────────────────────────────── */
.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--t-base) var(--ease-smooth);
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.blog-card:hover {
  border-color: var(--border-default);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.blog-card-body {
  padding: var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.blog-card-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

.blog-card-read-time {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.blog-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
  transition: color var(--t-fast);
}

.blog-card:hover .blog-card-title { color: var(--red-light); }

.blog-card-excerpt {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}

.blog-card-footer {
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog-card-date {
  font-size: 0.75rem;
  color: var(--text-faint);
}

.blog-card-arrow {
  font-size: 0.8rem;
  color: var(--red);
  transition: transform var(--t-fast);
}

.blog-card:hover .blog-card-arrow { transform: translateX(4px); }

/* ─────────────────────────────────────────
   9. FAQ ACCORDION
───────────────────────────────────────── */
.faq-item {
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--t-base);
}

.faq-item:hover { border-color: var(--border-default); }

.faq-item.open {
  border-color: rgba(255, 59, 48, 0.2);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-lg);
  cursor: pointer;
  background: var(--bg-card);
  transition: background var(--t-fast);
  width: 100%;
  text-align: left;
  border: none;
  color: var(--text-primary);
  font-family: inherit;
}

.faq-question:hover { background: var(--bg-card-hover); }

.faq-question-text {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background: var(--red-glow);
  border: 1px solid rgba(255, 59, 48, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--red);
  transition: transform var(--t-base), background var(--t-base);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: rgba(255, 59, 48, 0.2);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) var(--ease-smooth), padding var(--t-slow);
  background: var(--bg-surface);
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ─────────────────────────────────────────
   10. HERO
───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.12;
}

.hero-gradient-1 {
  background: var(--red);
  top: -200px;
  right: -100px;
}

.hero-gradient-2 {
  background: var(--cyan);
  bottom: -200px;
  left: -100px;
  opacity: 0.06;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: var(--space-3xl);
}

/* ─────────────────────────────────────────
   11. FOOTER
───────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding-block: var(--space-2xl);
  background: var(--bg-surface);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-2xl);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: var(--space-xl);
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-top: var(--space-md);
  max-width: 260px;
}

.footer-col-title {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-link {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--t-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-link:hover { color: var(--red); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--text-faint);
}

.footer-copyright a {
  color: var(--red);
  transition: opacity var(--t-fast);
}

.footer-copyright a:hover { opacity: 0.8; }

@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .footer-top { grid-template-columns: 1fr; gap: var(--space-xl); }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ─────────────────────────────────────────
   12. HIGHLIGHT OVERLAY (Simülatör için)
───────────────────────────────────────── */
.phish-highlight {
  position: relative;
  display: inline;
  cursor: help;
}

.phish-highlight mark {
  background: rgba(255, 59, 48, 0.25);
  color: var(--red-light);
  border-bottom: 2px dashed var(--red);
  border-radius: 2px;
  padding: 0 2px;
  animation: borderGlow 2s ease infinite;
}

.phish-tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-card);
  border: 1px solid rgba(255, 59, 48, 0.3);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  max-width: 240px;
  min-width: 180px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 20px var(--red-glow);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-fast);
}

.phish-highlight:hover .phish-tooltip { opacity: 1; }

.phish-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(255, 59, 48, 0.3);
}

/* ─────────────────────────────────────────
   13. WARNING BOX
───────────────────────────────────────── */
.warning-box {
  background: rgba(255, 59, 48, 0.05);
  border: 1px solid rgba(255, 59, 48, 0.2);
  border-left: 4px solid var(--red);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  gap: var(--space-md);
}

.warning-box-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.warning-box-content {
  flex: 1;
}

.warning-box-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--red-light);
  margin-bottom: 4px;
}

.warning-box-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.info-box {
  background: var(--cyan-glow);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-left: 4px solid var(--cyan);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  display: flex;
  gap: var(--space-md);
}

/* ─────────────────────────────────────────
   14. READING PROGRESS
───────────────────────────────────────── */
.reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--red);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
  box-shadow: 0 0 8px var(--red-glow);
}
