/* ============================================
   MODERN SPORTY DESIGN - STIPADA FUN RUN 2026
   ============================================ */

/* ===== VARIABLES ===== */
:root {
  --primary-color: #ff8113;
  --secondary-color: #ff6600;
  --accent-color: #ffa930;
  --neon-orange: #ff9a1f;
  --neon-cyan: #1de9ff;
  --dark-bg: #0f1419;
  --card-bg: #1a1f2e;
  --text-light: #e8ecf1;
  --text-muted: #a8b5c3;
  --success-color: #00d084;
  --warning-color: #ffa500;
}

/* ===== HEADER & NAVIGATION ===== */
.header-area {
  background: #ffffff !important;
  backdrop-filter: blur(10px) saturate(125%) !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1) !important;
  border-bottom: 1px solid rgba(255, 129, 19, 0.15) !important;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.header-area .main-nav {
  min-height: 64px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  height: 80px !important;
}

.header-area .main-nav .logo {
  float: none !important;
  line-height: 1 !important;
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
}

.header-area .main-nav .logo img.logo-img {
  display: block !important;
  max-height: 56px !important;
  width: auto !important;
}

.header-area .main-nav .nav {
  float: none !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-end !important;
  margin-left: auto !important;
  height: 100% !important;
}

.header-area .main-nav .nav li {
  padding-left: 20px !important;
  padding-right: 20px !important;
  display: flex !important;
  align-items: center !important;
}

.header-area.header-sticky {
  background: rgba(255, 255, 255, 1) !important;
  backdrop-filter: blur(12px) !important;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1) !important;
  border-bottom: 1px solid rgba(255, 129, 19, 0.15) !important;
}

.header-area.header-sticky ul.nav li a {
  color: #333333 !important;
}

.header-area .logo-img {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 0 8px rgba(255, 129, 19, 0.2));
}

.header-area .logo-img:hover {
  transform: scale(1.08) rotate(-2deg);
  filter: drop-shadow(0 0 16px rgba(255, 129, 19, 0.4));
}

/* Navigation Menu Styling */
.main-nav ul.nav {
  display: flex !important;
  align-items: center !important;
  gap: 0 !important;
}

.main-nav ul.nav li {
  display: flex !important;
  align-items: center !important;
  height: auto !important;
}

.main-nav ul.nav li a {
  color: #333333 !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  transition: all 0.3s ease !important;
  position: relative;
  padding: 12px 5px !important;
  display: inline-flex !important;
  align-items: center !important;
  line-height: 1 !important;
  vertical-align: middle !important;
  text-shadow: none;
}

.main-nav ul.nav li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
  /* transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1); */
}

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

.main-nav ul.nav li a:hover {
  color: var(--primary-color) !important;
  text-shadow: none;
}

.main-nav ul.nav li a.active {
  color: var(--primary-color) !important;
}

.main-nav ul.nav li.main-button-hed a {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color)) !important;
  border-radius: 50px !important;
  padding: 12px 32px !important;
  box-shadow: 0 8px 20px rgba(255, 129, 19, 0.3) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  transform: translateY(0) !important;
}

.main-nav ul.nav li.main-button-hed a:hover {
  box-shadow: 0 12px 28px rgba(255, 129, 19, 0.5) !important;
}

@media (max-width: 767px) {
  .header-area .main-nav {
    height: 80px !important;
    overflow: visible !important;
  }

  .header-area .main-nav .nav {
    display: none !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
    position: absolute !important;
    top: 80px !important;
    left: 0 !important;
    right: 0 !important;
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 18px 32px rgba(255, 255, 255, 0.12) !important;
    padding: 10px 0 !important;
    z-index: 1000 !important;
    height: auto !important;
    max-height: calc(100vh - 90px) !important;
    overflow-y: auto !important;
  }

  .header-area .main-nav .nav.is-open {
    display: flex !important;
  }

  .header-area .main-nav .nav li {
    width: 100% !important;
    justify-content: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .header-area .main-nav .nav li a {
    width: 100% !important;
    justify-content: center !important;
    color: #333333 !important;
    padding: 14px 20px !important;
  }

  .header-area .main-nav .nav li:last-child a {
    width: auto !important;
  }
}

/* ===== MAIN BANNER ===== */
.main-banner {
  /* background: linear-gradient(140deg, rgba(4, 8, 15, 0.96), rgba(255, 129, 19, 0.10)); */
  position: relative;
  overflow: hidden;
}

.main-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: radial-gradient(circle at 28% 42%, rgba(255, 129, 19, 0.12) 0%, transparent 48%),
              radial-gradient(circle at 72% 55%, rgba(255, 166, 48, 0.07) 0%, transparent 46%),
              radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.32) 0%, rgba(0, 0, 0, 0.55) 100%); */
  pointer-events: none;
  z-index: 1;
}

