:root {
  --dbf-red: #c1341c;
  --dbf-red-bright: #e8451f;
  --dbf-black: #0a0a0c;
  --dbf-black-2: #131316;
  --dbf-gray: #8a8a92;
  --dbf-white: #f2f0ec;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--dbf-black);
  color: var(--dbf-white);
  font-family: var(--font-body);
  font-weight: 500;
  overflow-x: hidden;
  position: relative;
}

/* ---------- ambient texture ---------- */

.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.scanline {
  position: fixed;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.12) 50%);
  background-size: 100% 4px;
  opacity: 0.25;
}

#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

/* ---------- nav ---------- */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: linear-gradient(to bottom, rgba(10,10,12,0.85), transparent);
  backdrop-filter: blur(2px);
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
  padding: 12px 6vw;
  background: rgba(10,10,12,0.94);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 22px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(193,52,28,0.25);
}

.nav-logo img {
  height: 42px;
  display: block;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}

.nav-links a {
  color: var(--dbf-white);
  text-decoration: none;
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: 1.05rem;
  position: relative;
  transition: color 0.2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--dbf-red-bright);
  transition: width 0.25s ease;
}

.nav-links a:hover {
  color: var(--dbf-red-bright);
}

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

/* ---------- hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center 40%, rgba(193,52,28,0.18), transparent 60%);
  z-index: -1;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 5vw;
}

.hero-logo {
  width: min(340px, 60vw);
  filter: drop-shadow(0 0 40px rgba(193,52,28,0.45));
  animation: float 5s ease-in-out infinite;
  margin-bottom: 1.2rem;
}

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

.glitch {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9vw, 6rem);
  letter-spacing: 0.05em;
  color: var(--dbf-white);
  position: relative;
  line-height: 1;
  text-shadow: 0 0 30px rgba(193,52,28,0.35);
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--dbf-black);
  overflow: hidden;
  clip-path: inset(0 0 0 0);
}

.glitch::before {
  color: var(--dbf-red-bright);
  animation: glitch-1 5s infinite linear alternate-reverse;
  z-index: -1;
}

.glitch::after {
  color: #2fd8e8;
  animation: glitch-2 5s infinite linear alternate-reverse;
  z-index: -1;
}

@keyframes glitch-1 {
  0% { clip-path: inset(20% 0 60% 0); transform: translate(-2px,-1px); }
  20% { clip-path: inset(60% 0 5% 0); transform: translate(2px,1px); }
  40% { clip-path: inset(10% 0 70% 0); transform: translate(-1px,2px); }
  60% { clip-path: inset(75% 0 5% 0); transform: translate(2px,-2px); }
  80% { clip-path: inset(30% 0 40% 0); transform: translate(-2px,1px); }
  100% { clip-path: inset(5% 0 80% 0); transform: translate(1px,-1px); }
}

@keyframes glitch-2 {
  0% { clip-path: inset(60% 0 10% 0); transform: translate(2px,1px); }
  20% { clip-path: inset(10% 0 65% 0); transform: translate(-2px,-1px); }
  40% { clip-path: inset(70% 0 5% 0); transform: translate(1px,-2px); }
  60% { clip-path: inset(15% 0 60% 0); transform: translate(-1px,2px); }
  80% { clip-path: inset(50% 0 20% 0); transform: translate(2px,-1px); }
  100% { clip-path: inset(80% 0 5% 0); transform: translate(-2px,1px); }
}

.hero-sub {
  margin-top: 1.1rem;
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--dbf-gray);
  letter-spacing: 0.02em;
}

.cta-btn {
  margin-top: 2.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  border: 2px solid var(--dbf-red-bright);
  color: var(--dbf-white);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  border-radius: 999px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn span {
  transition: transform 0.25s ease;
}

.cta-btn:hover {
  background: var(--dbf-red-bright);
  box-shadow: 0 0 30px rgba(232,69,31,0.55);
}

.cta-btn:hover span {
  transform: translateY(3px);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 42px;
  border: 2px solid var(--dbf-gray);
  border-radius: 14px;
}

.scroll-indicator span {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  border-radius: 2px;
  background: var(--dbf-red-bright);
  animation: scroll-dot 1.8s ease-in-out infinite;
}

@keyframes scroll-dot {
  0% { opacity: 1; top: 6px; }
  70% { opacity: 0; top: 22px; }
  100% { opacity: 0; top: 22px; }
}

/* ---------- sections ---------- */

