/*
Theme Name: Pro TV Kastje
Theme URI: https://protvkastje.shop
Author: Pro TV Kastje
Author URI: https://protvkastje.shop
Description: Premium Next-Gen Web3/Sports IPTV WordPress Theme for the Dutch Market.
Version: 1.0.0
Text Domain: blankslate
*/

/* --------------------------------------------------------
   1. CSS VARIABLES & PREMIUM DESIGN SYSTEM
-------------------------------------------------------- */

:root {
  /* Dynamic Gradients - Banana Yellow Theme */
  --primary-glow: #facc15; /* Banana Yellow */
  --primary-light: #fef08a; /* Light Yellow */
  --primary-dark: #eab308;
  --accent-orange: #f97316; /* Dutch Orange */
  
  --gradient-main: linear-gradient(135deg, #facc15 0%, #eab308 100%);
  --gradient-text: linear-gradient(100deg, #FFFFFF, #B0B0B0);
  --gradient-accent: linear-gradient(135deg, #facc15 0%, #ca8a04 100%);
  
  /* Glassmorphism Dark Mode */
  --bg-deep: #0a0a0f;
  --glass-bg: rgba(20, 20, 15, 0.4);
  --glass-border: rgba(250, 204, 21, 0.08);
  --glass-border-light: rgba(250, 204, 21, 0.15);
  
  /* Text */
  --text-white: #FFFFFF;
  --text-light: #A1A1AA;
  --success: #10B981;
  --border-radius: 16px;
  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --header-height: 90px;
}

/* --------------------------------------------------------
   2. GLOBAL RESET & BASE
-------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: 'Outfit', sans-serif;
  scroll-behavior: smooth;
  background-color: var(--bg-deep);
  color: var(--text-white);
  line-height: 1.6;
}

body {
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background-image: 
    radial-gradient(circle at 15% 50%, rgba(250, 204, 21, 0.04), transparent 25%),
    radial-gradient(circle at 85% 30%, rgba(249, 115, 22, 0.04), transparent 25%);
}

ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; border-radius: 8px; }

h1, h2, h3, h4, h5, h6 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

p {
  color: var(--text-light);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --------------------------------------------------------
   3. BACKGROUND AMBIENCE
-------------------------------------------------------- */
.ambient-glow {
  position: fixed;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  filter: blur(140px);
  z-index: -1;
  opacity: 0.15;
  pointer-events: none;
}
.ambient-glow-1 { top: -200px; left: -200px; background: var(--primary-glow); }
.ambient-glow-2 { bottom: -200px; right: -200px; background: var(--accent-orange); }

/* --------------------------------------------------------
   4. PREMIUM UTILITIES & COMPONENTS
-------------------------------------------------------- */
.text-gradient {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.title-gradient {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Glassmorphism Cards */
.card-glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-top-color: var(--glass-border-light);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.card-glass::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.03), transparent);
  transform: skewX(-20deg);
  transition: 0.7s;
}

.card-glass:hover::before { left: 150%; }

.card-glass:hover {
  transform: translateY(-8px);
  border-color: rgba(250, 204, 21, 0.3);
  box-shadow: 0 15px 40px rgba(250, 204, 21, 0.1);
  background: rgba(25, 25, 15, 0.6);
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  background: var(--gradient-main);
  color: #050505;
  font-weight: 800;
  letter-spacing: 0.5px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-size: 1.05rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(250, 204, 21, 0.3);
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, #fef08a 0%, #eab308 100%);
  z-index: -1;
  transition: opacity 0.4s ease;
  opacity: 0;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 30px rgba(250, 204, 21, 0.5);
  color: #000;
}

.btn:hover::before { opacity: 1; }

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}
.btn-whatsapp::before {
  background: linear-gradient(135deg, #1EBE5C 0%, #25D366 100%);
}
.btn-whatsapp:hover {
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--glass-border-light);
  color: #fff;
  box-shadow: none;
}
.btn-outline::before { display: none; }
.btn-outline:hover {
  border-color: var(--primary-glow);
  background: rgba(163, 230, 53, 0.1);
  box-shadow: inset 0 0 15px rgba(163, 230, 53, 0.2);
  color: #fff;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.15rem;
}

.icon {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

/* --------------------------------------------------------
   5. NAVIGATION
-------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition);
  display: flex;
  align-items: center;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  height: 80px;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--text-white);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.logo span {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-menu {
  display: flex;
  gap: 2.5rem;
}

.nav-menu li a {
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-light);
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu li a:after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-menu li a:hover {
  color: var(--text-white);
}

.nav-menu li a:hover:after {
  width: 100%;
}

.hamburger {
  display: none;
  background: none; border: none;
  color: var(--text-white);
  font-size: 1.5rem; cursor: pointer;
}

/* --------------------------------------------------------
   6. HERO
-------------------------------------------------------- */
.hero {
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--header-height);
}

.hero-bg-wrapper {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.4;
  transform: scale(1.02); 
  animation: bgZoom 30s infinite alternate linear;
}

@keyframes bgZoom {
  0% { transform: scale(1.02); }
  100% { transform: scale(1.1); }
}

.hero-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--bg-deep) 0%, rgba(10,10,15,0.3) 60%, rgba(10,10,15,0.8) 100%);
  z-index: -1;
  pointer-events: none;
}