.main-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg, rgba(206, 207, 209, 0.62) 0%, rgba(2, 6, 14, 0.22) 40%, rgba(2, 6, 14, 0.608) 100%); */
  pointer-events: none;
  z-index: 2;
}


.video-overlay {
  background: linear-gradient(180deg,
    rgba(243, 125, 0, 0.7) 0%,
    rgba(212, 206, 199, 0.07) 45%,
    rgba(50, 40, 17, 0.86) 100%);
  position: relative;
  z-index: 3;
}

.caption h2 {
  font-size: 4.6rem;
  font-weight: 900;
  letter-spacing: -1px;
  margin: 20px 0;
  background: linear-gradient(135deg, #ffffff 0%, #fffdfb 45%, #ffffff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 14px rgba(255, 154, 31, 0.45), 0 0 34px rgba(29, 233, 255, 0.22);
  filter: drop-shadow(0 0 16px rgba(255, 154, 31, 0.2));
  animation: slideInDown 0.8s cubic-bezier(0.34, 1.56, 0.64, 1), hero-neon-pulse 2.3s ease-in-out infinite;
}

.caption h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #ffffff, #f3f3f3 55%, #ffffff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes hero-neon-pulse {
  0%,
  100% {
    text-shadow: 0 0 14px rgba(255, 154, 31, 0.45), 0 0 34px rgba(226, 252, 255, 0.79);
  }
  50% {
    text-shadow: 0 0 22px rgba(255, 154, 31, 0.75), 0 0 46px rgba(217, 251, 255, 0.447);
  }
}

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

/* ===== BUTTONS ===== */
.btn-modern-aktif {
  background: linear-gradient(135deg, #ff7f00 0%, #ffab2d 55%, #ffd45b 100%) !important;
  padding: 16px 42px !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  border: 1px solid rgba(255, 255, 255, 0.45) !important;
  color: white !important;
  box-shadow: 0 0 18px rgba(255, 127, 0, 0.7), 0 0 36px rgba(255, 212, 91, 0.45), 0 10px 28px rgba(0, 0, 0, 0.3) !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  letter-spacing: 1px !important;
  overflow: visible !important;
  position: relative;
}

.btn-modern-aktif::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-modern-aktif:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 0 24px rgba(255, 127, 0, 0.95), 0 0 52px rgba(255, 212, 91, 0.65), 0 14px 30px rgba(0, 0, 0, 0.34) !important;
  border-color: rgba(255, 255, 255, 0.3) !important;
}

.btn-modern-aktif i {
  margin-right: 10px;
  animation: bounce 0.6s infinite;
}

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

/* ===== SECTIONS BACKGROUND ===== */
body {
  background: #f5a623 !important;
  color: var(--text-light) !important;
}

section {
  position: relative;
  padding: 80px 0;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: #f5a623;
  opacity: 0.3;
}

/* Solid background override (no gradients) */
.about-section,
.event-schedule-section,
.registrasi-section,
.desain-body,
.route-map-section,
.faq {
  background: #f5a623 !important;
  --text-light: #1f2937;
  --text-muted: #475569;
  --primary-color: #b45309;
  --accent-color: #c2410c;
  color: var(--text-light) !important;
}

/* Improve readability and modern contrast on solid orange background */
.about-text h2,
.faq-title,
.route-map-section h1,
.registrasi-card h3,
.card-custom .sub-title,
.schedule-item h4 {
  color: #111827 !important;
}

