@import url("https://fonts.googleapis.com/css2?family=IM+Fell+English+SC&family=Inter:wght@300;400;600;700&display=swap");

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --bg: #0a0a0b;
  --panel: #111114;
  --muted: #a6a6a9;
  --text: #f3f3f3;
  --accent: #8a0f12;
  --accent-2: #e0b64a;
  --border: rgba(255, 255, 255, 0.1);
  --glow: 0 0 30px rgba(138, 15, 18, 0.35);
}

body {
  margin: 0;
  background: radial-gradient(circle at top, #1a1a1f, var(--bg));
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.6;
  letter-spacing: 0.2px;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.12'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
  z-index: 1;
}

.parallax-bg {
  position: fixed;
  inset: -10%;
  width: 120%;
  height: 120%;
  z-index: 0;
  pointer-events: none;
  background-image: 
    linear-gradient(180deg, rgba(10, 10, 11, 0.7) 0%, rgba(10, 10, 11, 0.85) 50%, rgba(10, 10, 11, 0.95) 100%),
    url('b.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.4;
  filter: grayscale(0.3) contrast(1.1);
  will-change: transform;
}

.hero {
  position: relative;
  padding: 64px 8vw 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  background: linear-gradient(135deg, rgba(138, 15, 18, 0.2), transparent 70%);
  border-bottom: 1px solid var(--border);
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
  }
}

.hero__content {
  max-width: 720px;
  position: relative;
  z-index: 2;
}

.hero__tag {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 4px;
  color: var(--accent-2);
  margin-bottom: 16px;
}

.hero__title {
  font-family: "IM Fell English SC", serif;
  font-size: clamp(28px, 4vw, 42px);
  margin: 0 0 16px;
  line-height: 1.2;
  text-shadow: var(--glow);
}

.hero__subtitle {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.hero__actions {
  margin-top: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__status {
  margin-top: 32px;
  padding: 24px;
  background: rgba(17, 17, 20, 0.6);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.hero__status h2 {
  font-family: "IM Fell English SC", serif;
  font-size: clamp(20px, 2.5vw, 24px);
  margin: 0 0 12px;
  color: var(--accent-2);
}

.hero__status p {
  margin: 0 0 16px;
  font-size: 15px;
  line-height: 1.6;
}

.panel__note {
  margin-top: 12px;
  padding: 12px;
  background: rgba(224, 182, 74, 0.05);
  border-left: 2px solid var(--accent-2);
}

.panel__note p {
  margin: 0;
  font-size: 14px;
}

.brand {
  font-size: 20px;
  margin-bottom: 8px;
}

.brand__caption {
  font-size: 12px;
  opacity: 0.7;
}

.hero__player {
  position: relative;
  z-index: 2;
}

.hero__player-wrapper {
  position: relative;
  background: #000;
  padding: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--glow);
  border-radius: 8px;
  margin-bottom: 20px;
}

.hero__video {
  position: relative;
  transition: opacity 0.3s ease;
}

.hero__video video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.preloader {
  position: absolute;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.9);
  z-index: 10;
  border-radius: 4px;
}

.preloader__brand {
  font-size: 48px;
  animation: spin 2s linear infinite;
  margin-bottom: 16px;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.preloader__text {
  color: var(--accent-2);
  font-size: 14px;
  letter-spacing: 2px;
}

.video-controls {
  position: absolute;
  bottom: 80px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.hero__player-wrapper:hover .video-controls {
  opacity: 1;
  pointer-events: auto;
}

.video-control {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.video-control:hover {
  background: rgba(138, 15, 18, 0.9);
  border-color: var(--accent);
  transform: scale(1.1);
}

.video-control:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.hero__support {
  padding: 40px 24px;
  text-align: center;
  background: rgba(17, 17, 20, 0.8);
  border-radius: 4px;
}

.hero__support-thanks {
  margin-bottom: 32px;
  padding: 20px 24px;
  background: linear-gradient(135deg, rgba(224, 182, 74, 0.15), rgba(138, 15, 18, 0.15));
  border: 1px solid rgba(224, 182, 74, 0.3);
  border-radius: 8px;
}

.hero__support-thanks p {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-2);
  text-shadow: var(--glow);
}

.hero__support-info {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(224, 182, 74, 0.2);
}

.hero__support-info p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

.hero__support-info p:last-child {
  margin-bottom: 0;
}

.hero__support-next {
  margin-bottom: 32px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(138, 15, 18, 0.25), rgba(138, 15, 18, 0.15));
  border: 2px solid var(--accent);
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(138, 15, 18, 0.4), inset 0 0 30px rgba(138, 15, 18, 0.1);
}

.hero__support-next h3 {
  font-family: "IM Fell English SC", serif;
  font-size: clamp(22px, 3vw, 28px);
  margin: 0 0 16px;
  color: var(--accent-2);
  text-shadow: 0 0 15px rgba(224, 182, 74, 0.6);
  text-align: center;
}

.hero__support-next p {
  margin: 0;
  color: #f6e3e3;
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
  font-weight: 500;
}

.hero__support-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__player-info {
  text-align: center;
}

.hero__player-title {
  font-family: "IM Fell English SC", serif;
  font-size: clamp(20px, 2.5vw, 24px);
  margin: 0 0 8px;
  color: var(--accent-2);
}

.hero__player-desc {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.hero__switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  justify-content: center;
}

.episode__btn {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(10, 10, 12, 0.8);
  color: var(--text);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  position: relative;
}

.episode__btn:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
  transform: translateY(-2px);
}

.episode__btn.is-active {
  border-color: var(--accent);
  background: rgba(138, 15, 18, 0.35);
  box-shadow: var(--glow);
}

.episode__btn.is-watched::after {
  content: "✓";
  position: absolute;
  top: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  background: var(--accent-2);
  border-radius: 50%;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}

.hero__hint {
  margin: 20px 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

.progress-tracker {
  margin-top: 24px;
  padding: 20px;
  background: rgba(17, 17, 20, 0.6);
  border: 1px solid var(--border);
  border-radius: 8px;
}

.progress-tracker__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 12px;
}

.progress-tracker__bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.progress-tracker__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 4px;
  transition: width 0.5s ease;
  width: 0;
}

.progress-tracker__text {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
}

.lore {
  padding: 48px 8vw;
  background: linear-gradient(120deg, rgba(138, 15, 18, 0.1), transparent 70%);
  border-bottom: 1px solid var(--border);
}

.lore__content {
  max-width: 780px;
}

.lore__sigil {
  margin-top: 20px;
  padding: 14px 18px;
  border: 1px dashed rgba(224, 182, 74, 0.5);
  color: var(--accent-2);
  font-size: 14px;
  letter-spacing: 1px;
}

.lore__quote {
  margin-top: 32px;
  font-family: "IM Fell English SC", serif;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--accent);
  text-align: center;
  letter-spacing: 2px;
  text-shadow: var(--glow);
}