.position-relative-hidden {
    position: relative;
    overflow: hidden;
}

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

.particle {
    position: absolute;
    animation: floatAnimation 15s infinite ease-in-out;
    opacity: 0.85;
}

.svg-neon {
    filter: drop-shadow(0 0 10px currentColor) drop-shadow(0 15px 15px rgba(0,0,0,0.6));
    opacity: 0.9;
}

@keyframes floatAnimation {
    0% { transform: translateY(0) rotate(0deg) scale(1); }
    25% { transform: translateY(-20px) rotate(5deg) scale(1.05); }
    50% { transform: translateY(10px) rotate(-5deg) scale(0.95); }
    75% { transform: translateY(-15px) rotate(2deg) scale(1.02); }
    100% { transform: translateY(0) rotate(0deg) scale(1); }
}

.hero-content {
  max-width: 800px;
  text-align: left;
  position: relative;
  z-index: 10;
  padding: 0;
  transform: translateY(-8vh);
}

.hero-badge {
  display: inline-flex;
  padding: 8px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(163, 230, 53, 0.3);
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-white);
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}
.hero-badge strong { color: var(--primary-glow); margin-left: 5px; }

.hero h1 {
  font-size: clamp(3.5rem, 5.5vw, 5.5rem);
  text-transform: none;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}

.hero p {
  font-size: clamp(1.1rem, 2vw, 1.25rem);
  margin-bottom: 2.5rem;
  color: #D1D5DB;
  max-width: 650px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1.5rem;
}

/* --------------------------------------------------------
   7. GRIDS & CARDS
-------------------------------------------------------- */
.steps-grid, .features-grid, .downloads-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.step-card {
  text-align: left;
}

.step-card svg {
  width: 56px;
  height: 56px;
  color: var(--primary-glow);
  margin-bottom: 1.5rem;
  padding: 12px;
  background: rgba(163, 230, 53, 0.1);
  border-radius: 16px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
}

.feature-icon {
  width: 50px;
  height: 50px;
  color: var(--primary-glow);
  flex-shrink: 0;
  background: rgba(255,255,255,0.03);
  padding: 10px;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
}

/* --------------------------------------------------------
   8. PRICING & FAQ
-------------------------------------------------------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.faq-item:hover {
  background: rgba(20, 25, 20, 0.6);
  border-color: rgba(163, 230, 53, 0.2);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
}

.faq-icon {
  width: 24px;
  height: 24px;
  color: var(--primary-glow);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
}

/* --------------------------------------------------------
   9. FOOTER
-------------------------------------------------------- */
.site-footer {
  background: rgba(5, 5, 10, 0.95);
  border-top: 1px solid var(--glass-border);
  padding-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h4 {
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: var(--text-light);
}

.footer-links a:hover {
  color: var(--primary-glow);
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  color: #fff;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--primary-glow);
  color: #000;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem 0;
  text-align: center;
  color: var(--text-light);
}

/* Floating WhatsApp */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  transition: all 0.3s ease;
  animation: bounce 2s infinite;
}

.floating-whatsapp svg {
  width: 35px; height: 35px; fill: currentColor;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(-15px); }
  60% { transform: translateY(-7px); }
}

