/* =====================================================
   FRIZBY'S HUD THEME - INDEX PAGE (NO GRADIENTS)
   ===================================================== */

/* ===== BASE ===== */
:root {
  --hud-primary: #00ffc6;   /* neon teal */
  --hud-secondary: #3b9fff; /* neon blue */
  --hud-bg: #0a0e1a;        /* deep space background */
  --hud-panel: rgba(20, 26, 38, 0.85); /* glassy panels */
  --hud-text: #e9eef5;      /* clean text */
  --hud-muted: #9aa5b1;
  --hud-danger: #ff4d6d;
  --font: 'Orbitron', 'Poppins', sans-serif;
}

* { box-sizing: border-box; }
html, body { margin:0; padding:0; }
body.friz-body {
  font-family: var(--font);
  background: var(--hud-bg);
  color: var(--hud-text);
}
.friz-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1200px; /* keeps it from stretching edge-to-edge on big screens */
  margin: 0 auto;    /* centers the grid */
  padding: 20px;
}
.build-banner {
  display: block;
  background: linear-gradient(135deg, #fff 0%, #e8fff5 100%);
  color: #111; /* dark text on light bg */
  font-weight: 700;
  font-size: 1.4rem;
  text-align: center;
  padding: 20px 26px;
  margin: 40px auto;
  border-radius: 18px;
  box-shadow: 0 0 25px rgba(0,255,127,.7), 0 0 50px rgba(0,255,127,.4);
  text-decoration: none;
  transition: all 0.3s ease;
  max-width: 640px;
  letter-spacing: 0.5px;
}

.build-banner:hover {
  background: linear-gradient(135deg, var(--friz-green) 0%, #00ffaa 100%);
  color: #000;
  transform: scale(1.05);
  box-shadow: 0 0 35px rgba(0,255,127,1), 0 0 70px rgba(0,255,127,.8);
}

.section-title {
  text-align: center;
  font-size: 2.2rem;
  margin: 30px 0;
  color: #fff; /* match your site theme */
}

.center {
  text-align: center;
  font-size: 1.8rem;
  margin: 25px 0 15px;
  color: var(--friz-green);
}

/* ===== NAVBAR ===== */
.friz-nav {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(15, 20, 30, 0.9);
  backdrop-filter: blur(8px);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(0,255,198,0.15);
}
.friz-nav-row { display: flex; gap: 16px; align-items: center; }
.friz-nav-left { justify-content: flex-start; }
.friz-nav-right { justify-content: flex-end; }

.nav-link {
  color: var(--hud-muted);
  font-weight: 600;
  padding: 8px 12px;
  border-radius: 8px;
  text-decoration: none;
  transition: color .3s ease, text-shadow .3s ease;
}
.nav-link:hover {
  color: var(--hud-primary);
  text-shadow: 0 0 6px var(--hud-primary), 0 0 12px var(--hud-secondary);
}

/* Logo + Beacon */
.friz-logo-wrap { display:flex; flex-direction:column; align-items:center; gap:6px; }
.friz-logo-btn { border:none;background:transparent;cursor:pointer; }
.friz-logo-img { width:64px;height:64px; transition:.2s; }
.friz-logo-btn.is-active .friz-logo-img {
  transform:scale(1.08);
  filter:drop-shadow(0 0 12px var(--hud-primary));
}

/* Beacon with soft pulse */
@keyframes beaconPulse {
  0%,100% { box-shadow:0 0 0 0 rgba(0,255,198,.4); }
  50% { box-shadow:0 0 0 12px rgba(0,255,198,0); }
}
.friz-beacon {
  display:inline-flex;align-items:center;gap:6px;
  padding:6px 12px;border-radius:999px;font-weight:700;
}
.friz-beacon.is-open {
  color:#dfffe9;background:rgba(0,255,198,0.1);
  animation:beaconPulse 3s infinite;
}
.friz-beacon.is-closed {
  color:#ffe2e2;background:rgba(255,77,109,0.12);
  animation:beaconPulse 3s infinite;
}
.beacon-dot { width:10px;height:10px;border-radius:50%; }
.friz-beacon.is-open .beacon-dot { background:var(--hud-primary); }
.friz-beacon.is-closed .beacon-dot { background:var(--hud-danger); }

/* ===== HERO ===== */
.friz-hero {
  text-align:center;padding:80px 20px;
background: url('/media/index_bg.jpg') center/cover no-repeat;

  color:#fff; position:relative;
}
.friz-hero::before {
  content:'';position:absolute;inset:0;
  background:rgba(10,14,26,.7); /* flat overlay, no gradient */
}
.friz-hero-content { position:relative;z-index:1; }
.friz-hero h1 { font-size:2.5rem;margin:0 0 12px; color:var(--hud-primary); }
.friz-hero h2 { font-size:1.8rem;margin:0 0 16px; color:var(--hud-secondary); }
.alien-btn-group { display:flex;flex-wrap:wrap;gap:1rem;justify-content:center;margin-top:1.5rem; }

/* ===== BUTTONS ===== */
.alien-btn, .friz-btn-primary, .build-btn, .see-all-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  background: var(--hud-primary); /* solid neon green */
  color: #000;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 12px rgba(0,255,198,.6), 0 0 24px rgba(0,255,198,.4);
}
.alien-btn:hover, .friz-btn-primary:hover, .build-btn:hover, .see-all-btn:hover {
  transform: translateY(-2px) scale(1.03);
  background: #00e6ac; /* darker neon green */
  box-shadow: 0 0 20px rgba(0,255,198,.8), 0 0 40px rgba(0,255,198,.6);
}

/* ===== ANNOUNCEMENT ===== */
.friz-announcement {
  background:rgba(15,20,30,0.9);
  border-top:2px solid var(--hud-primary);
  border-bottom:2px solid var(--hud-primary);
  color:var(--hud-primary);
  font-size:1.2rem;
  letter-spacing:2px;
  text-transform:uppercase;
  text-shadow:0 0 6px var(--hud-primary);
  padding:14px 20px;text-align:center;
  backdrop-filter:blur(4px);
  animation:subtleGlow 4s infinite ease-in-out;
}
@keyframes subtleGlow {
  0%,100% { text-shadow:0 0 6px rgba(0,255,198,.4),0 0 12px rgba(0,255,198,.2); }
  50% { text-shadow:0 0 10px rgba(0,255,198,.6),0 0 18px rgba(0,255,198,.4); }
}

/* ===== SOCIAL BANNER ===== */
.social-banner {
  background: rgba(15,20,30,0.95);
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-weight: bold;
  border-top: 2px solid var(--hud-primary);
  border-bottom: 2px solid var(--hud-primary);
  box-shadow: 0 0 15px rgba(0,255,198,.25);
}
.social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: .5rem;
}
.social-icons a {
  font-size: 2rem;
  color: var(--hud-primary);
  transition: .3s;
  text-shadow: 0 0 6px rgba(0,255,198,.6);
}
.social-icons a:hover {
  transform: scale(1.2);
  color: var(--hud-secondary);
  text-shadow: 0 0 12px var(--hud-secondary), 0 0 20px var(--hud-primary);
}