.about-text p,
.schedule-item p,
.faq-answer,
.faq-answer li,
.note,
.registrasi-card ul li,
.table-dark td {
  color: #ffffff !important;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: linear-gradient(135deg,
    rgba(15, 20, 25, 0.8),
    rgba(26, 31, 46, 0.5));
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h4 {
  color: var(--primary-color);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.about-text h2 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 30px;
  line-height: 1.2;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 20px;
}

.about-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(255, 129, 19, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image img:hover {
  transform: scale(1.04);
  box-shadow: 0 30px 80px rgba(255, 129, 19, 0.35);
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-text h2 {
    font-size: 2.5rem;
  }
}

/* ===== EVENT SCHEDULE SECTION ===== */
.event-schedule-section {
  background: linear-gradient(135deg,
    rgba(26, 31, 46, 0.8),
    rgba(15, 20, 25, 0.6));
}

.schedule-item {
  background: rgba(97, 95, 95, 0.556);
  border: 1px solid rgba(180, 83, 9, 0.25);
  border-radius: 15px;
  padding: 24px;
  margin-bottom: 20px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(17, 24, 39, 0.12);
}

.schedule-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.schedule-item:hover {
  background: rgba(125, 123, 123, 0.471);
  border-color: rgba(180, 83, 9, 0.4);
  transform: translateX(8px);
  box-shadow: 0 18px 40px rgba(17, 24, 39, 0.16);
}

.schedule-item:hover::before {
  opacity: 1;
}

.schedule-item h4 {
  color: #fff !important;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.schedule-item p {
  color: #fff !important;
  font-size: 1rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.schedule-item i {
  color: #c2410c !important;
  font-size: 1.1rem;
}

.schedule-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(255, 129, 19, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.schedule-image img:hover {
  transform: scale(1.04) rotate(-1deg);
  box-shadow: 0 30px 80px rgba(255, 129, 19, 0.35);
}

/* ===== REGISTRATION SECTION ===== */
.registrasi-section {
  background: linear-gradient(135deg,
    rgba(15, 20, 25, 0.9),
    rgba(26, 31, 46, 0.7));
}

.registrasi-card {
  background: linear-gradient(135deg,
    rgba(26, 31, 46, 0.9),
    rgba(15, 20, 25, 0.8));
  border: 1px solid rgba(255, 129, 19, 0.2);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.registrasi-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 129, 19, 0.1), transparent);
  transition: all 0.6s ease;
}

.registrasi-card:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 129, 19, 0.4);
  box-shadow: 0 28px 60px rgba(255, 129, 19, 0.2);
}

.registrasi-card:hover::before {
  top: -30%;
  right: -30%;
}

.registrasi-card h3 {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.registrasi-card h4 {
  color: var(--accent-color);
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 15px;
}

.registrasi-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.registrasi-card ul li {
  color: var(--text-muted);
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.registrasi-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-color);
  font-weight: 700;
}