main {
  position: relative;
  z-index: 1;
}

.section {
  padding: 8rem 6vw;
  position: relative;
}

/* Sprungziele unter der fixen Navbar (78px) landen lassen */
.section,
#home {
  scroll-margin-top: 95px;
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section-inner.center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: 0.04em;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.section-title.center {
  text-align: center;
}

.section-title span {
  color: var(--dbf-red-bright);
  margin-right: 0.6rem;
  font-size: 0.55em;
  vertical-align: middle;
  border: 1px solid var(--dbf-red-bright);
  padding: 2px 10px;
  border-radius: 999px;
}

.section-desc {
  color: var(--dbf-gray);
  font-size: 1.15rem;
  max-width: 640px;
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s;
}

.reveal.in-view .section-title,
.reveal.in-view .section-desc {
  opacity: 1;
  transform: translateY(0);
}

/* about */

.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #d7d5d0;
  margin-bottom: 1.2rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view .about-text p {
  opacity: 1;
  transform: translateY(0);
}

.about-text p:nth-child(2) { transition-delay: 0.12s; }

.about-stats {
  display: grid;
  gap: 1.2rem;
}

.stat-card {
  background: var(--dbf-black-2);
  border: 1px solid rgba(193,52,28,0.25);
  border-radius: 16px;
  padding: 1.6rem;
  text-align: center;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.3s ease;
}

.stat-card:hover {
  border-color: var(--dbf-red-bright);
}

.reveal.in-view .stat-card:nth-child(1) { transition-delay: 0.05s; }
.reveal.in-view .stat-card:nth-child(2) { transition-delay: 0.15s; }
.reveal.in-view .stat-card:nth-child(3) { transition-delay: 0.25s; }

.reveal.in-view .stat-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--dbf-red-bright);
  letter-spacing: 0.03em;
}

.stat-label {
  color: var(--dbf-gray);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* pokal */

.trophy-table-wrap {
  border: 1px solid rgba(193,52,28,0.3);
  border-radius: 18px;
  overflow: hidden;
  background: var(--dbf-black-2);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease 0.15s, transform 0.7s ease 0.15s;
}

.reveal.in-view .trophy-table-wrap {
  opacity: 1;
  transform: translateY(0);
}

.trophy-table {
  width: 100%;
  border-collapse: collapse;
}

.trophy-table thead th {
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  text-align: left;
  padding: 1.1rem 1.8rem;
  background: rgba(193,52,28,0.14);
  color: var(--dbf-red-bright);
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(193,52,28,0.3);
}

.trophy-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s ease;
}

.trophy-table tbody tr:last-child {
  border-bottom: none;
}

.trophy-table tbody tr:hover {
  background: rgba(193,52,28,0.08);
}

.trophy-table td {
  padding: 1.1rem 1.8rem;
  font-size: 1.15rem;
}

.year {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--dbf-white);
  white-space: nowrap;
}

.winners {
  color: #d7d5d0;
  font-weight: 600;
}

.winners.unknown {
  color: var(--dbf-gray);
  font-style: italic;
}

.unknown-tag {
  display: inline-block;
  margin-left: 0.6rem;
  font-size: 0.75rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dbf-gray);
  border: 1px solid rgba(138,138,146,0.4);
  padding: 2px 8px;
  border-radius: 999px;
  vertical-align: middle;
}

tr.current {
  background: rgba(232,69,31,0.1);
}

.badge {
  display: inline-block;
  margin-left: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: var(--dbf-red-bright);
  color: var(--dbf-white);
  padding: 3px 9px;
  border-radius: 999px;
  vertical-align: middle;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,69,31,0.6); }
  50% { box-shadow: 0 0 0 6px rgba(232,69,31,0); }
}