/* --------------------------------------------------------
   17. RESPONSIVE / MOBILE OPTIMIZATION
-------------------------------------------------------- */
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  /* Layout & Spacing */
  .section { padding: 60px 0; }
  .section-title { margin-bottom: 2.5rem; }
  .section-title h2 { font-size: 2.2rem; }
  
  /* Hero */
  .hero { min-height: auto; padding-top: calc(var(--header-height) + 40px); padding-bottom: 60px; }
  .hero h1 { font-size: 2.5rem; }
  .hero p { font-size: 1.05rem; margin-bottom: 2rem; }
  .hero-actions { flex-direction: column; width: 100%; gap: 1rem; }
  .hero-actions .btn { width: 100%; text-align: center; justify-content: center; }
  .hero-badge { font-size: 0.85rem; padding: 6px 14px; margin-bottom: 1.5rem; }
  
  /* Glass Cards */
  .card-glass { padding: 1.5rem; }
  
  /* Feature List & Steps */
  .feature-item { padding: 1.5rem; flex-direction: column; text-align: center; align-items: center; gap: 1rem; }
  .step-card { text-align: center; }
  .step-card svg { margin-left: auto; margin-right: auto; }
  
  /* Grids */
  .steps-grid, .features-grid, .downloads-grid, .pricing-grid, .seo-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .social-icons { justify-content: center; }
  .footer-col h4 { margin-bottom: 1rem; }
  
  /* Floating elements */
  .floating-whatsapp { bottom: 20px; right: 20px; width: 55px; height: 55px; }
  .floating-whatsapp svg { width: 30px; height: 30px; }

  /* Marquee Images */
  .app-icon-img { height: 35px; }
  .device-badge-img { height: 40px; }
  .swiper-slide { padding: 0 15px !important; }
  
  /* Comparison Table (Horizontal Scroll) */
  .compare-table-wrapper { padding-bottom: 10px; }
  .compare-table th { font-size: 0.95rem; padding: 1rem; }
  .compare-table td { padding: 1rem; font-size: 0.9rem; }
  
  /* Navigation */
  .nav-menu { display: none; }
  .hamburger { display: block; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .section-title h2 { font-size: 1.8rem; }
  .app-icon-img { height: 30px; }
  .device-badge-img { height: 35px; }
}

/* --------------------------------------------------------
   10. MARQUEE SWIPER
-------------------------------------------------------- */
.swiper-marquee .swiper-slide {
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
  transition: opacity 0.3s;
  height: 60px;
}
.swiper-marquee .swiper-slide:hover { opacity: 1; }

.device-marquee .swiper-slide {
  width: auto;
  padding: 10px 25px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  white-space: nowrap;
}

/* --------------------------------------------------------
   11. CUSTOMER REVIEWS
-------------------------------------------------------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.review-card {
  padding: 2rem;
  text-align: left;
}
.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 1.5rem;
}
.review-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: bold; font-size: 1.2rem;
}
.review-stars { color: #FBBF24; margin-bottom: 5px; }

/* --------------------------------------------------------
   12. COUNTDOWN & PROMO
-------------------------------------------------------- */
.promo-box {
  background: linear-gradient(135deg, rgba(250, 204, 21, 0.1) 0%, rgba(20, 25, 20, 0.8) 100%);
  border: 1px solid var(--primary-dark);
}
.countdown-timer {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 2rem 0;
}
.cd-box {
  background: rgba(0,0,0,0.5);
  border: 1px solid var(--glass-border);
  padding: 15px;
  border-radius: 12px;
  min-width: 80px;
  text-align: center;
}
.cd-box span {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-glow);
}
.cd-box small {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --------------------------------------------------------
   13. SEO CONTENT BLOCKS
-------------------------------------------------------- */
.seo-block {
  padding: 2rem;
  background: rgba(255,255,255,0.02);
  border-radius: 16px;
  margin-bottom: 2rem;
}
.seo-block h3 {
  font-size: 1.4rem;
  color: var(--primary-glow);
  margin-bottom: 1rem;
}
.seo-block strong {
  color: #fff;
}

/* --------------------------------------------------------
   14. ANIMATION KEYFRAMES
-------------------------------------------------------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

@keyframes bgZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

@keyframes floatAnimation {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-bg-img {
  animation: bgZoom 20s infinite alternate;
}

.particle {
  animation: floatAnimation 4s ease-in-out infinite;
}
.p-movie { animation-delay: 1s; }
.p-vip { animation-delay: 2s; }

/* --------------------------------------------------------
   15. COMPARISON TABLE
-------------------------------------------------------- */
.compare-table-wrapper {
  overflow-x: auto;
  margin-top: 3rem;
  border-radius: 15px;
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}
.compare-table th, .compare-table td {
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.compare-table th:first-child, .compare-table td:first-child {
  text-align: left;
  font-weight: 600;
}
.compare-table th {
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.compare-table th.col-premium, .compare-table td.col-premium {
  background: rgba(250, 204, 21, 0.05);
  border-left: 1px solid var(--primary-glow);
  border-right: 1px solid var(--primary-glow);
}
.compare-table th.col-premium {
  color: var(--primary-glow);
  border-top: 1px solid var(--primary-glow);
}
.compare-table tr:last-child td.col-premium {
  border-bottom: 1px solid var(--primary-glow);
}
.check-icon {
  color: var(--primary-glow);
  width: 24px;
  height: 24px;
}
.cross-icon {
  color: #ef4444;
  width: 24px;
  height: 24px;
}

/* --------------------------------------------------------
   16. MARQUEE IMAGES
-------------------------------------------------------- */
.app-icon-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
  transition: transform 0.3s ease;
}
.app-icon-img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px var(--primary-glow));
}
.device-badge-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
  transition: transform 0.3s ease;
}
.device-badge-img:hover {
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px var(--primary-glow));
}