/* ========================================
   Rev4Trev — Recovery Support Website
   ======================================== */

:root {
  --primary: #e63946;
  --primary-dark: #c1121f;
  --primary-light: #fca5ab;
  --dark: #0d1117;
  --dark-lighter: #161b22;
  --dark-card: #1c2128;
  --gray-900: #1a1d23;
  --gray-800: #21262d;
  --gray-700: #30363d;
  --gray-600: #484f58;
  --gray-400: #8b949e;
  --gray-300: #b1bac4;
  --gray-100: #f0f6fc;
  --white: #ffffff;
  --accent: #f39c12;
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Oswald", sans-serif;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.5);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-primary);
  background-color: var(--dark);
  color: var(--gray-300);
  line-height: 1.7;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 17, 23, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(48, 54, 61, 0.5);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 17, 23, 0.95);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.logo-hash {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 8px;
}

.nav-link {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.nav-donate-btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--primary);
  color: var(--white) !important;
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  margin-left: 8px;
}

.nav-donate-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.bar {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--white);
  margin: 6px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(
      ellipse at 20% 50%,
      rgba(230, 57, 70, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse at 80% 20%,
      rgba(243, 156, 18, 0.08) 0%,
      transparent 50%
    ),
    linear-gradient(180deg, var(--dark) 0%, var(--dark-lighter) 100%);
  padding: 120px 24px 80px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(230, 57, 70, 0.15);
  border: 1px solid rgba(230, 57, 70, 0.3);
  border-radius: 50px;
  color: var(--primary-light);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.hero-hash {
  color: var(--primary);
}

.hero-subtitle {
  font-size: 1.3rem;
  color: var(--gray-300);
  font-weight: 400;
  margin-bottom: 24px;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 16px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  height: 48px;
  background: var(--gray-700);
}

.hero-stats-note {
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.hero-stats-note a {
  color: var(--primary-light);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: var(--transition);
}

.hero-stats-note a:hover {
  color: var(--primary);
}

.progress-bar-container {
  width: 100%;
  max-width: 400px;
  height: 8px;
  background: var(--gray-800);
  border-radius: 50px;
  margin: 0 auto 40px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 50px;
  transition: width 1.5s ease-out;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(230, 57, 70, 0.5);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid var(--gray-700);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--gray-600);
  transform: translateY(-2px);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray-600);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: float 3s ease-in-out infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gray-600), transparent);
}

@keyframes float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

/* ========================================
   Section Styles
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 4px 16px;
  background: rgba(230, 57, 70, 0.1);
  border: 1px solid rgba(230, 57, 70, 0.2);
  border-radius: 50px;
  color: var(--primary);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ========================================
   Story Section
   ======================================== */
.story {
  padding: 120px 0;
  background: var(--dark-lighter);
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.story-card {
  background: var(--dark-card);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius);
  padding: 36px;
  transition: var(--transition);
}

.story-card:hover {
  border-color: var(--gray-600);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.story-card-main {
  grid-column: 1 / -1;
  background: linear-gradient(
    135deg,
    var(--dark-card),
    rgba(230, 57, 70, 0.05)
  );
  border-color: rgba(230, 57, 70, 0.2);
}

.story-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 57, 70, 0.1);
  border-radius: var(--radius-sm);
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.story-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.story-card p {
  color: var(--gray-400);
  line-height: 1.8;
}

.story-card blockquote {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gray-300);
  border-left: 3px solid var(--primary);
  padding-left: 20px;
  margin: 8px 0;
  line-height: 1.8;
}

.quote-attribution {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-top: 12px;
}

/* ========================================
   Recovery Section
   ======================================== */
.recovery {
  padding: 120px 0;
  background: var(--dark);
}

.recovery-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}

.recovery-timeline {
  position: relative;
  padding-left: 40px;
}

.recovery-timeline::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(
    to bottom,
    var(--primary),
    var(--primary-light),
    var(--accent)
  );
}

.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark-card);
  border: 2px solid var(--primary);
  border-radius: 50%;
  color: var(--primary);
  font-size: 1rem;
  position: relative;
  left: -40px;
  margin-right: -40px;
  z-index: 1;
}

.timeline-text h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.timeline-text p {
  color: var(--gray-400);
  line-height: 1.7;
  font-size: 0.95rem;
}

.timeline-text em {
  color: var(--gray-300);
}

.recovery-quote {
  background: linear-gradient(
    135deg,
    rgba(230, 57, 70, 0.08),
    rgba(243, 156, 18, 0.05)
  );
  border: 1px solid rgba(230, 57, 70, 0.15);
  border-radius: var(--radius);
  padding: 36px;
  position: sticky;
  top: 120px;
}

.recovery-quote blockquote {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--gray-300);
  border-left: 3px solid var(--primary);
  padding-left: 20px;
  margin: 0 0 16px;
  line-height: 1.8;
}

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

  .recovery-quote {
    position: static;
  }
}