/* next fest countdown */

.next-fest {
  margin-top: 2.5rem;
  text-align: center;
  border: 1px solid rgba(193,52,28,0.4);
  border-radius: 22px;
  padding: 3rem 2.5rem 3.5rem;
  background: linear-gradient(180deg, rgba(193,52,28,0.14), var(--dbf-black-2));
  box-shadow: 0 0 60px rgba(193,52,28,0.12), inset 0 1px 0 rgba(255,255,255,0.04);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease 0.25s, transform 0.7s ease 0.25s;
}

.reveal.in-view .next-fest {
  opacity: 1;
  transform: translateY(0);
}

.next-fest-label {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dbf-red-bright);
  margin-bottom: 0.4rem;
}

.next-fest-date {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  letter-spacing: 0.06em;
  color: var(--dbf-white);
  margin-bottom: 2rem;
  text-shadow: 0 0 30px rgba(193,52,28,0.3);
}

.countdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.6rem;
}

.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 90px;
}

.cd-value {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1;
  color: var(--dbf-white);
  background: rgba(0,0,0,0.4);
  border: 1px solid rgba(193,52,28,0.35);
  border-radius: 14px;
  padding: 0.6rem 0.9rem;
  min-width: 100%;
  box-sizing: border-box;
  text-shadow: 0 0 20px rgba(232,69,31,0.2);
}

.cd-label {
  margin-top: 0.6rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--dbf-gray);
}

.cd-sep {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 5rem);
  line-height: 1;
  color: var(--dbf-red-bright);
  padding-top: 0.6rem;
  animation: blink 1.2s steps(1) infinite;
}

@keyframes blink {
  50% { opacity: 0.25; }
}

.next-fest.is-live .cd-label,
.next-fest.is-live .next-fest-date {
  color: var(--dbf-white);
}

.next-fest-live-msg {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  letter-spacing: 0.05em;
  color: var(--dbf-red-bright);
  animation: pulse-badge 2s ease-in-out infinite;
}

@media (max-width: 480px) {
  .cd-unit { min-width: 58px; }
  .cd-sep { display: none; }
  .countdown { gap: 0.5rem; flex-wrap: wrap; }
}

/* teamspeak */

.teamspeak {
  padding-bottom: 10rem;
}

.ts-btn {
  margin-top: 2.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  background: linear-gradient(135deg, var(--dbf-red), var(--dbf-red-bright));
  color: var(--dbf-white);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  padding: 1rem 2.6rem;
  border-radius: 999px;
  box-shadow: 0 0 40px rgba(193,52,28,0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  opacity: 0;
  transform: translateY(20px);
}

.reveal.in-view .ts-btn {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease 0.1s, transform 0.7s ease 0.1s, box-shadow 0.25s ease;
}

.ts-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 8px 50px rgba(232,69,31,0.55);
}

.copy-btn {
  margin-top: 1.4rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--dbf-gray);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.copy-btn:hover {
  border-color: var(--dbf-red-bright);
  color: var(--dbf-white);
}

.copy-btn.copied {
  border-color: #3fd67a;
  color: #3fd67a;
}

/* ---------- teamspeak viewer ---------- */

.ts-viewer {
  margin-top: 2.6rem;
  width: min(560px, 100%);
  text-align: left;
  background: var(--dbf-black-2);
  border: 1px solid rgba(193,52,28,0.3);
  border-radius: 16px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease 0.2s, transform 0.7s ease 0.2s;
}

.reveal.in-view .ts-viewer {
  opacity: 1;
  transform: translateY(0);
}

.ts-viewer-head {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.2rem;
  background: rgba(193,52,28,0.12);
  border-bottom: 1px solid rgba(193,52,28,0.25);
}

.ts-live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #3fd67a;
  box-shadow: 0 0 0 0 rgba(63,214,122,0.6);
  animation: ts-pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes ts-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(63,214,122,0.5); }
  50% { box-shadow: 0 0 0 6px rgba(63,214,122,0); }
}