/* ===== CARDS ===== */
.friz-card {
  background:var(--hud-panel);
  border-radius:12px;overflow:hidden;
  border:1px solid rgba(0,255,198,.15);
  transition:.3s;display:flex;flex-direction:column;
}
.friz-card:hover {
  transform:translateY(-4px);
  box-shadow:0 6px 20px rgba(0,255,198,.2);
  border-color:var(--hud-primary);
}
.friz-card-img { width:100%;height:200px;object-fit:cover; }
.friz-card-body { padding:16px;display:flex;flex-direction:column;gap:10px; }
.friz-card-title { font-size:1.2rem;margin:0;color:var(--hud-primary); }
.friz-card-price { color:var(--hud-primary);font-weight:700; }

/* ===== ACCORDION ===== */
.friz-accordion { display:flex;flex-direction:column;gap:12px; }
.friz-acc-item { background:var(--hud-panel);border-radius:10px;overflow:hidden; }
.friz-acc-item summary {
  cursor:pointer;padding:16px;font-weight:600;color:var(--hud-primary);
}
.friz-acc-item[open] summary { background:rgba(0,255,198,.08); }
.acc-body { padding:16px; }

/* ===== MAP / TOUR ===== */
.friz-map { padding:40px 0;background:#111; }
.toggle-btns { gap:12px;margin-bottom:16px;display:flex;justify-content:center; }
.friz-toggle-btn {
  padding:.75rem 1.5rem;
  border-radius:50px;
  font-weight:700;
  border:none;
  cursor:pointer;
  color:#000;
  background: var(--hud-primary); /* solid neon green */
  box-shadow:0 0 12px rgba(0,255,198,.5);
  transition:all 0.3s ease;
}
.friz-toggle-btn:hover {
  transform:translateY(-3px) scale(1.05);
  background:#00e6ac; /* darker green */
  box-shadow:0 0 20px rgba(0,255,198,.8),0 0 40px rgba(0,255,198,.6);
}
.friz-toggle-btn.active {
  background:var(--hud-primary);
  color:#000;
  box-shadow:0 0 25px rgba(0,255,198,.9);
}
.friz-iframe { position:relative;width:100%;padding-bottom:56.25%;height:0;overflow:hidden;border-radius:10px; }
.friz-iframe iframe { position:absolute;top:0;left:0;width:100%;height:100%; }

/* ===== FOOTER ===== */
.friz-footer {
  background:rgba(15,20,30,0.9);
  border-top:2px solid var(--hud-primary);
  color:var(--hud-muted);padding:20px 0;text-align:center;
}
.friz-footer a { color:var(--hud-muted);margin:0 8px; }
.friz-footer a:hover { color:var(--hud-primary); }



/* ===== RESPONSIVE ===== */
@media(max-width:991px){
  .friz-nav { grid-template-columns:1fr;justify-items:center;text-align:center; }
  .friz-nav-left,.friz-nav-right{ display:none; }
}
@media(min-width:992px){
  .friz-nav-left,.friz-nav-right{ display:flex; }
}
@media(max-width:480px){
  .friz-logo-img{width:52px;height:52px}
  .friz-status{font-size:1.5rem}
}
/* =====================================================
   NAVBAR & DRAWERS - HUD THEME
   ===================================================== */

/* =====================================================
   NAVBAR & DRAWERS - HUD STYLE
   ===================================================== */

/* ===== NAVBAR ===== */
.dual-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(15,20,30,0.95);
  color: var(--hud-text);
  padding: 0.75rem 1rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
}
.nav-col { display: flex; align-items: center; gap: 0.5rem; }
.nav-left { justify-content: flex-start; }
.nav-right { justify-content: flex-end; flex-wrap: wrap; }

