/* ===========================
   CSS VARIABLES & RESET
   =========================== */
:root {
  --bg:          #151820;
  --surface:     #21242C;
  --surface-2:   #2A2E3A;
  --accent:      #FA0A8C;
  --accent-hover:#e0077c;
  --discord:     #5865F2;
  --light-pink:  #F597E8;
  --purple:      #7661F9;
  --text:        #FFFFFF;
  --text-sec:    rgba(255,255,255,0.65);
  --text-muted:  rgba(255,255,255,0.4);
  --border:      rgba(255,255,255,0.08);
  --radius:      12px;
  --radius-lg:   20px;
  --shadow:      0 4px 24px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 40px rgba(250,10,140,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, svg { display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ===========================
   UTILITY
   =========================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 17px;
  color: var(--text-sec);
  line-height: 1.7;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(250,10,140,0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.btn--ghost:hover {
  background: var(--surface);
  border-color: rgba(255,255,255,0.2);
  transform: translateY(-1px);
}

.btn--lg {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: 14px;
}

/* ===========================
   NAV
   =========================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(21,24,32,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
}

.nav__logo {
  flex-shrink: 0;
}

.nav__logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: linear-gradient(to right, var(--accent), var(--light-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

.nav__links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-sec);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--text); }

.nav__cta { margin-left: 16px; padding: 10px 20px; font-size: 14px; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav__mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--border);
}
.nav__mobile a {
  padding: 10px 0;
  font-size: 15px;
  color: var(--text-sec);
  border-bottom: 1px solid var(--border);
}
.nav__mobile .btn { margin-top: 12px; }
.nav__mobile.is-open { display: flex; }

/* ===========================
   HERO
   =========================== */
.hero {
  position: relative;
  padding: 160px 0 100px;
  overflow: hidden;
  text-align: center;
}

.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(250,10,140,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(250,10,140,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.hero__orbs { position: absolute; inset: 0; pointer-events: none; }

.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.25;
}
.hero__orb--1 {
  width: 500px; height: 500px;
  background: var(--accent);
  top: -200px; left: -150px;
}
.hero__orb--2 {
  width: 400px; height: 400px;
  background: var(--purple);
  top: 0; right: -100px;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: var(--discord);
  bottom: -100px; left: 50%;
  transform: translateX(-50%);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(250,10,140,0.12);
  border: 1px solid rgba(250,10,140,0.25);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--light-pink);
  margin-bottom: 28px;
}

.hero__badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

.hero__title {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 800px;
}

.hero__title-accent {
  background: linear-gradient(to right, var(--accent), var(--light-pink), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--text-sec);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 20px 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  flex-wrap: wrap;
  justify-content: center;
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hero__stat-value {
  font-size: 24px;
  font-weight: 800;
  color: var(--text);
}

.hero__stat-label {
  font-size: 12px;
  color: var(--text-sec);
  white-space: nowrap;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* ===========================
   SOCIAL PROOF
   =========================== */
.social-proof {
  padding: 16px 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.social-proof__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-proof__label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  white-space: nowrap;
}

.social-proof__items {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-proof__items span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-sec);
}

.social-proof__dot {
  width: 4px !important;
  height: 4px !important;
  background: var(--text-muted) !important;
  border-radius: 50%;
}

/* ===========================
   FEATURES
   =========================== */
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(250,10,140,0.3);
  box-shadow: 0 12px 40px rgba(250,10,140,0.12);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card__icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}

.feature-card__title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.feature-card__desc {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.65;
  margin-bottom: 20px;
}

.feature-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  transition: color 0.2s;
}
.feature-card__link:hover { color: var(--light-pink); }

/* ===========================
   CHARACTERS
   =========================== */
.characters {
  background: linear-gradient(to bottom, var(--bg), rgba(33,36,44,0.4), var(--bg));
}

.characters__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.character-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.character-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(250,10,140,0.2);
}

.character-card__visual {
  position: relative;
  aspect-ratio: 9 / 16;
  max-height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
}

.character-card__avatar {
  position: relative;
  z-index: 1;
  width: 120px;
  height: 120px;
}

.character-card__avatar svg {
  width: 100%;
  height: 100%;
}

.character-card__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, var(--glow, #FA0A8C) 0%, transparent 65%);
  opacity: 0.25;
  transition: opacity 0.3s;
}

.character-card:hover .character-card__glow {
  opacity: 0.45;
}

.character-card__info {
  padding: 20px;
}

.character-card__name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 2px;
}

.character-card__role {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.character-card__desc {
  font-size: 13px;
  color: var(--text-sec);
  line-height: 1.5;
  margin-bottom: 16px;
}

.character-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px;
  background: rgba(250,10,140,0.1);
  border: 1px solid rgba(250,10,140,0.2);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  transition: all 0.2s;
}

.character-card__btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.character-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.characters__subsection {
  margin-bottom: 48px;
}

.characters__subsection:last-child {
  margin-bottom: 0;
}

.characters__subsection-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.characters__subsection-title::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 20px;
  background: var(--accent);
  border-radius: 2px;
}