.btn-daftar {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(255, 129, 19, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.btn-daftar:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(255, 129, 19, 0.45);
}

/* ===== DESIGN SECTION (Jersey & Medal) ===== */
.desain-body {
  background: linear-gradient(135deg,
    rgba(26, 31, 46, 0.8),
    rgba(15, 20, 25, 0.6));
  color: #ffffff !important;
}

.card-custom {
  background: linear-gradient(135deg,
    rgba(26, 31, 46, 0.95),
    rgba(15, 20, 25, 0.85));
  border: 1px solid rgba(255, 129, 19, 0.2);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
  color: #ffffff !important;
}

.card-custom:hover {
  border-color: rgba(255, 129, 19, 0.4);
  box-shadow: 0 24px 60px rgba(255, 129, 19, 0.15);
}

.card-custom .sub-title {
  color: #ffffff !important;
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.jersey-images img {
  border-radius: 15px;
  box-shadow: 0 16px 40px rgba(255, 129, 19, 0.2);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.jersey-images img:hover {
  transform: scale(1.05);
  box-shadow: 0 24px 60px rgba(255, 129, 19, 0.3);
}

.table-dark {
  background: rgba(15, 20, 25, 0.6) !important;
  border-color: rgba(255, 129, 19, 0.2) !important;
}

.table-dark th {
  background: linear-gradient(135deg, rgba(255, 129, 19, 0.2), rgba(255, 166, 48, 0.1));
  color: #ffffff !important;
  font-weight: 700;
  border-color: rgba(255, 129, 19, 0.2) !important;
}

.table-dark td {
  color: #ffffff !important;
  border-color: rgba(255, 129, 19, 0.15) !important;
}

.medal-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.medal-gallery img {
  max-width: 300px;
  border-radius: 15px;
  /* box-shadow: 0 16px 40px rgba(255, 129, 19, 0.2); */
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.medal-gallery img:hover {
  transform: scale(1.08) rotate(2deg);
  /* box-shadow: 0 24px 60px rgba(255, 129, 19, 0.3); */
}

.note {
  color: var(--text-muted);
  font-size: 0.95rem;
  font-style: italic;
  margin-top: 20px;
  padding-left: 20px;
  border-left: 3px solid var(--primary-color);
}

/* ===== ROUTE SECTION ===== */
.route-map-section {
  background: linear-gradient(135deg,
    rgba(15, 20, 25, 0.95),
    rgba(26, 31, 46, 0.8));
  text-align: center;
  padding: 80px 20px;
}

.route-map-section h1 {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 50px;
}

/* ===== FAQ SECTION ===== */
.faq {
  background: linear-gradient(135deg,
    rgba(26, 31, 46, 0.8),
    rgba(15, 20, 25, 0.6));
}

.faq-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 50px;
  color: #ffffff !important;
}

.faq-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: linear-gradient(135deg,
    rgba(26, 31, 46, 0.95),
    rgba(15, 20, 25, 0.85));
  border: 1px solid rgba(255, 129, 19, 0.2);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
  border-color: rgba(255, 129, 19, 0.4);
  box-shadow: 0 12px 32px rgba(255, 129, 19, 0.15);
}

.faq-question {
  width: 100%;
  padding: 24px;
  background: linear-gradient(135deg,
    rgba(255, 129, 19, 0.08),
    rgba(255, 166, 48, 0.05));
  border: none;
  color: #ffffff !important;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: linear-gradient(135deg,
    rgba(255, 129, 19, 0.12),
    rgba(255, 166, 48, 0.08));
  color: #ffffff !important;
}

.faq-question::after {
  content: '▼';
  transition: transform 0.3s ease;
  color: #ffffff !important;
  font-size: 0.9rem;
}

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

.faq-answer {
  padding: 24px;
  color: #ffffff !important;
  display: none;
  line-height: 1.8;
}

.faq-answer ol {
  margin-left: 20px;
  margin-top: 10px;
}

.faq-answer li {
  margin-bottom: 12px;
  color: #ffffff !important;
}

.faq-item.active .faq-answer {
  display: block;
  animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* AOS Animation Enhancement */
[data-aos] {
  opacity: 0;
}

[data-aos].aos-animate {
  animation: fadeInUp 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@media (max-width: 768px) {
  section {
    padding: 50px 0;
  }

  .main-banner .caption {
    width: 94%;
    max-width: 94%;
    padding: 0 0.75rem;
  }

  .main-banner .caption h2 {
    font-size: clamp(2rem, 20vw, 2.9rem);
    line-height: 1.08;
    letter-spacing: 0;
    max-width: 100%;
    text-wrap: balance;
  }

  .main-banner .caption h2 em {
    display: block;
    font-style: normal;
  }

  .about-text h2,
  .faq-title,
  .route-map-section h1 {
    font-size: 2rem;
  }

  .registrasi-card,
  .card-custom {
    padding: 24px;
  }
}

@media (max-width: 420px) {
  .main-banner .caption {
    width: 96%;
    max-width: 96%;
    padding: 0 0.5rem;
  }

  .main-banner .caption h2 {
    font-size: clamp(1.35rem, 8vw, 1.85rem);
    line-height: 1.08;
    letter-spacing: 0;
  }
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(26, 31, 46, 0.5);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary-color), var(--accent-color));
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-color);
}