.chapters {
  padding: 48px 8vw 32px;
}

.chapters h2 {
  font-family: "IM Fell English SC", serif;
  font-size: clamp(24px, 3.5vw, 32px);
}

.chapters__grid {
  margin-top: 24px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.chapter {
  padding: 20px 22px;
  border: 1px solid var(--border);
  background: rgba(10, 10, 12, 0.6);
  transition: all 0.3s ease;
}

.chapter:hover {
  transform: translateY(-4px);
  border-color: var(--accent-2);
  box-shadow: 0 4px 20px rgba(138, 15, 18, 0.2);
}

.chapter h3 {
  margin-top: 0;
  font-family: "IM Fell English SC", serif;
}

.chapter__quote {
  margin-top: 16px;
  font-style: italic;
  color: var(--muted);
  border-left: 2px solid var(--accent);
  padding-left: 12px;
}

.link {
  color: var(--accent-2);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.link:hover {
  border-bottom-color: var(--accent-2);
}

.donate-section {
  padding: 64px 8vw;
  background: linear-gradient(135deg, rgba(138, 15, 18, 0.15), rgba(224, 182, 74, 0.05));
  border: 1px solid var(--border);
  margin: 0 8vw;
  border-radius: 12px;
  box-shadow: var(--glow), 0 8px 32px rgba(0, 0, 0, 0.3);
}

.donate-section__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.donate-section h2 {
  font-family: "IM Fell English SC", serif;
  font-size: clamp(28px, 4vw, 36px);
  margin: 0 0 16px;
  color: var(--accent-2);
  text-shadow: var(--glow);
}

.donate-section p {
  margin: 0 0 32px;
  color: var(--muted);
  font-size: 16px;
}

.donate-progress {
  margin-bottom: 32px;
}

.donate-progress__bar {
  height: 16px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 12px;
}

.donate-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 8px;
  transition: width 0.5s ease;
  box-shadow: 0 0 20px rgba(224, 182, 74, 0.6);
}

.donate-progress__text {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-2);
}

.donate-section__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cards {
  padding: 40px 8vw 96px;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.card {
  padding: 36px 32px;
  background: linear-gradient(135deg, rgba(17, 17, 20, 0.9), rgba(10, 10, 12, 0.95));
  border: 1px solid var(--border);
  border-radius: 16px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.03) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.card:hover::before {
  opacity: 1;
}

.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6);
}

.card--telegram {
  background: linear-gradient(135deg, rgba(42, 171, 238, 0.08), rgba(17, 17, 20, 0.95));
  border-color: rgba(42, 171, 238, 0.2);
}

.card--telegram:hover {
  border-color: rgba(42, 171, 238, 0.5);
  box-shadow: 0 12px 40px rgba(42, 171, 238, 0.25);
}

.card--yandex {
  background: linear-gradient(135deg, rgba(255, 51, 51, 0.06), rgba(17, 17, 20, 0.95));
  border-color: rgba(255, 51, 51, 0.2);
}

.card--yandex:hover {
  border-color: rgba(255, 51, 51, 0.5);
  box-shadow: 0 12px 40px rgba(255, 51, 51, 0.2);
}

.card__brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  transition: all 0.4s ease;
}