/* ========================================
   Movement Section
   ======================================== */
.movement {
  padding: 120px 0;
  background: var(--dark);
}

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

.movement-lead {
  font-size: 1.25rem;
  color: var(--gray-300);
  margin-bottom: 16px;
}

.movement-text p {
  color: var(--gray-400);
  margin-bottom: 16px;
  line-height: 1.8;
}

.movement-actions {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.action-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.action-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 57, 70, 0.1);
  border-radius: var(--radius-sm);
  color: var(--primary);
  font-size: 1.1rem;
}

.action-item h4 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 4px;
}

.action-item p {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 0;
}

.movement-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px;
  background: linear-gradient(
    135deg,
    rgba(230, 57, 70, 0.08),
    rgba(243, 156, 18, 0.05)
  );
  border: 1px solid rgba(230, 57, 70, 0.15);
  border-radius: var(--radius);
}

.hashtag-display {
  display: flex;
  align-items: baseline;
  margin-bottom: 24px;
}

.hashtag-symbol {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.hashtag-text {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
}

.movement-tagline {
  font-size: 1.1rem;
  color: var(--gray-400);
  font-style: italic;
}

/* ========================================
   Help Section
   ======================================== */
.help {
  padding: 120px 0;
  background: var(--dark-lighter);
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.help-card {
  display: flex;
  flex-direction: column;
  background: var(--dark-card);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius);
  padding: 36px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.help-card:hover {
  border-color: var(--gray-600);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.help-card-featured {
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.1), var(--dark-card));
  border-color: rgba(230, 57, 70, 0.3);
  grid-column: 1 / -1;
}

.help-card-featured:hover {
  border-color: rgba(230, 57, 70, 0.5);
  box-shadow: 0 10px 30px rgba(230, 57, 70, 0.15);
}

.help-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 57, 70, 0.1);
  border-radius: var(--radius-sm);
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.help-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.help-card p {
  color: var(--gray-400);
  line-height: 1.8;
  flex-grow: 1;
}

.help-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 16px;
  transition: var(--transition);
}

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

/* ========================================
   Awareness Section
   ======================================== */
.awareness {
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.08), var(--dark));
  border-top: 1px solid rgba(230, 57, 70, 0.1);
  border-bottom: 1px solid rgba(230, 57, 70, 0.1);
}

.awareness-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.awareness-icon {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 24px;
}

.awareness-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.awareness-content p {
  font-size: 1.1rem;
  color: var(--gray-400);
  line-height: 1.8;
}

/* ========================================
   News Section
   ======================================== */
.news {
  padding: 120px 0;
  background: var(--dark);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  background: var(--dark-card);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius);
  padding: 36px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  border-color: var(--gray-600);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.news-source {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.news-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.4;
}

.news-card p {
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.7;
  flex-grow: 1;
}

.news-date {
  font-size: 0.8rem;
  color: var(--gray-600);
  margin-top: 16px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
  padding: 80px 0 40px;
  background: var(--gray-900);
  border-top: 1px solid var(--gray-700);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.95rem;
  max-width: 360px;
}

.footer-links h4,
.footer-social h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
}

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

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gray-800);
  border: 1px solid var(--gray-700);
  border-radius: var(--radius-sm);
  color: var(--gray-400);
  font-size: 1.1rem;
  text-decoration: none;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--gray-700);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--gray-600);
}

.footer-disclaimer {
  margin-top: 8px;
  font-size: 0.8rem !important;
  font-style: italic;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 968px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--dark-lighter);
    border-left: 1px solid var(--gray-700);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    transition: right 0.3s ease;
    padding: 24px;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 12px 24px;
  }

  .nav-donate-btn {
    margin-left: 0;
    margin-top: 8px;
  }

  .hamburger {
    display: block;
    z-index: 1001;
  }

  .hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .hamburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .story-grid {
    grid-template-columns: 1fr;
  }

  .story-card-main {
    grid-column: auto;
  }

  .movement-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .movement-visual {
    padding: 40px;
  }

  .help-grid {
    grid-template-columns: 1fr;
  }

  .help-card-featured {
    grid-column: auto;
  }

  .news-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 100px 16px 60px;
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-stats {
    gap: 20px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    justify-content: center;
    max-width: 300px;
  }

  .hashtag-symbol,
  .hashtag-text {
    font-size: 2.8rem;
  }

  .story-card,
  .help-card,
  .news-card {
    padding: 28px;
  }

  .hero-scroll-indicator {
    display: none;
  }
}

/* ========================================
   Animations
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
  }
  50% {
    box-shadow: 0 4px 25px rgba(230, 57, 70, 0.6);
  }
}

.btn-primary {
  animation: pulse 3s ease-in-out infinite;
}

.btn-primary:hover {
  animation: none;
}

.nav-link.active-link {
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}