/* ===========================
   GALLERY
   =========================== */
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 200px);
  gap: 16px;
  margin-bottom: 40px;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
}

.gallery__item--tall {
  grid-row: span 2;
}

.gallery__item--wide {
  grid-column: span 2;
}

.gallery__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.3s;
}

.gallery__item:hover .gallery__img {
  transform: scale(1.04);
}

.gallery__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.gallery__item:hover .gallery__placeholder {
  transform: scale(1.04);
}

.gallery__placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.5;
}

.gallery__placeholder-inner span {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-sec);
}

.gallery__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  transform: translateY(100%);
  transition: transform 0.3s;
}

.gallery__item:hover .gallery__overlay {
  transform: translateY(0);
}

.gallery__overlay span {
  font-size: 13px;
  font-weight: 600;
  color: white;
}

.gallery__cta {
  text-align: center;
}

/* ===========================
   PRICING
   =========================== */
.pricing {
  background: linear-gradient(to bottom, rgba(33,36,44,0.3), var(--bg));
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: transform 0.25s ease;
}

.pricing-card:hover { transform: translateY(-4px); }

.pricing-card--popular {
  border-color: var(--accent);
  box-shadow: 0 0 40px rgba(250,10,140,0.15);
}

.pricing-card--plus {
  border-color: var(--purple);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-card__header {
  margin-bottom: 28px;
}

.pricing-card__plan {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.pricing-card__amount {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
}

.pricing-card__period {
  font-size: 15px;
  color: var(--text-sec);
}

.pricing-card__tagline {
  font-size: 13px;
  color: var(--text-sec);
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-sec);
}

.pricing-check {
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card--plus .pricing-check { color: var(--purple); }

.pricing-card__btn {
  width: 100%;
  justify-content: center;
}

/* ===========================
   FAQ
   =========================== */
.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.faq__item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq__item.is-open {
  border-color: rgba(250,10,140,0.3);
}

.faq__question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}

.faq__question:hover { color: var(--accent); }

.faq__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid var(--border);
  position: relative;
  transition: all 0.3s;
}

.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--text-sec);
  border-radius: 2px;
  transition: all 0.3s;
}

.faq__icon::before {
  width: 10px; height: 2px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faq__icon::after {
  width: 2px; height: 10px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.faq__item.is-open .faq__icon {
  background: rgba(250,10,140,0.15);
  border-color: rgba(250,10,140,0.3);
}

.faq__item.is-open .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s;
}

.faq__item.is-open .faq__answer {
  max-height: 400px;
}

.faq__answer p {
  padding: 0 24px 20px;
  font-size: 15px;
  color: var(--text-sec);
  line-height: 1.7;
}

/* ===========================
   FINAL CTA
   =========================== */
.cta-section {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(250,10,140,0.15) 0%, transparent 65%);
}

.cta-section__inner {
  position: relative;
  z-index: 1;
}

.cta-section__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-section__desc {
  font-size: 18px;
  color: var(--text-sec);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.cta-section__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-section__note {
  font-size: 13px;
  color: var(--text-muted);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  padding: 64px 24px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__logo {
  display: inline-block;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.05em;
  background: linear-gradient(to right, var(--accent), var(--light-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.footer__tagline {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.5;
  margin-bottom: 24px;
}

.footer__socials {
  display: flex;
  gap: 12px;
}

.footer__social {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-sec);
  transition: all 0.2s;
}

.footer__social:hover {
  background: rgba(250,10,140,0.1);
  border-color: rgba(250,10,140,0.3);
  color: var(--accent);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer__col a {
  font-size: 14px;
  color: var(--text-sec);
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--accent); }

.footer__bottom {
  border-top: 1px solid var(--border);
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: 20px;
}

.footer__legal a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.2s;
}
.footer__legal a:hover { color: var(--text-sec); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
  .characters__grid { grid-template-columns: repeat(2, 1fr); }
  .pricing__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero { padding: 120px 0 72px; }
  .hero__stats { gap: 20px; padding: 16px 24px; }
  .hero__stat-divider { height: 30px; }

  .features__grid { grid-template-columns: 1fr; }
  .characters__grid { grid-template-columns: repeat(2, 1fr); }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery__item--tall { grid-row: auto; }
  .gallery__item--wide { grid-column: auto; }

  .footer__links { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .characters__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: center; }
  .cta-section__actions { flex-direction: column; align-items: center; }
  .footer__links { grid-template-columns: 1fr; }
  .hero__stats { flex-direction: column; gap: 12px; }
  .hero__stat-divider { width: 40px; height: 1px; }
}

/* Language links */
.footer__langs {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 10px;
}
.footer__langs a {
  font-size: 12px;
  color: var(--text-sec);
  text-decoration: none;
  opacity: 0.7;
  transition: color 0.2s, opacity 0.2s;
}
.footer__langs a:hover {
  color: var(--accent);
  opacity: 1;
}