/* ===== NAV BUTTONS ===== */
.nav-btn {
  display: inline-block;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  border: 2px solid var(--hud-primary);
  background: rgba(15,20,30,0.85);
  color: var(--hud-primary);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.nav-btn:hover,
.nav-btn:focus {
  background: var(--hud-danger);     /* red on hover */
  border-color: var(--hud-danger);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 16px rgba(255,77,109,0.7), 0 0 32px rgba(255,77,109,0.5);
  outline: none;
}

/* ===== DRAWER OVERLAY ===== */
.drawer-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0,0,0,0.6);
  z-index: 3050;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
.drawer-overlay.open { opacity: 1; visibility: visible; }

/* ===== DRAWERS ===== */
.friz-drawer {
  position: fixed;
  top: 0; bottom: 0;
  width: min(320px, 80vw);
  background: rgba(20,26,38,0.95);
  color: var(--hud-text);
  box-shadow: 4px 0 20px rgba(0,0,0,0.6);
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 3100;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(10px);
}
.friz-drawer.right {
  right: 0;
  transform: translateX(100%);
  box-shadow: -4px 0 20px rgba(0,0,0,0.6);
}
.friz-drawer.open { transform: translateX(0); }

/* Drawer header */
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.drawer-header h2 { margin: 0; font-size: 1.2rem; }
.drawer-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--hud-primary);
  cursor: pointer;
  padding: 0.25rem;
}
.drawer-close:hover { color: #fff; }

/* Drawer body */
.drawer-body { flex: 1; overflow-y: auto; padding: 1rem; }
.drawer-link {
  display: block;
  padding: 1rem;
  color: var(--hud-text);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background 0.2s, color 0.2s;
}
.drawer-link:hover, .drawer-link:focus {
  background: rgba(0,255,198,0.08);
  color: var(--hud-primary);
  outline: none;
}
.drawer-sep {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin: 1rem 0;
}


/* ===== INPUTS & ALERTS ===== */
.friz-input {
  width: 100%;
  padding: 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: var(--hud-text);
}
.friz-input:focus {
  border-color: var(--hud-primary);
  outline: none;
  box-shadow: 0 0 0 2px rgba(0,255,198,0.2);
}
.friz-input::placeholder { color: rgba(255,255,255,0.5); }

.friz-alert {
  background: var(--hud-danger);
  color: #fff;
  padding: 0.75rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  text-align: center;
  font-size: 0.9rem;
}
.friz-form { display: flex; flex-direction: column; gap: 0.5rem; }

/* ===== NAV BUTTONS (Drawer Triggers) ===== */
.alien-btn {
  display: inline-block;
  padding: 0.6rem 1rem;
  border-radius: 50px;
  background: var(--hud-primary); /* solid neon green */
  color: #000;
  font-weight: 700;
  text-align: center;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.alien-btn:hover, .alien-btn:focus {
  background: var(--hud-danger); /* red on hover */
  color: #fff;
  box-shadow: 0 0 16px rgba(255,77,109,0.7), 0 0 32px rgba(255,77,109,0.5);
  outline: none;
}

.alien-btn.alt {
  background: transparent;
  border: 1px solid var(--hud-primary);
  color: var(--hud-primary);
}
.alien-btn.alt:hover, .alien-btn.alt:focus {
  background: var(--hud-danger);
  color: #fff;
  border-color: var(--hud-danger);
}

.alien-btn.small { padding: 0.5rem 0.75rem; font-size: 0.9rem; }


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .dual-nav { grid-template-columns: 1fr; text-align: center; padding: 0.5rem; }
  .nav-right { justify-content: center; margin-top: 0.5rem; }
  .nav-status-bar { flex-direction: column; gap: 0.5rem; padding: 0.75rem; }
}
@media (max-width: 480px) {
  .friz-drawer { width: 100vw; }
}

/* Accessibility */
*:focus-visible { outline: 2px solid var(--hud-primary); outline-offset: 2px; }
/* ===== STATUS + SOCIAL BLOCK (Two-Column) ===== */
.status-social-block {
  background: rgba(15,20,30,0.95);
  padding: 1rem;
  border: 2px solid var(--hud-primary);
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 0 15px rgba(0,255,198,.25);
  max-width: 800px;
  margin: 1rem auto;
}

/* Row with beacon + announcement */
.status-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

/* Beacon */
.status-row .friz-beacon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
}
.status-row .friz-beacon.is-open .beacon-text { color: var(--hud-primary); }
.status-row .friz-beacon.is-closed .beacon-text { color: var(--hud-danger); }
.status-row .beacon-dot { width: 10px; height: 10px; border-radius: 50%; background: currentColor; }