.card--telegram .card__icon {
  background: rgba(42, 171, 238, 0.15);
  color: #2AABEE;
}

.card--yandex .card__icon {
  background: rgba(255, 51, 51, 0.15);
  color: #FF3333;
}

.card:hover .card__icon {
  transform: scale(1.1) rotate(5deg);
}

.card__badge {
  padding: 6px 14px;
  background: rgba(224, 182, 74, 0.15);
  border: 1px solid rgba(224, 182, 74, 0.3);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.card h3 {
  margin: 0 0 12px;
  font-family: "IM Fell English SC", serif;
  font-size: 26px;
  color: var(--text);
}

.card--telegram h3 {
  color: #2AABEE;
}

.card--yandex h3 {
  color: #FF3333;
}

.card p {
  margin: 0 0 24px;
  line-height: 1.6;
  color: var(--muted);
}

.card__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-align: center;
  justify-content: center;
}

.btn svg {
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(2px);
}

.btn--primary {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: var(--glow);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 24px rgba(138, 15, 18, 0.6);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

.btn--ghost:hover {
  border-color: var(--accent-2);
  color: var(--accent-2);
  transform: translateY(-2px);
}

.btn--telegram {
  background: #2AABEE;
  border-color: #2AABEE;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(42, 171, 238, 0.3);
}

.btn--telegram:hover {
  background: #1E96D3;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(42, 171, 238, 0.5);
}

.btn--yandex {
  background: #FF3333;
  border-color: #FF3333;
  color: #fff;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(255, 51, 51, 0.3);
}

.btn--yandex:hover {
  background: #FF4444;
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 20px rgba(255, 51, 51, 0.5);
}

.btn--donate {
  font-size: 14px;
  padding: 12px 28px;
}

.btn--yoomoney {
  background: linear-gradient(135deg, #ffcc00, #ff9900);
  border-color: #ffcc00;
  color: #000;
  font-weight: 700;
}

.btn--yoomoney:hover {
  background: linear-gradient(135deg, #ffd633, #ffaa00);
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.4);
}

.footer {
  padding: 40px 8vw 56px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.next-episode-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.next-episode-overlay.is-visible {
  opacity: 1;
  visibility: visible;
}

.next-episode-overlay__content {
  max-width: 500px;
  padding: 48px 40px;
  background: rgba(17, 17, 20, 0.95);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), var(--glow);
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.next-episode-overlay__content h3 {
  font-family: "IM Fell English SC", serif;
  font-size: 28px;
  margin: 0 0 16px;
  color: var(--accent-2);
}

.next-episode-overlay__content p {
  margin: 0 0 24px;
  font-size: 18px;
  color: var(--text);
}

.next-episode-overlay__countdown {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 32px;
  font-family: "IM Fell English SC", serif;
}

.next-episode-overlay__countdown span {
  display: inline-block;
  animation: pulse 1s ease infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.next-episode-overlay__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal__content {
  position: relative;
  max-width: 480px;
  width: 90%;
  padding: 40px 32px;
  background: rgba(17, 17, 20, 0.95);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), var(--glow);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.modal.is-open .modal__content {
  transform: scale(1);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.modal__close:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
}

.modal__icon {
  margin: 0 auto 20px;
  color: var(--accent-2);
  width: 64px;
  height: 64px;
}

.modal__title {
  font-family: "IM Fell English SC", serif;
  font-size: clamp(24px, 3vw, 28px);
  margin: 0 0 16px;
  color: var(--accent-2);
}

.modal__text {
  margin: 0 0 32px;
  color: var(--muted);
  line-height: 1.6;
}

.modal__btn {
  display: inline-block;
}

@media (max-width: 900px) {
  .hero {
    padding: 48px 6vw 32px;
  }

  .donate-section {
    margin: 0 4vw;
    padding: 48px 6vw;
  }

  .cards {
    padding: 32px 6vw 64px;
    grid-template-columns: 1fr;
  }

  .modal__content {
    padding: 32px 24px;
  }

  .video-controls {
    bottom: 60px;
  }

  .video-control {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 600px) {
  .hero__switcher {
    gap: 8px;
  }

  .episode__btn {
    width: 38px;
    height: 38px;
  }

  .next-episode-overlay__content {
    padding: 32px 24px;
  }

  .next-episode-overlay__countdown {
    font-size: 36px;
  }
}

/* Mobile Performance Optimizations */
@media (max-width: 768px) {
  /* Disable parallax on mobile */
  .parallax-bg {
    position: fixed;
    transform: none !important;
    will-change: auto;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  /* Simplify backdrop filters */
  .hero__video-wrapper::before,
  .card::before,
  .next-episode-overlay__content {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  /* Reduce shadows */
  .card,
  .btn,
  .episode__btn {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }

  /* Simplify animations */
  * {
    animation-duration: 0.2s !important;
    transition-duration: 0.2s !important;
  }

  /* Optimize video rendering */
  .hero__video {
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }

  /* Reduce gradient complexity */
  .hero__support-thanks,
  .hero__support-next {
    background: rgba(138, 15, 18, 0.2);
  }
}
