:root {
  --bg: #07111f;
  --bg-2: #0d1b2f;
  --panel: rgba(10, 18, 32, 0.82);
  --panel-strong: rgba(10, 18, 32, 0.9);
  --text: #f8fafc;
  --muted: rgba(255, 255, 255, 0.78);
  --line: rgba(255, 255, 255, 0.12);
  --accent: #7dd3fc;
  --accent-2: #a78bfa;
  --gold: #f59e0b;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius: 24px;
  --container: 1180px;
  --header-height: 76px;
  --header-height-mobile: 72px;
}

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

html {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  background: #07111f;
}

body {
  width: 100%;
  max-width: 100%;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  font-family: "Poppins", sans-serif;
  color: var(--text);
  line-height: 1.65;
  padding-top: var(--header-height);
  background:
    radial-gradient(circle at top left, rgba(125, 211, 252, 0.08), transparent 28%),
    radial-gradient(circle at top right, rgba(167, 139, 250, 0.08), transparent 24%),
    linear-gradient(180deg, var(--bg), var(--bg-2));
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

section {
  scroll-margin-top: calc(var(--header-height) + 20px);
}

.site-bg,
.background {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 15% 15%, rgba(56, 189, 248, 0.08), transparent 18%),
    radial-gradient(circle at 85% 20%, rgba(99, 102, 241, 0.1), transparent 20%),
    radial-gradient(circle at 50% 100%, rgba(245, 158, 11, 0.06), transparent 30%);
}

.particles {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  top: 100%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  pointer-events: none;
  will-change: transform;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, -120vh, 0);
  }
}

/* Header / Navbar */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(7, 17, 31, 0.9);
  border-bottom: 1px solid var(--line);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  transform: translateZ(0);
}

.site-header.is-scrolled {
  background: rgba(7, 17, 31, 0.96);
  border-bottom-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.site-container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
}

.nav {
  min-height: var(--header-height);
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  position: relative;
  z-index: 1102;
  min-width: 0;
}

.brand img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  flex-shrink: 0;
}

.brand span {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  position: relative;
  z-index: 1102;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(125, 211, 252, 0.35);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  transform: translateY(-1px);
}

/* General layout */

.hero,
.page-hero {
  position: relative;
}

.hero {
  min-height: calc(100vh - var(--header-height));
  display: grid;
  align-items: center;
  padding: 56px 0 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: center;
}

.hero-copy,
.hero-panel,
.card,
.info-card,
.legal-block,
.stat-card,
.tournament-card,
.poster-card,
.company-card,
.cookie-banner {
  background: var(--panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-clip: padding-box;
}

.hero-copy {
  padding: 34px;
  border-radius: 32px;
}

.hero-panel {
  padding: 28px;
  border-radius: 32px;
}

.eyebrow,
.section-eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--line);
  color: var(--accent);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.hero h1,
.page-hero h1,
.section-header h2,
.poster-copy h3,
.person-overlay h3,
.card h2,
.legal-block h2,
.info-card strong,
.stat-card strong,
.countdown-item strong {
  color: #f8fafc;
}

.hero h1,
.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero p,
.page-hero p,
.tagline,
.section-header p,
.card p,
.legal-block p,
.company-card h3,
.info-card span,
.stat-card span,
.countdown-item,
.highlight,
.bank-details p {
  color: rgba(255, 255, 255, 0.82);
}

.hero p,
.page-hero p,
.tagline {
  font-size: 1.05rem;
}

.hero-actions {
  margin-top: 26px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn,
.hero-button,
.cookie-actions button,
.cookie-banner__actions button,
.lightbox-btn,
#fullscreen-btn {
  font: inherit;
}

.btn,
.hero-button,
.cookie-actions button,
.cookie-banner__actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn:hover,
.hero-button:hover,
.cookie-actions button:hover,
.cookie-banner__actions button:hover {
  transform: translateY(-2px);
}

.btn--primary,
.hero-button,
.cookie-accept {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #08111e;
  font-weight: 700;
}