/* Announcement */
.status-row .friz-announcement {
  color: var(--hud-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 6px var(--hud-primary);
  flex: 1;
  text-align: right;
}

/* Social icons */
.status-social-block .social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.status-social-block .social-icons a {
  font-size: 1.6rem;
  color: var(--hud-primary);
  transition: .3s;
  text-shadow: 0 0 6px rgba(0,255,198,.6);
}
.status-social-block .social-icons a:hover {
  transform: scale(1.2);
  color: var(--hud-secondary);
  text-shadow: 0 0 12px var(--hud-secondary), 0 0 20px var(--hud-primary);
}

/* Mobile tweak */
@media (max-width: 600px) {
  .status-row {
    flex-direction: column;
    text-align: center;
  }
  .status-row .friz-announcement { text-align: center; }
}
/* ===== SCROLLING ANNOUNCEMENT ===== */
.status-row .friz-announcement {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  border-top: 2px solid var(--hud-primary);
  border-bottom: 2px solid var(--hud-primary);
  padding: 0.25rem 0;
}

.status-row .friz-announcement::before {
  content: attr(role); /* fallback text if no message */
  display: none;
}

.status-row .friz-announcement span {
  display: inline-block;
  padding-left: 100%; /* start off screen */
  animation: announcementScroll 12s linear infinite;
}

@keyframes announcementScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}
/* ===== HERO LOGO ===== */
.hero-logo {
  display: inline-block;
  height: 48px; /* adjust to fit the text */
  vertical-align: middle;
  margin: 0 6px;
  filter: drop-shadow(0 0 6px var(--hud-primary));
  transition: transform 0.3s ease, filter 0.3s ease;
}
.hero-logo:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 12px var(--hud-secondary));
}
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9); /* darker, almost solid */
  backdrop-filter: blur(4px);     /* optional: soft blur behind */
  display: none;
  z-index: 9999;
}