.ts-status {
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  font-size: 1.05rem;
  color: var(--dbf-white);
}

.ts-status.err {
  color: var(--dbf-gray);
}

.ts-viewer.is-offline .ts-live-dot {
  background: var(--dbf-gray);
  animation: none;
  box-shadow: none;
}

.ts-tree {
  padding: 0.8rem 1.1rem 1.1rem;
  max-height: 460px;
  overflow-y: auto;
}

.ts-tree:empty {
  display: none;
}

.ts-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ts-list .ts-list {
  margin-left: 1.1rem;
  border-left: 1px solid rgba(255,255,255,0.08);
  padding-left: 0.5rem;
}

.ts-channel > .ts-ch-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.32rem 0;
  color: #d7d5d0;
}

.ts-ch-row svg { color: var(--dbf-red-bright); flex-shrink: 0; }
.ts-ch-name { font-weight: 600; font-size: 1rem; }

.ts-clients {
  list-style: none;
  margin: 0 0 0.2rem 0;
  padding: 0 0 0 1.5rem;
}

.ts-client {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.18rem 0;
  color: var(--dbf-white);
  font-size: 0.95rem;
}

.ts-client svg { color: #3fd67a; flex-shrink: 0; }

.ts-spacer {
  padding: 0.5rem 0 0.2rem;
  color: var(--dbf-gray);
  font-family: var(--font-display);
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  text-transform: uppercase;
  opacity: 0.7;
}

.ts-empty {
  color: var(--dbf-gray);
  font-style: italic;
  padding: 0.3rem 0;
}

/* ---------- footer ---------- */

.footer {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 6vw 3.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  height: 32px;
  opacity: 0.7;
  margin-bottom: 0.8rem;
}

.footer p {
  color: var(--dbf-gray);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
}

.footer-links {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.footer-links a {
  color: var(--dbf-gray);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--dbf-red-bright);
}

.footer-links span {
  color: rgba(255,255,255,0.2);
}

/* ---------- legal pages (Impressum / Datenschutz) ---------- */

.legal-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 6vw;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.legal-logo img {
  height: 40px;
  display: block;
}

.legal-back {
  color: var(--dbf-gray);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.legal-back:hover {
  color: var(--dbf-red-bright);
}

.legal {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 3.5rem 6vw 4rem;
  line-height: 1.7;
}

.legal h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  letter-spacing: 0.03em;
  margin-bottom: 1.8rem;
  color: var(--dbf-white);
}

.legal h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  color: var(--dbf-red-bright);
  margin: 2.2rem 0 0.7rem;
}

.legal p,
.legal ul {
  color: #cfcdc8;
  font-size: 1rem;
  margin-bottom: 0.9rem;
}

.legal ul {
  padding-left: 1.4rem;
}

.legal li {
  margin-bottom: 0.3rem;
}

.legal a {
  color: var(--dbf-red-bright);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,69,31,0.4);
}

.legal a:hover {
  border-bottom-color: var(--dbf-red-bright);
}

/* E-Mail-Schutz: Decoy-Text nur im Quelltext, unsichtbar & nicht kopierbar */
.mail-decoy {
  display: none;
}

.legal-note {
  background: rgba(193,52,28,0.1);
  border: 1px solid rgba(193,52,28,0.3);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  color: var(--dbf-gray) !important;
  font-size: 0.9rem !important;
}

/* ---------- responsive ---------- */

@media (max-width: 820px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    gap: 1.2rem;
  }
  .nav-links a {
    font-size: 0.9rem;
  }
  .section {
    padding: 5.5rem 6vw;
  }
}

@media (max-width: 560px) {
  .navbar {
    padding: 14px 5vw;
  }
  .nav-logo img {
    height: 32px;
  }
  .nav-links {
    gap: 0.8rem;
  }
  .trophy-table td, .trophy-table th {
    padding: 0.8rem 1rem;
    font-size: 0.95rem;
  }
  .year {
    font-size: 1.1rem;
  }
}