.btn--ghost,
.cookie-decline {
  color: #f8fafc;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.info-card,
.stat-card {
  border-radius: 22px;
  padding: 18px;
}

.info-card strong,
.stat-card strong {
  display: block;
  font-size: 1.2rem;
}

.info-card span,
.stat-card span {
  font-size: 0.95rem;
}

.section {
  padding: 34px 0 72px;
}

.section--compact {
  padding-top: 12px;
}

.section-header {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  margin-bottom: 12px;
}

.grid,
.card-grid,
.legal-grid {
  display: grid;
  gap: 20px;
}

.card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.legal-block {
  border-radius: var(--radius);
  padding: 24px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.card.show,
.legal-block.show,
.section-header.show,
.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.card h2,
.legal-block h2 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.card h2,
.legal-block h2,
.bracket-round h3 {
  color: var(--gold);
}

.highlight {
  margin-top: 12px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-left: 4px solid var(--gold);
  border-radius: 18px;
  padding: 16px;
}

.highlight p + p {
  margin-top: 6px;
}

.highlight-list p {
  display: flex;
  gap: 8px;
}

.bank-details p + p {
  margin-top: 4px;
}

.contact a,
footer a,
.cookie-banner a,
.cookie-banner__content a {
  color: var(--accent);
  text-decoration: none;
}

.contact a:hover,
footer a:hover,
.cookie-banner a:hover,
.cookie-banner__content a:hover {
  text-decoration: underline;
}

.page-hero {
  padding: 72px 0 18px;
}

.page-hero--compact {
  padding-top: 52px;
}

.legal-page {
  display: grid;
  gap: 20px;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.countdown-item {
  text-align: center;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
}

.countdown-item strong {
  font-size: clamp(1.4rem, 3vw, 2rem);
  display: block;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1200;
  display: none;
  background: rgba(10, 18, 32, 0.94);
  border-radius: 20px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
  padding: 18px 20px;
}

.cookie-banner__content,
.cookie-banner > p {
  color: var(--text);
}

.cookie-banner__actions,
.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

footer {
  border-top: 1px solid var(--line);
  padding: 24px 0 36px;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Event */

.event-grid {
  align-items: stretch;
}

.event-card {
  height: 100%;
}

.event-card--wide {
  grid-column: 1 / -1;
}

/* Poster */

.poster-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: center;
  border-radius: var(--radius);
  padding: 24px;
}

.poster-image {
  width: 100%;
  max-height: 640px;
  object-fit: contain;
  border-radius: 20px;
}

.poster-copy h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.compact-highlight {
  margin-top: 16px;
}

.poster-actions {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.poster-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text);
  font: inherit;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.poster-action-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(125, 211, 252, 0.35);
  transform: translateY(-1px);
}

.poster-action-svg {
  width: 18px;
  height: 18px;
  fill: #1877f2;
  opacity: 0.9;
  transition: transform 0.25s ease;
  flex: 0 0 auto;
}

.poster-action-btn:hover .poster-action-svg {
  transform: scale(1.1);
}

.poster-action-btn--whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.35);
}

.poster-action-svg--whatsapp {
  fill: #25d366;
}

.share-toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%) translateY(10px);
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(7, 17, 31, 0.92);
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 2000;
}

.share-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* People */

.people-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 22px;
}

.person-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  min-height: 280px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.04);
  isolation: isolate;
}

.person-image {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.35s ease;
}