.cart-panel {
  position: absolute;
  top: 0; right: -400px;
  width: 360px; height: 100%;
  background: var(--friz-panel);
  box-shadow: -4px 0 20px rgba(0,0,0,.6);
  transition: right .3s ease;
  padding: 20px;
  overflow-y: auto;
  display:flex;
  flex-direction:column;
}
.cart-overlay.open { display:block; }
.cart-overlay.open .cart-panel { right: 0; }
.cart-header { display:flex; justify-content:space-between; align-items:center; margin-bottom:16px; }
.cart-header h4 { margin:0; color:#fff; font-size:1.3rem; }
.cart-close { background:none; border:none; font-size:1.8rem; color:#fff; cursor:pointer; }
.cart-items { flex:1; }
.cart-item { display:flex; justify-content:space-between; align-items:center; border-bottom:1px solid rgba(255,255,255,.1); padding:8px 0; color:#fff; }
.cart-item-name { font-weight:500; }
.cart-item-price { font-weight:600; }
.cart-footer { margin-top:20px; border-top:1px solid rgba(255,255,255,.2); padding-top:12px; color:#fff; }
.cart-footer p { margin:6px 0; display:flex; justify-content:space-between; }
.cart-footer strong { font-size:1.1rem; }
.cart-footer .friz-btn { width:100%; margin-top:8px; }

.view-cart-btn {
  position:fixed; bottom:20px; right:20px;
  background: var(--friz-green);
  color:#fff; font-weight:bold;
  padding:12px 18px; border-radius:50px;
  box-shadow:0 0 18px rgba(0,255,127,.6);
  text-decoration:none; z-index:10001;
}
/* Container panel */
.status-social-block {
  background: var(--ufo-panel, #101620);
  border: 2px solid var(--ufo-green, #00ff7f);
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  margin: 1.5rem auto;
  text-align: center;
  box-shadow: 0 0 20px rgba(0,255,127,0.3);
  max-width: 600px;
}

/* Row layout */
.status-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Beacon */
.friz-beacon {
  font-size: 1.5rem;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .5rem 1rem;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
}

.friz-beacon .beacon-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
}

.friz-beacon.is-open .beacon-dot {
  background: #00ff7f;
  box-shadow: 0 0 15px #00ff7f, 0 0 30px #00ff7f;
  animation: pulse 1.5s infinite;
}
.friz-beacon.is-closed .beacon-dot {
  background: #ff4444;
  box-shadow: 0 0 15px #ff4444, 0 0 30px #ff4444;
  animation: pulse 1.5s infinite;
}

/* Announcement */
.friz-announcement {
  background: linear-gradient(90deg, #ff1e56, #ffac41);
  color: #fff;
  font-weight: bold;
  font-size: 1.25rem;
  padding: .75rem 1rem;
  border-radius: .5rem;
  animation: flash 2s infinite;
}

/* Animations */
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}
@keyframes flash {
  0%, 100% { opacity: 1; }
  50% { opacity: .65; }
}
/* Beacon OPEN */
.friz-beacon.is-open {
  border: 2px solid #00ff7f;
  box-shadow: 0 0 10px #00ff7f, 0 0 20px #00ff7f;
  animation: neon-glow 1.5s infinite;
}

/* Beacon CLOSED */
.friz-beacon.is-closed {
  border: 2px solid #ff4444;
  box-shadow: 0 0 10px #ff4444, 0 0 20px #ff4444;
  animation: neon-glow-red 1.5s infinite;
}

/* Dot stays as-is, still pulsing */
.friz-beacon .beacon-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: inline-block;
}

/* Animations */
@keyframes neon-glow {
  0%, 100% {
    box-shadow: 0 0 10px #00ff7f, 0 0 20px #00ff7f, 0 0 40px #00ff7f;
  }
  50% {
    box-shadow: 0 0 20px #00ff7f, 0 0 40px #00ff7f, 0 0 80px #00ff7f;
  }
}

@keyframes neon-glow-red {
  0%, 100% {
    box-shadow: 0 0 10px #ff4444, 0 0 20px #ff4444, 0 0 40px #ff4444;
  }
  50% {
    box-shadow: 0 0 20px #ff4444, 0 0 40px #ff4444, 0 0 80px #ff4444;
  }
}