.person-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 17, 31, 0.06) 25%, rgba(7, 17, 31, 0.88) 100%);
  opacity: 0.78;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.person-overlay {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 18px 16px;
  z-index: 2;
  transform: translateY(18px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.person-overlay h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.25;
}

.person-card:hover .person-image,
.person-card:focus-within .person-image {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.person-card:hover::after,
.person-card:focus-within::after {
  opacity: 1;
}

.person-card:hover .person-overlay,
.person-card:focus-within .person-overlay {
  transform: translateY(0);
  opacity: 1;
}

/* Companies */

.company-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.company-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
  padding: 20px 16px;
  min-height: 170px;
  border-radius: 22px;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.company-card:hover {
  transform: translateY(-4px);
  border-color: rgba(125, 211, 252, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

.company-logo {
  width: 100%;
  max-width: 150px;
  max-height: 72px;
  object-fit: contain;
  opacity: 0.9;
  transition: all 0.25s ease;
}

.company-card:hover .company-logo {
  opacity: 1;
  transform: scale(1.08);
  filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.4));
}

.company-card h3 {
  font-size: 0.95rem;
}

/* Tournament */

.tournament-card {
  border-radius: var(--radius);
  padding: 24px;
}

.tournament-intro {
  margin-bottom: 20px;
}

.bracket {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.bracket-round {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
}

.bracket-round h3 {
  margin-bottom: 14px;
  font-size: 1.08rem;
}

.bracket-match {
  display: grid;
  gap: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 14px;
}

.bracket-match + .bracket-match {
  margin-top: 12px;
}

.bracket-match span {
  display: block;
}

.bracket-match span + span {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.bracket-match--label span:first-child,
.bracket-match--gold span:first-child,
.bracket-match--champion span:first-child {
  font-weight: 700;
  color: var(--text);
}

.bracket-match--gold {
  border-color: rgba(245, 158, 11, 0.24);
  background: rgba(245, 158, 11, 0.08);
}

.bracket-match--champion {
  border-color: rgba(125, 211, 252, 0.28);
  background: rgba(125, 211, 252, 0.08);
}

/* Back to top */

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(7, 17, 31, 0.82);
  color: var(--text);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  cursor: pointer;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition:
    opacity 0.25s ease,
    transform 0.25s ease,
    visibility 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease;
}

.back-to-top:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(125, 211, 252, 0.35);
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-header,
.nav,
.site-container,
.hero,
.section,
.poster-card,
.people-grid,
.company-grid,
.bracket,
.card-grid {
  max-width: 100%;
}

/* Responsive */

@media (max-width: 980px) {
  .hero-grid,
  .card-grid,
  .bracket,
  .poster-card {
    grid-template-columns: 1fr;
  }

  .countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .event-card--wide {
    grid-column: auto;
  }

  .nav {
    min-height: var(--header-height);
    height: var(--header-height);
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .nav-toggle {
    display: inline-flex;
    flex-shrink: 0;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 100%;
    min-height: calc(100dvh - var(--header-height));
    padding: 20px;
    background: rgba(7, 17, 31, 0.98);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
    overflow-y: auto;
    overflow-x: hidden;
    flex-wrap: nowrap;
    transform: translateX(100%);
    transition: transform 0.28s ease;
    z-index: 1101;
    box-sizing: border-box;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 16px 18px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    font-size: 1rem;
    transform: none;
    word-break: break-word;
  }

  .nav-links a:hover,
  .nav-links a.active {
    transform: none;
    background: rgba(255, 255, 255, 0.1);
  }

  body.nav-open .nav-links {
    transform: translateX(0);
  }
}

@media (max-width: 768px) {
  html,
  body {
    background: #07111f;
  }

  .background {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    height: 100dvh;
  }

  .particles {
    display: none;
  }

  .hero-copy,
  .hero-panel,
  .card,
  .info-card,
  .legal-block,
  .stat-card,
  .tournament-card,
  .poster-card,
  .company-card,
  .cookie-banner {
    background: rgba(10, 18, 32, 0.92);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .section-header p,
  .card p,
  .legal-block p,
  .company-card h3,
  .info-card span,
  .stat-card span,
  .hero p,
  .page-hero p,
  .tagline {
    color: rgba(255, 255, 255, 0.86);
  }
}

@media (max-width: 680px) {
  body {
    padding-top: var(--header-height-mobile);
  }

  html {
    scroll-padding-top: calc(var(--header-height-mobile) + 20px);
  }

  section {
    scroll-margin-top: calc(var(--header-height-mobile) + 20px);
  }

  .site-header {
    height: var(--header-height-mobile);
  }

  .nav {
    min-height: var(--header-height-mobile);
    height: var(--header-height-mobile);
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero-copy,
  .hero-panel,
  .card,
  .legal-block,
  .info-card,
  .stat-card,
  .tournament-card {
    padding: 20px;
    border-radius: 22px;
  }

  .hero-highlights,
  .countdown-grid {
    grid-template-columns: 1fr;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 16px;
  }

  .cookie-banner__actions,
  .cookie-actions,
  .hero-actions,
  .footer-inner,
  .footer-links {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .hero-button,
  .cookie-actions button,
  .cookie-banner__actions button {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .site-container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand img {
    width: 92px;
    height: 92px;
  }

  .brand span {
    font-size: 0.96rem;
    line-height: 1.2;
  }

  .nav-links {
    top: var(--header-height-mobile);
    min-height: calc(100dvh - var(--header-height-mobile));
    padding: 18px 12px 20px;
  }

  .poster-actions {
    flex-direction: column;
  }

  .poster-action-btn {
    width: 100%;
  }

  .people-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .person-card,
  .person-image {
    min-height: 210px;
  }

  .person-overlay {
    transform: translateY(0);
    opacity: 1;
    padding: 12px;
  }

  .company-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px 14px 12px;
    border-radius: 14px;
  }

  .cookie-banner__content p,
  .cookie-banner p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .cookie-banner__actions {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-top: 10px;
  }

  .cookie-banner__actions button {
    flex: 1;
    min-height: 38px;
    padding: 8px 10px;
    font-size: 0.85rem;
    border-radius: 10px;
  }

  .cookie-accept {
    font-weight: 600;
  }

  .cookie-decline {
    opacity: 0.85;
  }

  .back-to-top {
    right: 14px;
    bottom: 80px;
    width: 44px;
    height: 44px;
    font-size: 0.9rem;
  }
}
/* =========================
   STICKY NEWS BANNER
========================= */

.sticky-news {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: linear-gradient(90deg, #000, #2a2a2a);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sticky-news__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 10px 16px;
  text-align: center;
}

.sticky-news__text {
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
}

.sticky-news__btn {
  background: #c89b3c;
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.sticky-news__btn:hover {
  background: #a67c2a;
  transform: translateY(-1px);
}

/* =========================
   MOBILE OPTIMIERUNG
========================= */

@media (max-width: 768px) {
  .sticky-news {
    font-size: 0.85rem;
  }

  .sticky-news__inner {
    flex-direction: column;
    gap: 6px;
    padding: 10px 12px;
  }

  .sticky-news__text {
    font-size: 0.85rem;
    line-height: 1.2;
  }

  .sticky-news__btn {
    width: 100%;
    max-width: 240px;
    padding: 10px;
    font-size: 0.9rem;
  }
}

/* =========================
   OPTIONAL: ANIMATION
========================= */

.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}