/* ===== STYLE BLOCK 1 ===== */

 :root {
 --bg-color: #000000;
 --card-bg: #1a0a0a;
 --card-bg-light: #2a1515;
 --accent: #ffd700;
 --accent-dark: #daa520;
 --accent-light: #ffed4e;
 --accent-glow: rgba(255, 215, 0, 0.5);
 --text-light: #f5f3f0;
 --text-muted: #b8c5d1;
 --text-dark: #7a8a9a;
 --success: #4ade80;
 --danger: #ef4444;
 }

 /* Mobile-First Base Styles */
 * {
   box-sizing: border-box;
   -webkit-tap-highlight-color: rgba(255, 215, 0, 0.2);
 }

 html {
   font-size: 16px;
   -webkit-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
   text-size-adjust: 100%;
   overflow-x: hidden;
   width: 100%;
   height: 100%;
 }

body {
   margin: 0;
   padding: 0;
   width: 100%;
   min-height: 100vh;
   overflow-x: hidden;
   position: relative;
   font-family: 'Inter', Arial, sans-serif;
   font-size: 16px;
   line-height: 1.6;
   color: var(--text-light);
   background: var(--bg-color);
   -webkit-font-smoothing: antialiased;
   -moz-osx-font-smoothing: grayscale;
   word-wrap: break-word;
   overflow-wrap: break-word;
 }

 /* Prevent horizontal scroll on mobile */
 body, html {
   max-width: 100vw;
   overflow-x: hidden;
 }

 /* Ensure all containers respect viewport */
 * {
   max-width: 100%;
 }

 img, video, iframe {
   max-width: 100%;
   height: auto;
 }

 /* Mobile Performance Optimierungen */
 @media (max-width: 768px) {
  /* Reduce Motion für bessere Performance */
  * {
   animation-duration: 0.01ms !important;
   animation-delay: 0.01ms !important;
   transition-duration: 0.01ms !important;
   transition-delay: 0.01ms !important;
  }

  /* CSS Containment für bessere Performance */
  section, article, aside, header, footer, div {
   contain: layout style paint;
  }

  /* GPU-Beschleunigung für wichtige Elemente */
  

  /* Optimierung für Touch-Geräte */
  * {
   -webkit-tap-highlight-color: rgba(255, 215, 0, 0.2);
   touch-action: manipulation;
  }

  /* Lazy Loading für alle Bilder */
  img {
   loading: lazy;
   decoding: async;
  }

  /* Reduce Repaints */
 body {
   contain: layout style paint;
  }
 }

 /* Reduce Motion für Nutzer die es bevorzugen */
 @media (prefers-reduced-motion: reduce) {
  * {
   animation-duration: 0.01ms !important;
   animation-iteration-count: 1 !important;
   transition-duration: 0.01ms !important;
  }
 }

 .language-switcher {
 position: fixed;
 top: 1.5rem;
 right: 1.5rem;
 z-index: 1000;
 display: flex;
 gap: 0.4rem;
 background: rgba(15, 31, 46, 0.95);
 padding: 0.4rem;
 border-radius: 6px;
 border: 1px solid rgba(var(--gold-rgb), 0.36);
 backdrop-filter: blur(10px);
 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
 }

 .lang-button {
 background: transparent;
 border: 1px solid rgba(var(--gold-rgb), 0.36);
 color: rgba(232, 232, 232, 0.6);
 padding: 0.4rem 0.7rem;
 border-radius: 5px;
 cursor: pointer;
 transition: all 0.2s ease;
 font-size: 0.75rem;
 display: flex;
 align-items: center;
 gap: 0.4rem;
 font-weight: 400;
 }

.lang-button:hover {
 background: rgba(255, 215, 0, 0.1);
 border-color: rgba(255, 215, 0, 0.4);
 color: rgba(232, 232, 232, 0.8);
 transform: translateY(-1px);
 }

 .lang-button.active {
 background: rgba(255, 215, 0, 0.2);
 border-color: var(--accent);
 color: var(--accent);
 font-weight: 700;
 text-decoration: underline;
 text-decoration-color: var(--accent);
 text-underline-offset: 3px;
 box-shadow: 0 2px 8px rgba(255, 215, 0, 0.3);
 }

 .lang-button:not(.active) {
 border-color: rgba(255, 215, 0, 0.15);
 color: rgba(232, 232, 232, 0.5);
 box-shadow: none;
 }

 .lang-flag {
 width: 14px;
 height: 10px;
 display: inline-block;
 border-radius: 2px;
 flex-shrink: 0;
 position: relative;
 overflow: hidden;
 background-size: cover;
 background-position: center;
 }

 .lang-flag[data-flag="uk"] {
 background: #012169;
 position: relative;
 overflow: hidden;
 }

 .lang-flag[data-flag="uk"]::before {
 content: "🇬🇧";
 position: absolute;
 inset: 0;
 display: flex;
 align-items: center;
 justify-content: center;
 font-size: 12px;
 line-height: 1;
 }

 .lang-flag[data-flag="de"] {
 background: linear-gradient(to bottom, #000 0%, #000 33.33%, #DD0000 33.33%, #DD0000 66.66%, #FFCE00 66.66%);
 }

@media (max-width: 768px) {
 .language-switcher {
 top: 1rem;
 right: 1rem;
 padding: 0.3rem;
 gap: 0.3rem;
 }

 .lang-button {
 padding: 0.35rem 0.6rem;
 font-size: 0.7rem;
 }

 .lang-flag {
 width: 12px;
 height: 9px;
 }
}

@media (max-width: 600px) {
  html {
    font-size: 17px;
  }
  body {
    line-height: 1.75;
  }
  .language-switcher {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    top: 0.75rem;
  }
}

 .floating-cta {
 position: fixed;
 right: calc(2rem + 50px + 0.5cm);
 bottom: 2rem;
 z-index: 1000;
 display: flex;
 }

 .floating-cta-button {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 0.5rem;
 background: #ffd700;
 color: #000000;
 padding: 0.8rem 1.6rem;
 border-radius: 10px;
 font-weight: 700;
 letter-spacing: 0.08em;
 text-transform: uppercase;
 box-shadow: 0 15px 35px rgba(255, 215, 0, 0.25);
 transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
 text-decoration: none;
 font-size: 0.95rem;
 }

 .floating-cta-button:hover,
 .floating-cta-button:focus {
 background: #bfff00;
 color: #000000;
 box-shadow: 0 20px 45px rgba(191, 255, 0, 0.35);
 transform: translateY(-2px);
 }

 @media (max-width: 768px) {
 .floating-cta {
 right: calc(1rem + 45px + 0.5cm);
 bottom: 1rem;
 }

 .floating-cta-button {
 width: max-content;
 font-size: 0.9rem;
 padding: 0.7rem 1.4rem;
 }
 }

@media (max-width: 600px) {
  .floating-cta {
    left: 1rem;
    right: 1rem;
    bottom: 0.75rem;
    justify-content: center;
    width: auto;
  }
  .floating-cta-button {
    width: 100%;
    justify-content: center;
  }
}

/* Guestbook */


















.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bar::before {
  top: -6px;
}

.nav-toggle-bar::after {
  top: 6px;
}







.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('../images/Traurig.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: #fff;
  overflow: hidden;
  margin-bottom: clamp(4rem, 8vw, 6rem);
}

/* Hero Supporter Count Styling */
.hero-supporter-count {
  font-size: inherit !important;
  font-weight: inherit !important;
  font-family: inherit !important;
  color: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
  text-transform: inherit !important;
}






















.petition-story-inner,
.community-actions,
.faq,
.contact {
  background: rgba(26, 10, 10, 0.7);
  padding: clamp(1.5rem, 4vw, 3rem);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
}

.petition-story-inner h2,
.community-actions h2,
.faq h2,
.contact h2 {
  margin-top: 0;
}

.petition-story-inner ul,
.community-actions ul {
  margin-left: 1.5rem;
}

.actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.actions-grid article {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 1rem;
  padding: 1.25rem;
}

.faq article {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
}

.faq article:first-of-type {
  border-top: none;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
  display: grid;
  gap: 0.75rem;
}

.contact-note {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.consent-info {
  max-width: 960px;
  margin: 3rem auto;
  padding: 1.5rem;
  background: rgba(15, 20, 35, 0.85);
  border-radius: 1rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
  text-align: center;
}

.consent-info a {
  color: var(--accent);
  text-decoration: underline;
}

.feature-split {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  background: rgba(10, 15, 25, 0.9);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.feature-split img {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
}

.feature-split .content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-split .btn {
  align-self: flex-start;
}

@media (min-width: 768px) {
  .feature-split {
    flex-direction: row;
    align-items: center;
  }
  
  .feature-split img,
  .feature-split .content {
    flex: 1 1 50%;
  }
}

.stack-md {
  margin-top: 1rem;
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text-light);
}

@media (max-width: 900px) {
  .site-nav {
    border-radius: 1rem;
  }

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

  .site-menu-wrapper {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    left: 0;
    padding: 1rem;
    background: rgba(10, 15, 25, 0.95);
    border-radius: 1rem;
    border: 1px solid rgba(255, 215, 0, 0.2);
  }

  .site-menu-wrapper[data-collapsed="false"] {
    display: block;
  }

  .site-menu {
    flex-direction: column;
    gap: 0.75rem;
  }
}

 .discord-column {
 background: linear-gradient(145deg, rgba(18, 26, 44, 0.85), rgba(10, 14, 24, 0.92));
 border: 1px solid rgba(88, 101, 242, 0.4);
 box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), inset 0 0 18px rgba(88, 101, 242, 0.12);
}

.discord-widget-container {
 background: rgba(12, 16, 26, 0.75);
 border: 1px solid rgba(88, 101, 242, 0.38);
 border-radius: 12px;
 padding: 1rem 1.1rem;
 margin-top: 1rem;
 box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
 position: relative;
 overflow: hidden;
}

.discord-widget-live {
 display: flex;
 flex-direction: column;
 gap: 0.85rem;
 color: rgba(255, 255, 255, 0.85);
}

.discord-widget-live[hidden] {
 display: none !important;
}

.discord-widget-header {
 display: flex;
 align-items: center;
 justify-content: space-between;
 gap: 0.6rem;
}

.discord-widget-heading {
 font-weight: 700;
 letter-spacing: 0.06em;
 font-size: 0.96rem;
}

.discord-widget-count {
 font-size: 0.82rem;
 color: rgba(255, 255, 255, 0.65);
}

.discord-channel-list {
 list-style: none;
 margin: 0;
 padding: 0;
 display: flex;
 flex-direction: column;
 gap: 0.55rem;
}

.discord-channel-list li {
 display: flex;
 align-items: center;
 gap: 0.55rem;
 padding: 0.65rem 0.85rem;
 border-radius: 10px;
 background: rgba(255, 255, 255, 0.08);
 border: 1px solid rgba(255, 255, 255, 0.12);
 font-size: 0.85rem;
}

.discord-channel-icon {
 font-size: 0.9rem;
 opacity: 0.8;
}

.discord-channel-empty {
 opacity: 0.7;
 font-size: 0.82rem;
}

.discord-widget-presence {
 font-size: 0.78rem;
 color: rgba(255, 255, 255, 0.65);
 margin: 0;
}

.discord-widget-fallback {
 display: none;
 padding: 1.25rem;
 text-align: center;
 background: rgba(18, 22, 32, 0.8);
 border-radius: 10px;
 border: 1px dashed rgba(88, 101, 242, 0.45);
 margin-top: 1rem;
 color: rgba(255, 255, 255, 0.7);
}

.discord-widget-fallback[hidden] {
 display: none !important;
}

.discord-widget-message {
 margin: 0;
 font-size: 0.85rem;
}

.discord-join-button {
 display: flex;
 align-items: center;
 justify-content: center;
 width: 100%;
 padding: 0.75rem 1rem;
 background: linear-gradient(135deg, #5865F2, #4752C4);
 color: #fff;
 border: none;
 border-radius: 8px;
 font-weight: 600;
 font-size: 0.92rem;
 text-decoration: none;
 transition: transform 0.25s ease, box-shadow 0.25s ease;
 margin-top: 0.9rem;
 box-shadow: 0 12px 22px rgba(88, 101, 242, 0.35);
}

.discord-join-button:hover {
 background: linear-gradient(135deg, #4752C4, #363d99);
 transform: translateY(-2px);
 box-shadow: 0 16px 28px rgba(88, 101, 242, 0.45);
}

.discord-widget-container iframe {
 width: 100%;
 min-height: 340px;
 border-radius: 10px;
 border: none;
 display: block;
}

 @media (max-width: 768px) {
 .hero {
 position: relative;
 height: 100vh;
 min-height: 540px;
 width: 100%;
 display: flex;
 align-items: center;
 justify-content: center;
 text-align: center;
 background-image: url('../images/Traurig.jpg');
 background-position: center top;
 background-size: cover;
 background-repeat: no-repeat;
 background-attachment: scroll;
 color: #fff;
 overflow: hidden;
 margin-bottom: clamp(4rem, 8vw, 6rem);
 padding: 4.5rem 0 2.5rem;
 }

 .hero::before {
  background: linear-gradient(
   180deg,
   rgba(0, 0, 0, 0.55) 0%,
   rgba(0, 0, 0, 0.4) 35%,
   rgba(0, 0, 0, 0.25) 60%,
   rgba(0, 0, 0, 0.6) 100%
  );
 }

 .hero::after {
  background:
   radial-gradient(circle at 50% 80%,
    rgba(var(--gold-rgb), 0.15) 0%,
    rgba(8, 0, 0, 0.75) 70%,
    rgba(0, 0, 0, 0.88) 100%
   );
 }

 .hero-content {
 padding: 1.5rem;
 }

 .hero-content h1 {
 font-size: clamp(2rem, 8vw, 3.5rem);
 margin-bottom: 0.8rem;
 letter-spacing: 1px;
 }

 .hero-content .subtitle {
 font-size: clamp(1rem, 4vw, 1.4rem);
 margin-bottom: 1rem;
 }

 .hero-stats {
 flex-direction: column;
 gap: 1rem;
 margin: 1.5rem 0;
 }

 

 

 

 .hero-cta-container {
 margin-top: clamp(2.5rem, 5vw, 3.5rem);
 display: flex;
 justify-content: center;
 align-items: center;
 flex-wrap: wrap;
 gap: 1rem;
 }

 .cta-button {
 padding: 1rem 2.5rem;
 font-size: 1.1rem;
 margin: 0.3rem;
 }

 .hero-cta-container .cta-button {
 flex: 1 1 auto;
 text-align: center;
 }

.hero-cta-container .cta-button.secondary {
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.5);
  color: #fff;
}

.hero-cta-container .cta-button.secondary:hover {
  background: rgba(0, 0, 0, 0.8);
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-cta-container .cta-button {
  flex: 1 1 auto;
  text-align: center;
}

 .testimonials-grid,
 .features-grid {
 grid-template-columns: 1fr;
 gap: 1rem;
 }

 .container {
 padding: 2rem 1.5rem;
 margin-left: 0;
 }

 .container-narrow {
 padding: 2rem 1.5rem;
 margin-left: 0;
 }

 section {
 margin-bottom: 3rem;
 }

 section:last-child {
 margin-bottom: 1.5rem;
 }

 section h2 {
 font-size: clamp(1.8rem, 6vw, 2.2rem);
 margin-bottom: 1.5rem;
 padding-bottom: 0.8rem;
 }

 .card {
 padding: 1.2rem;
 margin-bottom: 1rem;
 }

 .timeline::before {
 left: 20px;
 }

 .timeline-item {
 flex-direction: row !important;
 padding-left: 3rem;
 }

 .timeline-dot {
 left: 20px !important;
 }

 .timeline-content {
 margin: 0 !important;
 padding: 0.8rem;
 }

 .page-wrapper {
 grid-template-columns: 1fr;
 gap: 1.5rem;
 padding: 0 1rem;
 }

 .sidebar-right {
 grid-column: 1;
 flex-direction: column;
 }

 .sidebar-column {
 padding: 1rem;
 }

 .sidebar-column h3 {
 font-size: 1rem;
 margin-bottom: 0.8rem;
 }

 .professional-chart-container {
 padding: 1.5rem;
 margin: 2rem 0;
 }

 .chart-wrapper {
 flex-direction: column;
 min-height: 300px;
 gap: 1rem;
 }

 .chart-y-axis {
 flex-direction: row;
 justify-content: space-between;
 min-width: auto;
 padding-right: 0;
 padding-bottom: 0.5rem;
 border-right: none;
 border-bottom: 2px solid rgba(255, 215, 0, 0.2);
 }

 .chart-bars-container {
 flex-direction: row;
 align-items: flex-end;
 padding-bottom: 1rem;
 gap: 0.75rem;
 }

 .chart-bar-item {
 max-width: 80px;
 }

 .bar-value {
 font-size: 0.9rem;
 }

 .bar-label {
 font-size: 0.7rem;
 }

 .chart-legend {
 flex-direction: column;
 gap: 1rem;
 }

 .discord-widget-container iframe {
 min-height: 250px;
 max-height: 300px;
 }
 }

 @media (max-width: 480px) {
 .hero {
 min-height: 350px;
 }

 .hero-content {
 padding: 1rem;
 }

 .hero-content h1 {
 font-size: clamp(1.8rem, 10vw, 2.5rem);
 }

 .stat-item {
 padding: 0.7rem 1rem;
 }

 

 .container {
 padding: 1.5rem 1rem;
 }

 .container-narrow {
 padding: 1.5rem 1rem;
 }

 section {
 margin-bottom: 2.5rem;
 }

 section:last-child {
 margin-bottom: 1rem;
 }

 section h2 {
 font-size: clamp(1.6rem, 7vw, 2rem);
 margin-bottom: 1.2rem;
 }

 .card {
 padding: 1.5rem;
 }

 .cta-button {
 padding: 1rem 2.5rem;
 font-size: 1.1rem;
 }
 }

 *:focus {
 outline: 2px solid var(--accent);
 outline-offset: 2px;
 }

 button:focus,
 a:focus,
 input:focus {
 outline: 2px solid var(--accent);
 outline-offset: 2px;
 }

 html {
 scroll-behavior: smooth;
 }

.lang-content:not(.active) {
 display: none !important;
 visibility: hidden !important;
 opacity: 0 !important;
 }

.lang-content.active {
 display: block !important;
 visibility: visible !important;
 opacity: 1 !important;
 }

section.lang-content.active,
div.lang-content.active,
header.lang-content.active,
footer.lang-content.active,
main.lang-content.active {
 display: block !important;
 visibility: visible !important;
 opacity: 1 !important;
 }

.lang-content.active[style*="display: flex"],
.lang-content.active[style*="display:flex"],
.lang-content.active.flex,
.flex.lang-content.active {
 display: flex !important;
 visibility: visible !important;
 opacity: 1 !important;
 }

.lang-content.active.inline,
span.lang-content.active,
a.lang-content.active {
 display: inline-block !important;
 visibility: visible !important;
 opacity: 1 !important;
 }

 body {
 font-family: 'Inter', sans-serif;
 line-height: 1.7;
 color: var(--text-light);
 background: var(--bg-color);
 position: relative;
 overflow-x: hidden;
 }

 @keyframes shimmer {
 0%, 100% {
 opacity: 0.8;
 }
 50% {
 opacity: 1;
 }
 }

 @keyframes pulse {
 0%, 100% {
 opacity: 0.6;
 transform: scale(1);
 }
 50% {
 opacity: 0.8;
 transform: scale(1.03);
 }
 }

 main {
 position: relative;
 z-index: 1;
 background-color: #000;
 background-image:
  radial-gradient(ellipse at center,
   rgba(0, 0, 0, 0.97) 0%,
   rgba(8, 8, 10, 0.94) 18%,
   rgba(120, 20, 10, 0.35) 38%,
   rgba(90, 12, 8, 0.28) 58%,
   rgba(10, 10, 12, 0.88) 78%,
   rgba(0, 0, 0, 0.98) 100%
  ),
  radial-gradient(ellipse at 30% 40%, rgba(150, 20, 10, 0.07) 0%, transparent 60%),
  radial-gradient(ellipse at 70% 60%, rgba(140, 18, 8, 0.06) 0%, transparent 60%);
}

 h1, h2, h3, h4 {
 font-family: 'Cinzel', serif;
 font-weight: 700;
 line-height: 1.2;
 }

a {
 color: #8ec9ff;
 text-decoration: none;
 transition: all 0.3s ease;
}

a:hover {
 color: #d3ecff;
 text-decoration: underline;
}

 .hero {
 position: relative;
 height: 100vh;
 min-height: 600px;
 width: 100%;
 display: flex;
 align-items: center;
 justify-content: center;
 text-align: center;
 background-image: url('../images/Traurig.jpg');
 background-position: center center;
 background-size: cover;
 background-repeat: no-repeat;
 background-attachment: fixed;
 color: #fff;
 overflow: hidden;
 margin-bottom: clamp(4rem, 8vw, 6rem);
 }

 .hero::before {
 content: "";
 position: absolute;
 inset: 0;
 background: linear-gradient(
 135deg,
 rgba(0, 0, 0, 0.2) 0%,
 rgba(0, 0, 0, 0.15) 30%,
 rgba(0, 0, 0, 0.1) 60%,
 rgba(0, 0, 0, 0.05) 100%
 ),
 linear-gradient(
 to bottom,
 rgba(0, 0, 0, 0) 0%,
 rgba(0, 0, 0, 0) 60%,
 rgba(0, 0, 0, 0.05) 75%,
 rgba(0, 0, 0, 0.15) 85%,
 rgba(0, 0, 0, 0.3) 92%,
 rgba(0, 0, 0, 0.5) 98%,
 rgba(0, 0, 0, 0.7) 100%
 );
 z-index: 1;
 }

 .hero::after {
 content: "";
 position: absolute;
 inset: 0;
 background:
  radial-gradient(ellipse at 50% 90%,
   rgba(var(--gold-rgb), 0.0) 0%,
   rgba(var(--gold-rgb), 0.22) 38%,
   rgba(140, 32, 12, 0.28) 58%,
   rgba(8, 0, 0, 0.65) 78%,
   rgba(0, 0, 0, 0.78) 100%
  ),
  linear-gradient(
   to bottom,
   rgba(0, 0, 0, 0) 0%,
   rgba(12, 0, 0, 0.08) 48%,
   rgba(28, 4, 4, 0.32) 72%,
   rgba(30, 6, 6, 0.58) 88%,
   rgba(6, 0, 0, 0.82) 100%
  );
 z-index: 2;
 pointer-events: none;
 }

 .hero-content {
 position: relative;
 z-index: 3;
 max-width: 1100px;
 width: 100%;
 margin: 0 auto;
 padding: clamp(3rem, 8vw, 5rem) clamp(1.5rem, 4vw, 2.5rem);
 animation: fadeInUp 1s ease-out;
 }

 @keyframes fadeInUp {
 from {
 opacity: 0;
 transform: translateY(30px);
 }
 to {
 opacity: 1;
 transform: translateY(0);
 }
 }

 .hero-content h1 {
 font-size: clamp(3.5rem, 8vw, 5.5rem);
 margin-bottom: clamp(1rem, 2vw, 1.5rem);
 color: var(--accent);
 text-shadow: 3px 3px 15px rgba(0, 0, 0, 1),
 0 0 40px rgba(255, 215, 0, 0.7),
 0 0 60px rgba(255, 215, 0, 0.4);
 letter-spacing: 2px;
 font-weight: 700;
 line-height: 1.1;
 }

 .hero-content .subtitle {
 font-size: clamp(1.1rem, 2vw, 1.5rem);
 margin-bottom: clamp(2rem, 4vw, 2.5rem);
 text-shadow: 2px 2px 10px rgba(0, 0, 0, 1),
 0 0 20px rgba(0, 0, 0, 0.8);
 font-weight: 300;
 color: var(--text-light);
 line-height: 1.6;
 }

 .hero-stats {
 display: flex;
 justify-content: center;
 gap: clamp(1rem, 3vw, 2rem);
 margin: clamp(2rem, 4vw, 2.5rem) 0;
 flex-wrap: wrap;
 }

 

 

 

.cta-button.discord {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 gap: 0.55rem;
 text-transform: uppercase;
 letter-spacing: 0.06em;
}

.cta-button.discord svg {
 width: 1.1rem;
 height: 1.1rem;
 fill: currentColor;
}

.cta-button {
 display: inline-block;
 background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 50%, var(--accent-dark) 100%);
 box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4), 0 0 30px rgba(255, 215, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.3);
 color: var(--bg-color);
 padding: 1rem 2.5rem;
 border-radius: 8px;
 font-weight: 700;
 font-size: 1.1rem;
 transition: all 0.3s ease;
 box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4),
 0 0 20px rgba(255, 215, 0, 0.2);
 text-transform: uppercase;
 letter-spacing: 1px;
 margin: 0.4rem;
 border: none;
 cursor: pointer;
 text-decoration: none;
 }

 .cta-button:hover {
 transform: translateY(-2px);
 box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6),
 0 0 30px rgba(255, 215, 0, 0.4);
 text-decoration: none;
 color: var(--bg-color);
 }

 .cta-button.secondary {
 background: transparent;
 border: 2px solid rgba(255, 215, 0, 0.5);
 color: var(--accent);
 box-shadow: 0 2px 8px rgba(255, 215, 0, 0.15);
 font-weight: 600;
 }

 .cta-button.secondary:hover {
 background: rgba(255, 215, 0, 0.1);
 border-color: rgba(255, 215, 0, 0.7);
 color: var(--accent);
 box-shadow: 0 4px 12px rgba(255, 215, 0, 0.25);
 transform: translateY(-1px);
 }

 /* Button-Größen-Varianten */
 .cta-button-small {
   padding: 0.5rem 0.9rem;
   font-size: 0.85rem;
   margin: 0.25rem auto;
   display: inline-block;
   border-radius: 6px;
 }

 .cta-button-block {
   display: block;
   text-align: center;
   font-size: 0.9rem;
   padding: 0.75rem 1rem;
   width: 100%;
   max-width: 100%;
 }

 /* Support Modal Button Varianten */
 .support-modal-button[data-share-action="copy-link"] {
   min-width: 100px;
 }

 .support-modal-button[data-share-action="copy-embed"] {
   width: 100%;
 }

 .hero-divider {
 width: 100%;
 height: 1px;
 background: linear-gradient(90deg, rgba(255, 215, 0, 0), rgba(255, 215, 0, 0.6), rgba(255, 215, 0, 0));
 margin: 0 auto clamp(2rem, 4vw, 3rem);
 max-width: 1100px;
 }

 .scroll-indicator {
 position: absolute;
 bottom: 2rem;
 left: 50%;
 transform: translateX(-50%);
 z-index: 3;
 animation: bounce 2s infinite;
 /* GPU-Beschleunigung für flüssige Animation */
 will-change: transform;
 backface-visibility: hidden;
 -webkit-backface-visibility: hidden;
 transform-style: preserve-3d;
 }

 @keyframes bounce {
 0%, 20%, 50%, 80%, 100% {
 transform: translateX(-50%) translateY(0) translateZ(0);
 }
 40% {
 transform: translateX(-50%) translateY(-10px) translateZ(0);
 }
 60% {
 transform: translateX(-50%) translateY(-5px) translateZ(0);
 }
 }

 .scroll-indicator::before {
 content: "↓";
 font-size: 2rem;
 color: var(--accent);
 text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
 }

 /* Mobile: Weniger aggressive Animation um Flackern zu vermeiden */
 @media (max-width: 768px) {
  .scroll-indicator {
   animation: bounce-mobile 2.5s infinite;
   /* Reduziere Bewegung auf Mobile */
  }

  @keyframes bounce-mobile {
   0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0) translateZ(0);
   }
   40% {
    transform: translateX(-50%) translateY(-5px) translateZ(0);
   }
   60% {
    transform: translateX(-50%) translateY(-2px) translateZ(0);
   }
  }

  /* Auf sehr kleinen Bildschirmen: Animation komplett deaktivieren */
  @media (max-width: 480px) {
   .scroll-indicator {
    animation: none;
    opacity: 0.8;
   }
  }

  /* Mobile Button Optimierungen */
  button, .button, a.button {
   /* Mindestgröße für Touch-Ziele (44x44px ist Standard) */
   min-width: 44px;
   min-height: 44px;
   /* Bessere Touch-Performance */
   -webkit-tap-highlight-color: rgba(255, 215, 0, 0.3);
   tap-highlight-color: rgba(255, 215, 0, 0.3);
   /* Verhindere Text-Selektion beim Touch */
   -webkit-user-select: none;
   user-select: none;
   /* GPU-Beschleunigung für flüssige Interaktionen */
   will-change: transform, opacity;
   transform: translateZ(0);
   /* Verhindere Doppel-Tap-Zoom */
   touch-action: manipulation;
  }

  /* Spezielle Optimierungen für wichtige Buttons */
  #musicToggle, .lang-button, .guestbook-submit, .support-modal-button, .support-modal-close {
   /* Größere Touch-Ziele für wichtige Buttons */
   min-width: 48px;
   min-height: 48px;
   padding: 0.75rem 1rem;
  }

  /* Verhindere 300ms Click-Delay auf Mobile */
  button, .button, a.button {
   touch-action: manipulation;
  }
 }

 .container {
 max-width: 1600px;
 margin: 0 auto;
 padding: 2.5rem 2rem;
 }

 .container-narrow {
 max-width: 1200px;
 margin: 0 auto;
 padding: 2rem 2rem;
 }

 .page-wrapper {
 display: grid;
 grid-template-columns: 1fr 220px 220px;
 gap: 2.5rem;
 max-width: 2000px;
 margin: 0 auto;
 padding: 0 2rem;
 }

 .main-content {
 grid-column: 1;
 position: relative;
 background: transparent;
 }

 .main-content::before {
 content: "";
 position: absolute;
 top: -140px;
 left: 0;
 right: 0;
 height: 220px;
 background:
  radial-gradient(ellipse at 50% 0%,
   rgba(var(--gold-rgb), 0.28) 0%,
   rgba(120, 26, 10, 0.22) 32%,
   rgba(10, 2, 2, 0.12) 60%,
   rgba(0, 0, 0, 0) 100%
  ),
  linear-gradient(
   to bottom,
   rgba(6, 0, 0, 0.82) 0%,
   rgba(24, 4, 4, 0.72) 24%,
   rgba(38, 8, 8, 0.48) 48%,
   rgba(20, 4, 4, 0.25) 70%,
   rgba(0, 0, 0, 0) 100%
  );
 pointer-events: none;
 z-index: 0;
}

 .sidebar-right {
 grid-column: 2 / 4;
 display: flex;
 flex-direction: column;
 gap: 2rem;
 }

 .sidebar-column {
 background: rgba(26, 10, 10, 0.6);
 backdrop-filter: blur(10px);
 padding: 1.5rem;
 border-radius: 12px;
 border: 1px solid rgba(var(--gold-rgb), 0.36);
 height: fit-content;
 }

 .sidebar-column h3 {
 color: var(--accent);
 font-size: 1.2rem;
 margin-bottom: 1rem;
 border-bottom: 2px solid rgba(255, 215, 0, 0.3);
 padding-bottom: 0.5rem;
 }

 .petition-feed-item {
 padding: 0.75rem;
 margin-bottom: 0.75rem;
 background: rgba(255, 215, 0, 0.05);
 border-left: 3px solid var(--accent);
 border-radius: 4px;
 transition: all 0.3s ease;
 }

 .petition-feed-rotating-card {
 margin-top: 1.5rem;
 padding: 1.2rem;
 background: rgba(255, 215, 0, 0.04);
 border-radius: 10px;
 border: 1px solid rgba(255, 215, 0, 0.18);
 box-shadow: inset 0 0 18px rgba(255, 215, 0, 0.08);
 overflow: hidden;
 }

 .petition-feed-rotating-list {
 position: relative;
 min-height: 380px;
 height: 380px;
 }

 .petition-feed-item-rotating {
 position: absolute;
 inset: 0;
 opacity: 0;
 transform: translateY(10px);
 transition: opacity 0.6s ease, transform 0.6s ease;
 display: flex;
 padding: 1rem;
 background: rgba(12, 4, 4, 0.82);
 border-left: 3px solid var(--accent);
 border-radius: 8px;
 box-shadow: 0 10px 25px rgba(255, 215, 0, 0.08);
 flex-direction: column;
 gap: 0.75rem;
 justify-content: flex-start;
 text-align: center;
 overflow-y: auto;
 pointer-events: none;
 }

 .petition-feed-item-rotating.fade-in {
 opacity: 1;
 transform: translateY(0);
 pointer-events: auto;
 }

 .petition-feed-item-rotating.fade-out {
 opacity: 0;
 transform: translateY(-10px);
 pointer-events: none;
 }

 .petition-feed-item-rotating.no-video {
 align-items: center;
 justify-content: center;
 gap: 1.1rem;
 padding: 1.5rem;
 }

 .petition-feed-item-rotating.no-video .petition-feed-text,
 .petition-feed-item-rotating.no-video .petition-feed-author {
 max-width: 90%;
 margin-left: auto;
 margin-right: auto;
 }

 .petition-feed-video {
 margin-bottom: 0.75rem;
 text-align: center;
 }

 .petition-feed-video[hidden] {
 display: none !important;
 }

 .petition-feed-video iframe,
 .petition-feed-video video {
 width: 100%;
 max-width: 100%;
 height: 240px;
 border-radius: 8px;
 border: 2px solid rgba(255, 215, 0, 0.25);
 box-shadow: 0 8px 18px rgba(0, 0, 0, 0.35);
 object-fit: contain;
 background: rgba(0, 0, 0, 0.85);
 display: block;
 margin: 0 auto;
 }

 .petition-feed-text {
 font-size: 0.85rem;
 line-height: 1.6;
 color: var(--text-light);
 margin: 0;
 text-align: center;
 }

 .petition-feed-author {
 font-size: 0.75rem;
 color: var(--text-muted);
 margin-top: 0.6rem;
 font-style: italic;
 text-align: center;
 }

 .petition-feed-item:hover {
 background: rgba(255, 215, 0, 0.1);
 transform: translateX(3px);
 }

 .petition-feed-item p {
 margin: 0.5rem 0;
 font-size: 0.85rem;
 line-height: 1.5;
 color: var(--text-light);
 }

 .petition-feed-item .feed-date {
 font-size: 0.75rem;
 color: var(--text-muted);
 margin-top: 0.5rem;
 }

 .petition-feed-item img {
 max-width: 100%;
 border-radius: 4px;
 margin: 0.5rem 0;
 }

 .petition-feed-item iframe {
 width: 100%;
 border-radius: 4px;
 margin: 0.5rem 0;
 }

 .petition-feed-loading {
 animation: pulse 2s ease-in-out infinite;
 }

 #petition-feed-container-en::-webkit-scrollbar,
 #petition-feed-container-de::-webkit-scrollbar {
 width: 6px;
 }

 #petition-feed-container-en::-webkit-scrollbar-track,
 #petition-feed-container-de::-webkit-scrollbar-track {
 background: rgba(255, 215, 0, 0.1);
 border-radius: 3px;
 }

 #petition-feed-container-en::-webkit-scrollbar-thumb,
 #petition-feed-container-de::-webkit-scrollbar-thumb {
 background: var(--accent);
 border-radius: 3px;
 }

 section {
 margin-bottom: 3.5rem;
 }

 section:last-child {
 margin-bottom: 1.5rem;
 }

 section h2 {
 font-size: clamp(1.9rem, 4vw, 2.6rem);
 color: var(--accent);
 margin-bottom: 1.5rem;
 text-align: center;
 position: relative;
 padding-bottom: 0.8rem;
 }

 section h2::after {
 content: "";
 position: absolute;
 bottom: 0;
 left: 50%;
 transform: translateX(-50%);
 width: 100px;
 height: 3px;
 background: linear-gradient(90deg, transparent, var(--accent), transparent);
 }

 .card {
 background: rgba(26, 10, 10, 0.6);
 backdrop-filter: blur(10px);
 padding: 2rem;
 border-radius: 10px;
 border: 1px solid rgba(var(--gold-rgb), 0.32);
 margin-bottom: 1.5rem;
 transition: all 0.3s ease;
 box-shadow: 0 3px 15px rgba(0, 0, 0, 0.25);
 }

 .card:last-child {
 margin-bottom: 0;
 }

 .card:hover {
 transform: translateY(-3px);
 border-color: rgba(255, 215, 0, 0.35);
 box-shadow: 0 6px 25px rgba(255, 215, 0, 0.15);
 }

 .card h3 {
 color: var(--accent);
 margin-bottom: 1rem;
 font-size: 1.5rem;
 }

 .testimonials-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 1.5rem;
 margin-top: 2rem;
 }

.testimonial-more {
 margin-top: 1.5rem;
 border: 1px solid rgba(var(--gold-rgb), 0.3);
 border-radius: 10px;
 padding: 1rem 1.25rem;
 background: rgba(26, 10, 10, 0.6);
}

.testimonial-more summary {
 cursor: pointer;
 font-weight: 600;
 letter-spacing: 0.05em;
 color: var(--accent);
 margin-bottom: 1rem;
 list-style: none;
}

.testimonial-more summary::-webkit-details-marker {
 display: none;
}

.testimonial-more-grid {
 margin-top: 0.5rem;
 gap: 1.5rem;
}

 .testimonial {
 background: var(--card-bg-light);
 padding: 1.75rem;
 border-radius: 10px;
 border-left: 4px solid var(--accent);
 position: relative;
 box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
 }

 .testimonial::before {
 content: """;
 position: absolute;
 top: -10px;
 left: 20px;
 font-size: 4rem;
 color: var(--accent);
 opacity: 0.3;
 font-family: serif;
 }

 .testimonial-text {
 font-style: italic;
 margin-bottom: 1rem;
 color: var(--text-light);
 line-height: 1.8;
 }

 .testimonial-author {
 color: var(--accent);
 font-weight: 600;
 text-align: right;
 }

 .game-gallery {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 1.5rem;
 margin: 2rem 0;
 }

 .gallery-item {
 position: relative;
 overflow: hidden;
 border-radius: 8px;
 box-shadow: 0 3px 12px rgba(0, 0, 0, 0.25);
 transition: transform 0.3s ease, box-shadow 0.3s ease;
 border: 2px solid rgba(255, 215, 0, 0.2);
 }

 .gallery-item:hover {
 transform: translateY(-3px);
 box-shadow: 0 6px 20px rgba(255, 215, 0, 0.25);
 }

 .gallery-item img {
 width: 100%;
 height: 250px;
 object-fit: cover;
 display: block;
 transition: transform 0.3s ease;
 }

 .gallery-item:hover img {
 transform: scale(1.05);
 }

 .gallery-item iframe {
 width: 100%;
 height: 250px;
 border: none;
 border-radius: 12px;
 }

 .gallery-caption {
 position: absolute;
 bottom: 0;
 left: 0;
 right: 0;
 background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
 padding: 1rem;
 color: var(--text-light);
 font-size: 0.9rem;
 text-align: center;
 }

 .features-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
 gap: 1.5rem;
 margin-top: 2rem;
 }

 .feature-item {
 text-align: center;
 padding: 1.75rem;
 }

 .feature-icon {
 font-size: 3rem;
 margin-bottom: 1rem;
 display: block;
 }

 .feature-item h3 {
 color: var(--accent);
 margin-bottom: 0.5rem;
 }

 .urgency-banner {
 background: rgba(26, 10, 10, 0.6);
 backdrop-filter: blur(10px);
 border: 2px solid var(--danger);
 padding: 1.5rem;
 border-radius: 8px;
 text-align: center;
 margin: 1.5rem 0;
 }

 .announcement-section {
 position: relative;
 isolation: isolate;
 overflow: hidden;
 background: rgba(18, 6, 6, 0.72);
 backdrop-filter: blur(10px);
 padding: 2.5rem 2.3rem;
 border-radius: 12px;
 border: 1px solid rgba(255, 28, 28, 0.45);
 margin: 2.75rem 0;
 text-align: center;
 box-shadow: 0 0 45px rgba(255, 28, 28, 0.22), inset 0 0 28px rgba(255, 255, 255, 0.05);
 animation: shockRumble 5.2s ease-in-out infinite;
}
.announcement-section::before {
 content: "";
 position: absolute;
 inset: -32%;
 background:
  radial-gradient(circle at 50% 32%, rgba(255, 255, 255, 0.4) 0%, rgba(255, 40, 40, 0.18) 42%, transparent 70%),
  radial-gradient(circle at 42% 72%, rgba(255, 255, 255, 0.2) 0%, transparent 55%);
 mix-blend-mode: screen;
 opacity: 0.75;
 filter: blur(10px);
 pointer-events: none;
 animation: impactFlash 3.6s ease-in-out infinite;
}
.announcement-section::after {
 content: "";
 position: absolute;
 inset: 10px;
 border-radius: 10px;
 background:
  linear-gradient(115deg, rgba(255, 255, 255, 0.3) 0%, transparent 35%),
  linear-gradient(-115deg, rgba(255, 50, 50, 0.25) 15%, transparent 60%);
 border: 1px solid rgba(255, 80, 80, 0.45);
 box-shadow: inset 0 0 32px rgba(255, 40, 40, 0.28);
 opacity: 0.85;
 pointer-events: none;
 animation: fractureGlow 6s ease-in-out infinite;
}

@keyframes shockRumble {
 0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); box-shadow: 0 0 45px rgba(255, 28, 28, 0.22), inset 0 0 28px rgba(255, 255, 255, 0.05); }
 12% { transform: translate3d(-2px, -1px, 0) rotate(-0.35deg) scale(1.002); }
 26% { transform: translate3d(2px, 1px, 0) rotate(0.25deg) scale(1.004); box-shadow: 0 0 55px rgba(255, 60, 60, 0.28), inset 0 0 40px rgba(255, 255, 255, 0.08); }
 54% { transform: translate3d(-1px, 2px, 0) rotate(-0.2deg) scale(0.998); }
 74% { transform: translate3d(1px, -2px, 0) rotate(0.18deg) scale(1.003); }
}

@keyframes impactFlash {
 0%, 100% { opacity: 0.45; }
 20% { opacity: 0.85; }
 45% { opacity: 0.18; }
 65% { opacity: 0.72; }
}

@keyframes fractureGlow {
 0%, 100% { box-shadow: inset 0 0 32px rgba(255, 40, 40, 0.28); border-color: rgba(255, 80, 80, 0.45); }
 40% { box-shadow: inset 0 0 42px rgba(255, 100, 100, 0.38); border-color: rgba(255, 255, 255, 0.6); }
 55% { box-shadow: inset 0 0 24px rgba(255, 28, 28, 0.22); border-color: rgba(255, 70, 70, 0.35); }
}

@keyframes headingFlicker {
 0%, 100% { opacity: 1; text-shadow: 0 6px 20px rgba(255, 60, 60, 0.6), 0 0 28px rgba(255, 255, 255, 0.35); }
 38% { opacity: 0.9; text-shadow: 0 7px 26px rgba(255, 255, 255, 0.55), 0 0 36px rgba(255, 60, 60, 0.7); }
 58% { opacity: 0.78; text-shadow: 0 3px 14px rgba(255, 80, 80, 0.45), 0 0 18px rgba(255, 255, 255, 0.3); }
}

@keyframes headingSlash {
 0%, 100% { opacity: 0.22; filter: blur(1.3px); }
 25% { opacity: 0.6; filter: blur(0.7px); }
 55% { opacity: 0.15; filter: blur(1.5px); }
}

.announcement-section h2 {
 color: #fefefe;
 font-size: clamp(2.3rem, 4.8vw, 3.2rem);
 margin-bottom: 1.8rem;
 text-shadow: 0 6px 20px rgba(255, 60, 60, 0.6), 0 0 28px rgba(255, 255, 255, 0.35);
 font-weight: 700;
 letter-spacing: 0.05em;
 position: relative;
 animation: headingFlicker 4s ease-in-out infinite;
}
.announcement-section h2::before {
 content: "";
 position: absolute;
 top: -14px;
 left: 50%;
 width: 150px;
 height: 130%;
 transform: translateX(-50%) skewX(-10deg);
 background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.85) 48%, rgba(255, 60, 60, 0.45) 55%, transparent 100%);
 opacity: 0.4;
 mix-blend-mode: screen;
 animation: headingSlash 3.8s ease-in-out infinite;
 pointer-events: none;
}
.announcement-section h2::after {
 content: "";
 display: block;
 width: 120px;
 height: 4px;
 margin: 0.8rem auto 0;
 background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.85), transparent);
 box-shadow: 0 0 14px rgba(255, 50, 50, 0.6);
}

.announcement-image {
 width: 100%;
 max-width: 780px;
 border-radius: 10px;
 margin: 1.6rem auto;
 display: block;
 box-shadow: 0 18px 55px rgba(239, 68, 68, 0.25);
 border: 1px solid rgba(239, 68, 68, 0.4);
 position: relative;
 z-index: 1;
}
.announcement-text {
 font-size: clamp(1.15rem, 2.3vw, 1.45rem);
 line-height: 1.9;
 color: var(--text-light);
 margin-top: 1.35rem;
 max-width: 880px;
 margin-left: auto;
 margin-right: auto;
 position: relative;
 z-index: 1;
}

 @media (max-width: 768px) {
 .announcement-section {
 padding: 1.4rem;
 margin: 1.8rem 0;
 }
 .announcement-section::before {
 inset: -60%;
 }
 .announcement-image {
 max-width: 100%;
 margin: 1rem auto;
 }
 .announcement-text {
 font-size: 1rem;
 }
 }

 .facts-list {
 list-style: none;
 padding: 0;
 }

 .facts-list li {
 padding: 1.25rem;
 margin-bottom: 1rem;
 background: var(--card-bg);
 border-left: 4px solid var(--accent);
 border-radius: 6px;
 transition: all 0.3s ease;
 }

 .facts-list li:hover {
 background: var(--card-bg-light);
 transform: translateX(3px);
 }

 .facts-list strong {
 color: var(--accent);
 display: block;
 margin-bottom: 0.5rem;
 font-size: 1.1rem;
 }

 .sources {
 background: var(--card-bg);
 padding: 1.5rem;
 border-radius: 10px;
 border: 1px solid rgba(var(--gold-rgb), 0.36);
 }

 .sources h3 {
 color: var(--accent);
 margin-bottom: 1.5rem;
 font-family: 'Cinzel', serif;
 }

 .sources ul {
 list-style: none;
 padding: 0;
 }

 .sources li {
 padding: 0.75rem 0;
 border-bottom: 1px solid rgba(255, 215, 0, 0.1);
 }

 .sources li:last-child {
 border-bottom: none;
 }

 /* Footer */
.sna-footer {
  background: radial-gradient(circle at top, rgba(255, 215, 0, 0.08), transparent 60%) #070405;
  color: #e5e5e5;
  border-top: 1px solid rgba(255, 215, 0, 0.35);
  padding: clamp(2rem, 4vw, 3rem) 1.5rem clamp(1.25rem, 3vw, 2rem);
  margin-top: 4rem;
  position: relative;
  overflow: hidden;
}

.sna-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 25% -20%, rgba(255, 215, 0, 0.12), transparent 45%);
  pointer-events: none;
}

.sna-footer a {
  color: #8ec9ff;
  text-decoration: none;
  transition: color 0.25s ease;
}

.sna-footer a:hover,
.sna-footer a:focus {
  color: #d3ecff;
  text-decoration: underline;
}

.sna-footer-inner {
  position: relative;
  max-width: 1150px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}

.sna-footer-middle {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(1.25rem, 3vw, 2rem);
}

.sna-footer-col {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 215, 0, 0.12);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-height: 100%;
}

.sna-footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ffd700;
  margin: 0;
}

.sna-footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sna-footer-list li {
  display: block;
}

.sna-footer-list a {
  font-size: 0.92rem;
  color: rgba(203, 216, 255, 0.85);
}

.sna-footer-list a:hover,
.sna-footer-list a:focus {
  color: #ffffff;
}

.sna-footer-support p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(232, 232, 232, 0.82);
}

.sna-support-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #000000 !important;
  border-radius: 999px;
  padding: 0.6rem 1.3rem;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sna-support-btn:hover,
.sna-support-btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(191, 255, 0, 0.25);
}

.sna-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  font-size: 0.78rem;
  border-top: 1px solid rgba(255, 215, 0, 0.18);
  padding-top: 0.85rem;
}

.sna-visitor {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: #ffd700;
}

.sna-copy {
  color: #9aa4bc;
  font-size: 0.78rem;
}

@media (max-width: 768px) {
  .sna-footer-middle {
    grid-template-columns: 1fr;
  }

  .sna-footer-col {
    padding: 1.1rem 1.2rem;
  }

  .sna-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
 @media (prefers-reduced-motion: no-preference) {
 .card,
 .testimonial {
 opacity: 0;
 transform: translateY(20px);
 animation: fadeInUp 0.6s ease-out forwards;
 }

 .card:nth-child(1) { animation-delay: 0.1s; }
 .card:nth-child(2) { animation-delay: 0.2s; }
 .card:nth-child(3) { animation-delay: 0.3s; }
 }

 .progress-section {
 background: rgba(26, 10, 10, 0.6);
 backdrop-filter: blur(10px);
 padding: 2rem;
 border-radius: 10px;
 margin: 2rem 0;
 border: 1px solid rgba(var(--gold-rgb), 0.32);
 }

 .progress-header {
 display: flex;
 justify-content: space-between;
 align-items: center;
 margin-bottom: 1rem;
 flex-wrap: wrap;
 gap: 1rem;
 }

 .progress-bar-container {
 width: 100%;
 height: 30px;
 background: rgba(255, 215, 0, 0.1);
 border-radius: 15px;
 overflow: hidden;
 position: relative;
 margin: 1rem 0;
 }

 .progress-bar {
 height: 100%;
 width: 0%;
 background: linear-gradient(90deg, var(--accent), var(--accent-dark));
 border-radius: 15px;
 transition: width 1s ease-out;
 position: relative;
 box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
 }

 .progress-bar::after {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 bottom: 0;
 background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
 animation: shimmer 2s infinite;
 }

 @keyframes shimmer {
 0% { transform: translateX(-100%); }
 100% { transform: translateX(100%); }
 }

 .progress-text {
 text-align: center;
 margin-top: 0.5rem;
 color: var(--text-muted);
 font-size: 0.9rem;
 }

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

 .support-modal-overlay[hidden] {
 display: none;
 }

 .support-modal-overlay {
 position: fixed;
 inset: 0;
 background: rgba(0, 0, 0, 0.7);
 display: none;
 align-items: center;
 justify-content: center;
 z-index: 1100;
 padding: 1.5rem;
 backdrop-filter: blur(3px);
 opacity: 0;
 transition: opacity 0.3s ease;
}

.support-modal-overlay.visible {
 display: flex;
 opacity: 1;
 }

.support-modal-panel {
  position: relative;
  background: rgba(26, 10, 10, 0.95);
  border: 1px solid rgba(var(--gold-rgb), 0.42);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55), 0 0 25px rgba(255, 215, 0, 0.2);
  border-radius: 14px;
  padding: 2.2rem 2.4rem;
  max-width: 480px;
  width: 100%;
  isolation: isolate;
}

.support-modal-panel::before {
  content: "";
  position: absolute;
  inset: -25% -35% 30% -35%;
  background: radial-gradient(circle at 40% 20%, rgba(255, 215, 0, 0.32), transparent 60%),
    radial-gradient(circle at 70% 80%, rgba(255, 0, 0, 0.22), transparent 70%);
  opacity: 0.55;
  filter: blur(22px);
  pointer-events: none;
  z-index: -1;
}

.share-support {
  margin-top: 1.4rem;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  padding-top: 1.2rem;
  text-align: center;
}

.share-support-title {
  color: var(--accent);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.share-support-copy {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.share-support-qr {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 0.85rem;
}

.share-support-qr-box {
  width: 200px;
  height: 200px;
  padding: 0.75rem;
  background: #000000;
  border-radius: 12px;
  border: 2px solid rgba(255, 215, 0, 0.35);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.45), inset 0 0 18px rgba(255, 215, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}

.share-support-qr-label {
  display: block;
  margin-top: 0.4rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 215, 0, 0.85);
}

@media (max-width: 640px) {
  .share-support-qr {
    flex-direction: column;
    gap: 0.6rem;
  }

  .share-support-qr-box {
    width: 170px;
    height: 170px;
  }
}

 .support-modal-close {
 position: absolute;
 top: 0.75rem;
 right: 0.85rem;
 background: transparent;
 border: none;
 color: var(--text-muted);
 font-size: 1.6rem;
 cursor: pointer;
 line-height: 1;
 transition: color 0.2s ease;
 }

 .support-modal-close:hover,
 .support-modal-close:focus {
 color: var(--accent);
 }

 .support-modal-content {
 text-align: center;
 }

 .support-modal-content h3 {
 font-size: 1.6rem;
 margin-bottom: 1rem;
 color: var(--accent);
 }

 .support-modal-content p {
 font-size: 1rem;
 color: var(--text-light);
 margin-bottom: 1.5rem;
 line-height: 1.6;
 }

 .support-modal-actions {
 display: flex;
 flex-direction: column;
 gap: 0.75rem;
 }

 .support-modal-button {
 padding: 0.9rem 1.2rem;
 border-radius: 8px;
 border: none;
 cursor: pointer;
 font-size: 1rem;
 font-weight: 600;
 transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
 }

 .support-modal-button.primary {
 background: linear-gradient(135deg, rgba(255, 215, 0, 0.9), rgba(255, 80, 0, 0.8));
 color: #1a0a0a;
 box-shadow: 0 10px 25px rgba(255, 215, 0, 0.35);
 }

 .support-modal-button.secondary {
 background: rgba(26, 10, 10, 0.75);
 border: 1px solid rgba(var(--gold-rgb), 0.42);
 color: var(--text-light);
 box-shadow: 0 6px 18px rgba(255, 215, 0, 0.18);
 }

 .support-modal-button:hover,
 .support-modal-button:focus {
 transform: translateY(-2px);
 box-shadow: 0 14px 32px rgba(255, 215, 0, 0.35);
 }

 .support-modal-button.secondary:hover,
 .support-modal-button.secondary:focus {
 background: rgba(26, 10, 10, 0.9);
 }

 body.support-modal-open {
 overflow: hidden;
 }

 @media (min-width: 480px) {
 .support-modal-actions {
  flex-direction: row;
  justify-content: center;
 }

 .support-modal-button {
  flex: 1 1 auto;
 }
 }

 .social-share {
 display: flex;
 gap: 1rem;
 justify-content: center;
 flex-wrap: wrap;
 margin: 2rem 0;
 }

 .social-button {
 display: inline-flex;
 align-items: center;
 gap: 0.5rem;
 padding: 0.75rem 1.5rem;
 border-radius: 8px;
 background: var(--card-bg);
 border: 1px solid rgba(var(--gold-rgb), 0.36);
 color: var(--text-light);
 transition: all 0.3s ease;
 text-decoration: none;
 }

 .social-button:hover {
 background: var(--card-bg-light);
 border-color: var(--accent);
 transform: translateY(-2px);
 box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
 text-decoration: none;
 color: var(--accent);
 }

 .legal-section {
 padding: 2.5rem 0;
 }

 .legal-card {
 background: rgba(10, 20, 25, 0.65);
 border: 1px solid rgba(var(--gold-rgb), 0.36);
 border-radius: 12px;
 padding: 2rem;
 margin-bottom: 1.5rem;
 box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
 }

 .legal-card h3 {
 font-size: 1.2rem;
 margin-bottom: 1rem;
 color: var(--accent);
 }

 .legal-card p,
 .legal-card li {
 font-size: 0.95rem;
 line-height: 1.6;
 color: var(--text-light);
 }

 .legal-card ul {
 margin: 0 0 1rem 1.25rem;
 padding: 0;
 }

 .legal-placeholder {
 color: var(--danger);
 font-style: italic;
 }

 .legal-note {
 font-size: 0.85rem;
 color: var(--text-muted);
 margin-top: 1.5rem;
 border-top: 1px solid rgba(255, 215, 0, 0.2);
 padding-top: 1rem;
 }

 .social-button.facebook { border-color: #1877f2; }
 .social-button.twitter { border-color: #1da1f2; }
 .social-button.whatsapp { border-color: #25d366; }

 .faq-container {
 max-width: 800px;
 margin: 0 auto;
 }

 .faq-item {
 background: var(--card-bg);
 margin-bottom: 1rem;
 border-radius: 8px;
 border: 1px solid rgba(var(--gold-rgb), 0.36);
 overflow: hidden;
 transition: all 0.3s ease;
 }

 .faq-item:hover {
 border-color: rgba(255, 215, 0, 0.4);
 }

 .faq-question {
 padding: 1.5rem;
 cursor: pointer;
 display: flex;
 justify-content: space-between;
 align-items: center;
 font-weight: 600;
 color: var(--accent);
 user-select: none;
 background: transparent;
 border: none;
 width: 100%;
 text-align: left;
 font-family: inherit;
 font-size: inherit;
 }

 .faq-question:hover {
 opacity: 0.9;
 }

 .faq-question:focus-visible {
 outline: 2px solid var(--accent);
 outline-offset: 4px;
 }

 .faq-toggle-icon {
 font-size: 1.5rem;
 color: var(--accent);
 transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
 flex-shrink: 0;
 margin-left: 1rem;
 }

 .faq-item.active .faq-toggle-icon {
 transform: rotate(45deg);
 }

 .faq-answer {
 max-height: 0;
 overflow: hidden;
 transition: max-height 0.25s cubic-bezier(0.4, 0, 0.2, 1);
 padding: 0 1.5rem;
 will-change: max-height;
 }

 .faq-item.active .faq-answer {
 max-height: 1000px;
 padding: 1.5rem;
 }

 .donation-faq {
 opacity: 0.85;
 border-color: rgba(255, 215, 0, 0.15);
 }

 .donation-faq:hover {
 opacity: 1;
 border-color: rgba(255, 215, 0, 0.3);
 }

 .donation-faq .faq-question {
 font-size: 0.95rem;
 color: var(--text-muted);
 }

 .donation-qr-container {
 text-align: center;
 margin-top: 1rem;
 padding: 1rem;
 }

 .donation-qr-container iframe {
 border-radius: 8px;
 }

 .newsletter-box {
 background: linear-gradient(135deg, var(--card-bg), var(--card-bg-light));
 padding: 1.8rem;
 border-radius: 10px;
 border: 2px solid rgba(255, 215, 0, 0.3);
 text-align: center;
 margin: 2rem 0;
 }

 .newsletter-form {
 display: flex;
 gap: 1rem;
 max-width: 500px;
 margin: 1.5rem auto 0;
 flex-wrap: wrap;
 }

 .newsletter-input {
 flex: 1;
 min-width: 200px;
 padding: 0.75rem 1rem;
 border: 1px solid rgba(var(--gold-rgb), 0.36);
 border-radius: 8px;
 background: var(--bg-color);
 color: var(--text-light);
 font-size: 1rem;
 }

 .newsletter-success {
 display: none;
 background: var(--success);
 color: var(--bg-color);
 padding: 1rem;
 border-radius: 8px;
 margin-top: 1rem;
 text-align: center;
 font-weight: 600;
 }

 .newsletter-success.show {
 display: block;
 animation: fadeInUp 0.5s ease-out;
 }

 .newsletter-error {
 display: none;
 background: var(--danger);
 color: #fff;
 padding: 1rem;
 border-radius: 8px;
 margin-top: 1rem;
 text-align: center;
 font-weight: 600;
 }

 .newsletter-error.show {
 display: block;
 animation: fadeInUp 0.5s ease-out;
 }

 .trust-badges {
 display: flex;
 justify-content: center;
 gap: 2rem;
 flex-wrap: wrap;
 margin: 2rem 0;
 padding: 2rem;
 background: var(--card-bg);
 border-radius: 12px;
 }

 .trust-badge {
 text-align: center;
 padding: 1rem;
 }

 .trust-badge-icon {
 font-size: 2.5rem;
 margin-bottom: 0.5rem;
 display: block;
 }

 .trust-badge-text {
 font-size: 0.9rem;
 color: var(--text-muted);
 }

 .timeline {
 position: relative;
 padding: 2rem 0;
 max-width: 800px;
 margin: 0 auto;
 }

 .timeline::before {
 content: "";
 position: absolute;
 left: 50%;
 top: 0;
 bottom: 0;
 width: 2px;
 background: rgba(255, 215, 0, 0.3);
 transform: translateX(-50%);
 }

 .timeline-item {
 position: relative;
 margin-bottom: 3rem;
 display: flex;
 align-items: center;
 }

 .timeline-item:nth-child(odd) {
 flex-direction: row;
 }

 .timeline-item:nth-child(even) {
 flex-direction: row-reverse;
 }

 .timeline-content {
 flex: 1;
 background: var(--card-bg);
 padding: 1.5rem;
 border-radius: 8px;
 border: 1px solid rgba(var(--gold-rgb), 0.36);
 margin: 0 2rem;
 }

 .timeline-dot {
 width: 20px;
 height: 20px;
 border-radius: 50%;
 background: var(--accent);
 border: 4px solid var(--bg-color);
 position: absolute;
 left: 50%;
 transform: translateX(-50%);
 box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
 }

 .timeline-date {
 font-weight: 600;
 color: var(--accent);
 margin-bottom: 0.5rem;
 }

 .video-container {
 position: relative;
 padding-bottom: 56.25%;
 height: 0;
 overflow: hidden;
 border-radius: 12px;
 margin: 2rem 0;
 background: var(--card-bg);
 }

 .video-container iframe {
 position: absolute;
 top: 0;
 left: 0;
 width: 100%;
 height: 100%;
 }

 .impact-grid {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
 gap: 2rem;
 margin: 3rem 0;
 }

 .impact-item {
 text-align: center;
 padding: 2rem;
 background: var(--card-bg);
 border-radius: 12px;
 border: 1px solid rgba(var(--gold-rgb), 0.36);
 transition: all 0.3s ease;
 }

 .impact-item:hover {
 transform: translateY(-5px);
 border-color: rgba(255, 215, 0, 0.4);
 box-shadow: 0 8px 25px rgba(255, 215, 0, 0.2);
 }

 .impact-number {
 font-size: 3rem;
 font-weight: 700;
 color: var(--accent);
 display: block;
 margin-bottom: 0.5rem;
 }

 .player-stats-section {
 background: var(--card-bg);
 padding: 2rem;
 border-radius: 10px;
 border: 1px solid rgba(var(--gold-rgb), 0.36);
 margin: 2rem 0;
 }

 .professional-chart-container {
 margin: 4rem 0;
 padding: 3rem;
 background: linear-gradient(135deg, rgba(13, 17, 23, 0.95), rgba(22, 27, 34, 0.95));
 border: 2px solid rgba(255, 215, 0, 0.3);
 border-radius: 16px;
 box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 215, 0, 0.1);
 position: relative;
 overflow: hidden;
 }

 .professional-chart-container::before {
 content: "";
 position: absolute;
 top: 0;
 left: 0;
 right: 0;
 height: 2px;
 background: linear-gradient(90deg, transparent, var(--accent), transparent);
 }

 .chart-header {
 text-align: center;
 margin-bottom: 2.5rem;
 padding-bottom: 1.5rem;
 border-bottom: 1px solid rgba(255, 215, 0, 0.2);
 }

 .chart-wrapper {
 display: flex;
 gap: 1.5rem;
 min-height: 400px;
 position: relative;
 }

 .chart-y-axis {
 display: flex;
 flex-direction: column;
 justify-content: space-between;
 min-width: 60px;
 padding-right: 1rem;
 border-right: 2px solid rgba(255, 215, 0, 0.2);
 }

 .y-axis-label {
 font-size: 0.85rem;
 color: var(--text-muted);
 font-weight: 600;
 text-align: right;
 }

 .line-chart-container {
 flex: 1;
 position: relative;
 padding: 1rem;
 min-height: 400px;
 }

 .line-chart {
 width: 100%;
 height: 100%;
 min-height: 400px;
 }

 .line-path {
 stroke-dasharray: 2000;
 stroke-dashoffset: 2000;
 animation: drawLine 2s ease-out forwards;
 }

 .area-path {
 opacity: 0;
 animation: fadeInArea 2s ease-out 0.5s forwards;
 }

 @keyframes drawLine {
 to {
 stroke-dashoffset: 0;
 }
 }

 @keyframes fadeInArea {
 to {
 opacity: 1;
 }
 }

 .data-point {
 cursor: pointer;
 transition: r 0.3s ease, fill-opacity 0.3s ease;
 }

 .data-point:hover {
 r: 7;
 fill-opacity: 0.8;
 }

 .chart-x-axis {
 display: flex;
 justify-content: space-between;
 padding-top: 1rem;
 margin-top: 0.5rem;
 border-top: 1px solid rgba(255, 215, 0, 0.2);
 }

 .x-axis-label {
 font-size: 0.75rem;
 color: var(--text-muted);
 font-weight: 500;
 text-align: center;
 flex: 1;
 }

 .chart-bars-container {
 flex: 1;
 display: flex;
 align-items: flex-end;
 justify-content: space-around;
 gap: 1.5rem;
 padding-bottom: 2rem;
 position: relative;
 }

 .chart-bars-container::before {
 content: "";
 position: absolute;
 bottom: 0;
 left: 0;
 right: 0;
 height: 2px;
 background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.3), transparent);
 }

 .chart-bar-group {
 flex: 1;
 display: flex;
 justify-content: center;
 }

 .chart-bar-item {
 width: 100%;
 max-width: 120px;
 height: 100%;
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: flex-end;
 position: relative;
 cursor: pointer;
 transition: transform 0.3s ease;
 }

 .chart-bar-item:hover {
 transform: translateY(-5px);
 }

 .bar-fill {
 width: 100%;
 min-height: 20px;
 border-radius: 8px 8px 0 0;
 position: relative;
 display: flex;
 flex-direction: column;
 align-items: center;
 justify-content: flex-start;
 padding-top: 0.5rem;
 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
 transition: all 0.3s ease;
 animation: barGrow 1s ease-out;
 }

 @keyframes barGrow {
 from {
 height: 0;
 opacity: 0;
 }
 to {
 opacity: 1;
 }
 }

 .bar-fill.launch-peak {
 background: linear-gradient(180deg, #ffd700 0%, #ffed4e 50%, #daa520 100%);
 }

 .bar-fill.success-bar {
 background: linear-gradient(180deg, #4ade80 0%, #22c55e 50%, #16a34a 100%);
 }

 .bar-fill.decline-bar {
 background: linear-gradient(180deg, #ef4444 0%, #dc2626 50%, #b91c1c 100%);
 }

 .bar-value {
 font-size: 1.1rem;
 font-weight: 700;
 color: #fff;
 text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
 margin-bottom: 0.25rem;
 }

 .bar-label {
 font-size: 0.75rem;
 color: rgba(255, 255, 255, 0.9);
 text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
 text-align: center;
 }

 .chart-legend {
 display: flex;
 justify-content: center;
 gap: 2rem;
 margin-top: 2rem;
 padding-top: 2rem;
 border-top: 1px solid rgba(255, 215, 0, 0.2);
 flex-wrap: wrap;
 }

 .legend-item {
 display: flex;
 align-items: center;
 gap: 0.75rem;
 font-size: 0.9rem;
 color: var(--text-light);
 }

 .legend-color {
 width: 24px;
 height: 12px;
 border-radius: 3px;
 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
 }

 .stats-highlight {
 display: grid;
 grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
 gap: 1.5rem;
 margin-top: 2rem;
 }

 .stat-highlight-box {
 background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(15, 31, 46, 0.8));
 padding: 1.5rem;
 border-radius: 8px;
 border: 1px solid rgba(var(--gold-rgb), 0.36);
 text-align: center;
 }

 .stat-highlight-number {
 font-size: 2.5rem;
 font-weight: 700;
 color: var(--accent);
 display: block;
 margin-bottom: 0.5rem;
 }

 .stat-highlight-label {
 font-size: 0.9rem;
 color: var(--text-muted);
 text-transform: uppercase;
 letter-spacing: 1px;
    }

/* ===== STYLE BLOCK 2 ===== */

/* Klaro Cookie Banner - Dark Gold Theme Anpassung */
.klaro {
  font-family: 'Inter', Arial, sans-serif !important;
}

.klaro .cookie-modal {
  background: linear-gradient(135deg, #0a0505 0%, #1a0a0a 50%, #0a0505 100%) !important;
  border: 2px solid rgba(255, 215, 0, 0.3) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.1) !important;
  color: #f5f5f5 !important;
  font-family: 'Inter', Arial, sans-serif !important;
}

.klaro .cookie-notice {
  background: linear-gradient(135deg, #0a0505 0%, #1a0a0a 50%, #0a0505 100%) !important;
  border-top: 3px solid rgba(255, 215, 0, 0.6) !important;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 215, 0, 0.15) !important;
  color: #f5f5f5 !important;
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 10000 !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 1.75rem 1.5rem !important;
  border-radius: 0 !important;
  display: block !important;
  animation: slideUp 0.4s ease-out !important;
  transform: translateY(0) !important;
  opacity: 1 !important;
  font-family: 'Inter', Arial, sans-serif !important;
  backdrop-filter: blur(10px) !important;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.klaro .cookie-modal .cm-header h1,
.klaro .cookie-notice .cm-header h1 {
  color: #FFD700 !important;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5) !important;
  font-family: 'Cinzel', serif !important;
  font-weight: 600 !important;
  font-size: 1.5rem !important;
  letter-spacing: 0.5px !important;
  margin-bottom: 0.75rem !important;
}

.klaro .cookie-modal .cm-header p,
.klaro .cookie-notice .cm-header p,
.klaro .cookie-modal .cm-body p,
.klaro .cookie-notice .cm-body p {
  color: #f5f5f5 !important;
  font-family: 'Inter', Arial, sans-serif !important;
  font-size: 0.95rem !important;
  line-height: 1.6 !important;
  margin-bottom: 0.5rem !important;
}

.klaro .cookie-notice .cm-header {
  text-align: center !important;
  margin-bottom: 1.25rem !important;
}

.klaro .cookie-modal .cm-header a,
.klaro .cookie-notice .cm-header a {
  color: #FFD700 !important;
  border-bottom-color: rgba(255, 215, 0, 0.3) !important;
}

.klaro .cookie-modal .cm-header a:hover,
.klaro .cookie-notice .cm-header a:hover {
  color: #ffed4e !important;
  border-bottom-color: rgba(255, 215, 0, 0.6) !important;
  text-shadow: 0 0 8px rgba(255, 215, 0, 0.4) !important;
}

.klaro .cm-btn {
  border-radius: 8px !important;
  transition: all 0.3s ease !important;
  font-weight: 600 !important;
  font-family: 'Inter', Arial, sans-serif !important;
  font-size: 0.95rem !important;
  padding: 0.75rem 1.5rem !important;
  text-transform: none !important;
  letter-spacing: 0.3px !important;
  cursor: pointer !important;
}

.klaro .cm-btn-success,
.klaro .cm-btn-accept,
.klaro .cm-btn-accept-all {
  background: linear-gradient(135deg, #FFD700 0%, #FFC700 100%) !important;
  color: #000000 !important;
  border: 2px solid rgba(255, 215, 0, 0.6) !important;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  text-shadow: none !important;
}

.klaro .cm-btn-success:hover,
.klaro .cm-btn-accept:hover,
.klaro .cm-btn-accept-all:hover {
  background: linear-gradient(135deg, #BFFF00 0%, #9FFF00 100%) !important;
  color: #000000 !important;
  box-shadow: 0 6px 16px rgba(191, 255, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.3) !important;
  transform: translateY(-2px) !important;
  border-color: rgba(191, 255, 0, 0.8) !important;
}

.klaro .cm-btn-success:active,
.klaro .cm-btn-accept:active,
.klaro .cm-btn-accept-all:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4), inset 0 2px 4px rgba(0, 0, 0, 0.2) !important;
}

.klaro .cm-btn-decline,
.klaro .cm-btn-danger {
  background: rgba(255, 215, 0, 0.08) !important;
  color: #FFD700 !important;
  border: 2px solid rgba(255, 215, 0, 0.4) !important;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.15) !important;
}

.klaro .cm-btn-decline:hover,
.klaro .cm-btn-danger:hover {
  background: rgba(255, 215, 0, 0.15) !important;
  border-color: rgba(255, 215, 0, 0.6) !important;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.25) !important;
  color: #ffed4e !important;
  transform: translateY(-1px) !important;
}

.klaro .cm-list-title {
  color: #FFD700 !important;
  font-family: 'Inter', Arial, sans-serif !important;
  font-weight: 600 !important;
  font-size: 1rem !important;
}

.klaro .cm-list-description {
  color: #b0b0b0 !important;
  font-family: 'Inter', Arial, sans-serif !important;
  font-size: 0.9rem !important;
  line-height: 1.5 !important;
}

.klaro .cm-switch .slider {
  background-color: rgba(255, 215, 0, 0.25) !important;
  border: 1px solid rgba(255, 215, 0, 0.3) !important;
  transition: all 0.3s ease !important;
}

.klaro .cm-list-input:checked + .cm-list-label .slider {
  background-color: #FFD700 !important;
  border-color: rgba(255, 215, 0, 0.8) !important;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.4) !important;
}

.klaro .cm-list-input:checked + .cm-list-label .slider::before {
  background-color: #000000 !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.klaro .cm-switch .slider::before {
  background-color: #f5f5f5 !important;
  transition: all 0.3s ease !important;
}

.klaro .cm-required {
  color: #FFD700 !important;
  background: rgba(255, 215, 0, 0.1) !important;
  padding: 2px 6px !important;
  border-radius: 4px !important;
  font-size: 0.85em !important;
}

.klaro .cm-opt-out {
  color: #BFFF00 !important;
  background: rgba(191, 255, 0, 0.1) !important;
  padding: 2px 6px !important;
  border-radius: 4px !important;
  font-size: 0.85em !important;
}

.klaro .cm-powered-by {
  color: #999999 !important;
  font-size: 0.85em !important;
}

.klaro .cm-powered-by a {
  color: #FFD700 !important;
}

.klaro .cm-powered-by a:hover {
  color: #ffed4e !important;
}

.klaro .hide {
  color: #f5f5f5 !important;
  opacity: 0.7 !important;
}

.klaro .hide:hover {
  opacity: 1 !important;
  color: #FFD700 !important;
}

.klaro .cm-bg {
  background: rgba(0, 0, 0, 0.8) !important;
  backdrop-filter: blur(4px) !important;
}

/* Responsive Anpassungen für Cookie Notice */
.klaro .cookie-notice {
  padding-bottom: env(safe-area-inset-bottom) !important;
}

.klaro .cookie-notice .cm-body {
  padding: 0 !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
}

.klaro .cookie-notice .cm-footer {
  padding: 1.25rem 0 0 0 !important;
  flex-wrap: wrap !important;
  gap: 0.75rem !important;
  margin-top: 1.25rem !important;
  border-top: 1px solid rgba(255, 215, 0, 0.2) !important;
}

.klaro .cookie-notice .cm-footer-buttons {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 0.75rem !important;
  width: 100% !important;
  justify-content: center !important;
}

.klaro .cookie-notice .cm-btn {
  flex: 0 1 auto !important;
  min-width: 140px !important;
  max-width: 200px !important;
}

/* Ausblend-Animation wenn Banner geschlossen wird */
.klaro .cookie-notice.hide {
  animation: slideDown 0.3s ease-in forwards !important;
  display: none !important;
}

/* Sicherstellen, dass der Banner sichtbar ist wenn er nicht versteckt ist */
.klaro .cookie-notice:not(.hide) {
  display: block !important;
  visibility: visible !important;
}

@keyframes slideDown {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}

/* Mobile Optimierung - Umfassend */
@media (max-width: 768px) {
  /* Base Mobile Fixes */
  html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative !important;
  }

  /* Prevent horizontal scroll */
  * {
    max-width: 100% !important;
  }

  /* Ensure all fixed elements respect viewport */
  [class*="fixed"] {
    max-width: 100vw !important;
  }

  /* Cookie Banner Mobile */
  .klaro .cookie-notice {
    padding: 1rem 0.75rem !important;
    border-radius: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .klaro .cookie-notice .cm-header {
    padding: 0 0.5rem !important;
    margin-bottom: 0.75rem !important;
  }

  .klaro .cookie-notice .cm-header h1 {
    font-size: 1.1rem !important;
    margin-bottom: 0.5rem !important;
    line-height: 1.3 !important;
  }

  .klaro .cookie-notice .cm-header p,
  .klaro .cookie-notice .cm-body p {
    font-size: 0.85rem !important;
    line-height: 1.4 !important;
    padding: 0 0.5rem !important;
  }

  .klaro .cookie-notice .cm-footer {
    padding: 0.75rem 0.5rem 0 !important;
    margin-top: 0.75rem !important;
  }

  .klaro .cookie-notice .cm-footer-buttons {
    flex-direction: column !important;
    gap: 0.5rem !important;
    width: 100% !important;
  }

  .klaro .cookie-notice .cm-btn {
    font-size: 0.9rem !important;
    padding: 0.75rem 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: auto !important;
    margin: 0 !important;
  }

  /* Support Modal Mobile */
  .support-modal-overlay {
    padding: 0 !important;
    align-items: flex-end !important;
    width: 100vw !important;
    max-width: 100vw !important;
    left: 0 !important;
    right: 0 !important;
  }

  .support-modal-panel {
    max-width: 100% !important;
    width: 100% !important;
    padding: 1.5rem 1rem !important;
    border-radius: 16px 16px 0 0 !important;
    margin: 0 !important;
    max-height: 90vh !important;
    overflow-y: auto !important;
    box-sizing: border-box !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .support-modal-content h3 {
    font-size: 1.3rem !important;
    margin-bottom: 0.75rem !important;
  }

  .support-modal-content p {
    font-size: 0.9rem !important;
    margin-bottom: 1rem !important;
    line-height: 1.5 !important;
  }

  .support-modal-actions {
    flex-direction: column !important;
    gap: 0.75rem !important;
  }

  .support-modal-button {
    width: 100% !important;
    padding: 0.85rem 1rem !important;
    font-size: 0.95rem !important;
  }

  .support-modal-close {
    top: 0.5rem !important;
    right: 0.5rem !important;
    font-size: 1.8rem !important;
  }

  /* QR Code Container Mobile */
  .support-modal-content div[style*="width: 200px"] {
    width: 180px !important;
    height: 180px !important;
    padding: 0.5rem !important;
  }

  .support-modal-content div[style*="width: 180px"] {
    width: 160px !important;
    height: 160px !important;
  }

  /* Share Modal Mobile */
  .share-options {
    margin: 1rem 0 !important;
    gap: 0.75rem !important;
  }

  .share-option {
    margin-bottom: 0.75rem !important;
  }

  .share-option label {
    font-size: 0.9rem !important;
    margin-bottom: 0.4rem !important;
  }

  .share-option input,
  .share-option textarea {
    font-size: 0.85rem !important;
    padding: 0.6rem !important;
  }

  .share-option button {
    width: 100% !important;
    padding: 0.75rem !important;
    font-size: 0.9rem !important;
  }

  /* Hero Section Mobile */
  .hero {
    min-height: 300px !important;
    padding: 1rem 0 !important;
  }

  .hero-content {
    padding: 1rem !important;
  }

  .hero-content h1 {
    font-size: clamp(1.8rem, 7vw, 2.5rem) !important;
    margin-bottom: 0.6rem !important;
    line-height: 1.2 !important;
  }

  .hero-content .subtitle {
    font-size: clamp(0.9rem, 3.5vw, 1.2rem) !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.4 !important;
  }

  .hero-stats {
    flex-direction: column !important;
    gap: 0.75rem !important;
    margin: 1rem 0 !important;
  }

  

  

  

  /* Buttons Mobile - Touch-friendly (min 44x44px) */
  .cta-button {
    padding: 0.875rem 1.5rem !important;
    font-size: 1rem !important;
    margin: 0.5rem 0.25rem !important;
    width: calc(100% - 0.5rem) !important;
    max-width: 100% !important;
    min-height: 44px !important;
    display: block !important;
    text-align: center !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: rgba(255, 215, 0, 0.3) !important;
  }

  .cta-button.secondary {
    padding: 0.875rem 1.25rem !important;
    font-size: 0.95rem !important;
    min-height: 44px !important;
  }

  /* All clickable elements - Touch-friendly */
  a, button, [role="button"], [onclick] {
    min-height: 44px !important;
    min-width: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    touch-action: manipulation !important;
  }

  /* Links in text */
  p a, li a, span a {
    min-height: auto !important;
    min-width: auto !important;
    padding: 0.25rem 0 !important;
    display: inline !important;
  }

  /* Floating CTA Mobile */
  .floating-cta {
    right: 0.5rem !important;
    bottom: 0.5rem !important;
    left: 0.5rem !important;
    width: auto !important;
  }

  .floating-cta-button {
    width: 100% !important;
    padding: 0.7rem 1rem !important;
    font-size: 0.85rem !important;
    text-align: center !important;
    justify-content: center !important;
  }

  /* Language Switcher Mobile */
  .language-switcher {
    top: 0.75rem !important;
    right: 0.75rem !important;
    padding: 0.25rem !important;
    gap: 0.25rem !important;
  }

  .lang-button {
    padding: 0.3rem 0.5rem !important;
    font-size: 0.65rem !important;
  }

  /* Container Mobile */
  .container,
  .container-narrow {
    padding: 1.5rem 1rem !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  section {
    margin-bottom: 2rem !important;
    padding: 0 0.75rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  /* Prevent overflow in all sections */
  section > * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  section h2 {
    font-size: clamp(1.5rem, 5vw, 1.9rem) !important;
    margin-bottom: 1rem !important;
    padding-bottom: 0.6rem !important;
  }

  /* Cards Mobile */
  .card {
    padding: 1rem !important;
    margin-bottom: 0.75rem !important;
  }

  .card h3 {
    font-size: 1.1rem !important;
    margin-bottom: 0.5rem !important;
  }

  .card p {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
  }

  /* Footer Mobile */
  .sna-footer {
    padding: 1rem 0.75rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  .sna-footer-inner {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    gap: 1rem !important;
  }

  .sna-footer-top {
    margin-bottom: 0.75rem !important;
  }

  .sna-footer-top p {
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
    margin-bottom: 0.5rem !important;
  }

  .sna-footer-middle {
    flex-direction: column !important;
    gap: 1rem !important;
  }

  .sna-footer-col {
    width: 100% !important;
    margin-bottom: 0.75rem !important;
    gap: 0.4rem !important;
  }

  .sna-footer-col h4 {
    font-size: 0.8rem !important;
    margin-bottom: 0.5rem !important;
  }

  .sna-footer-list {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.5rem !important;
  }

  .sna-footer-list li {
    margin-bottom: 0 !important;
  }

  .sna-footer-list a {
    font-size: 0.75rem !important;
    padding: 0.45rem 0.5rem !important;
    min-height: 32px !important;
  }

  .sna-footer-support p {
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
  }

  .sna-support-btn {
    width: 100% !important;
    padding: 0.5rem 0.85rem !important;
    font-size: 0.75rem !important;
    text-align: center !important;
    display: block !important;
  }

  .sna-footer-bottom {
    flex-direction: column !important;
    gap: 0.5rem !important;
    padding-top: 0.75rem !important;
    text-align: center !important;
  }

  .sna-visitor,
  .sna-copy {
    font-size: 0.7rem !important;
    width: 100% !important;
    text-align: center !important;
  }

  /* Social Share Mobile */
  .social-share {
    flex-direction: column !important;
    gap: 0.75rem !important;
    margin: 1.5rem 0 !important;
  }

  .social-button {
    width: 100% !important;
    padding: 0.7rem 1rem !important;
    font-size: 0.85rem !important;
    justify-content: center !important;
  }

  /* Timeline Mobile */
  .timeline-item {
    padding-left: 2rem !important;
    margin-bottom: 1.5rem !important;
  }

  .timeline-item::before {
    left: 0.5rem !important;
    width: 12px !important;
    height: 12px !important;
  
  top: -2cm;
}

  /* Grid Mobile */
  .testimonials-grid,
  .features-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  /* Text Mobile */
  p {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
  }

  ul, ol {
    padding-left: 1.25rem !important;
  }

  li {
    font-size: 0.9rem !important;
    line-height: 1.6 !important;
    margin-bottom: 0.5rem !important;
  }

  /* Weitere Performance-Optimierungen für mobile Geräte */

  /* Smooth Scrolling optimieren */
  html {
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
  }

  /* GPU-Beschleunigung für Scroll-Container */
  .petition-feed-container,
  .guestbook-entries,
  .support-modal-panel,
  .klaro .cookie-notice {
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    will-change: scroll-position;
  }

  /* Reduce Repaints bei Scroll */
  body {
    contain: layout style paint;
    overflow-x: hidden;
  }

  /* Optimierung für langsame Verbindungen */
  img[loading="lazy"] {
    content-visibility: auto;
  }

  /* Reduce Layout Shifts */
  video, iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
  }

  /* Optimierung für Touch-Events */
  button, a, [role="button"] {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(255, 215, 0, 0.2);
  }

  /* Reduce JavaScript-Overhead */
  .hero-content h1,
  .hero-content .subtitle {
    contain: layout style paint;
  }
}

/* Sehr kleine Bildschirme (unter 480px) */
@media (max-width: 480px) {
  /* Base fixes for very small screens */
  html, body {
    font-size: 14px !important;
  }

  .hero-content h1 {
    font-size: 1.5rem !important;
    line-height: 1.2 !important;
  }

  .hero-content .subtitle {
    font-size: 0.9rem !important;
    line-height: 1.3 !important;
  }

  .support-modal-panel {
    padding: 1.25rem 0.75rem !important;
    max-height: 95vh !important;
  }

  .support-modal-content h3 {
    font-size: 1.1rem !important;
  }

  .support-modal-content p {
    font-size: 0.85rem !important;
  }

  .support-modal-button {
    padding: 0.75rem 0.85rem !important;
    font-size: 0.9rem !important;
    min-height: 44px !important;
  }

  .klaro .cookie-notice {
    padding: 0.75rem 0.5rem !important;
  }

  .klaro .cookie-notice .cm-header h1 {
    font-size: 0.95rem !important;
  }

  .klaro .cookie-notice .cm-header p,
  .klaro .cookie-notice .cm-body p {
    font-size: 0.75rem !important;
    line-height: 1.4 !important;
  }

  .klaro .cookie-notice .cm-btn {
    padding: 0.65rem 0.85rem !important;
    font-size: 0.85rem !important;
    min-height: 44px !important;
  }

  .container,
  .container-narrow {
    padding: 1rem 0.75rem !important;
  }

  section {
    padding: 0 0.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  section h2 {
    font-size: 1.3rem !important;
  }

  .floating-cta-button {
    font-size: 0.8rem !important;
    padding: 0.7rem 0.85rem !important;
    min-height: 44px !important;
  }

  #musicToggle {
    width: 40px !important;
    height: 40px !important;
    font-size: 1.1rem !important;
    min-width: 40px !important;
    min-height: 40px !important;
  }

  .language-switcher {
    top: 0.5rem !important;
    right: 0.5rem !important;
    padding: 0.2rem !important;
  }

  .lang-button {
    padding: 0.25rem 0.4rem !important;
    font-size: 0.6rem !important;
    min-height: 32px !important;
    min-width: 32px !important;
  }

  .cta-button {
    padding: 0.75rem 1rem !important;
    font-size: 0.9rem !important;
    min-height: 44px !important;
  }

  .sna-footer {
    padding: 0.75rem 0.5rem !important;
  }

  .sna-footer-top p {
    font-size: 0.7rem !important;
  }

  .sna-footer-col h4 {
    font-size: 0.75rem !important;
  }

  .sna-footer-list {
    grid-template-columns: 1fr !important;
    gap: 0.4rem !important;
  }

  .sna-footer-list a {
    font-size: 0.7rem !important;
    min-height: 36px !important;
    display: flex !important;
    align-items: center !important;
    padding: 0.4rem 0.5rem !important;
  }

  .sna-footer-support p {
    font-size: 0.7rem !important;
  }

  .sna-support-btn {
    padding: 0.45rem 0.75rem !important;
    font-size: 0.7rem !important;
    min-height: 36px !important;
  }

  .sna-visitor,
  .sna-copy {
    font-size: 0.65rem !important;
  }

  p {
    font-size: 0.85rem !important;
  }

  li {
    font-size: 0.85rem !important;
  }
}

/* New Campaign Section Styles */
.hero-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(0, 0, 0, 0.8) 100%);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 1.5rem;
  text-align: center;
  font-family: 'Cinzel', serif;
}

.hero-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  text-align: left;
}

.content-section {
  padding: 3rem 0;
  background: rgba(0, 0, 0, 0.4);
}

.content-section.alt {
  background: rgba(255, 215, 0, 0.03);
}

.content-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1.5rem;
  font-family: 'Cinzel', serif;
}

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

.section-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.section-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.section-list li {
  padding: 1rem 0;
  padding-left: 2rem;
  position: relative;
  color: var(--text-light);
  font-size: 1.05rem;
  line-height: 1.8;
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.section-list li:last-child {
  border-bottom: none;
}

.section-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.support-section {
  padding: 3rem 0;
  background: rgba(0, 0, 0, 0.6);
  border-top: 1px solid rgba(255, 215, 0, 0.2);
  border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.support-card {
  background: rgba(255, 215, 0, 0.05);
  border: 1px solid rgba(255, 215, 0, 0.2);
  border-radius: 8px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.support-card:hover {
  background: rgba(255, 215, 0, 0.08);
  border-color: rgba(255, 215, 0, 0.4);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.15);
}

.support-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
  font-family: 'Cinzel', serif;
}

.support-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
}

.cta-row {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #000;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--accent);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-light) 0%, var(--accent) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: transparent;
  color: var(--accent);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  border: 2px solid var(--accent);
}

.btn-secondary:hover {
  background: rgba(255, 215, 0, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.2);
}

.faq-section {
  padding: 3rem 0;
  background: rgba(0, 0, 0, 0.4);
}

.faq-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: rgba(255, 215, 0, 0.03);
  border: 1px solid rgba(255, 215, 0, 0.15);
  border-radius: 8px;
}

.faq-question {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 1rem;
  font-family: 'Cinzel', serif;
}

.faq-answer {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-light);
}

.highlight {
  color: var(--accent);
  font-weight: 600;
}

.link-gold {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
}

.link-gold:hover {
  color: var(--accent-light);
  border-bottom-color: rgba(255, 215, 0, 0.6);
}

.center {
  text-align: center;
}

/* Responsive Styles for Campaign Sections */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .section-text {
    font-size: 1rem;
  }

  .support-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .support-card {
    padding: 1.5rem;
  }

  .cta-row {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .hero-container,
  .content-container {
    padding: 0 1rem;
  }

  .faq-item {
    padding: 1rem;
  }
}

/* ===== STAT-ITEM HAUPT-REGEL ===== */
.stat-item {
  background: rgba(15, 31, 46, 0.85);
  padding: clamp(1rem, 2vw, 1.2rem) clamp(1.5rem, 3vw, 2rem);
  border-radius: 10px;
  border: 1px solid rgba(255, 215, 0, 0.4);
  backdrop-filter: blur(10px);
  min-width: 140px;
  flex: 0 1 auto;
  text-align: center;
}

/* ===== STAT-NUMBER HAUPT-REGEL ===== */
.stat-number {
  font-size: 2rem !important;
  font-weight: 700 !important;
  color: #FFD700 !important;
  line-height: inherit;
  display: block;
  margin-bottom: 0.3rem;
}

/* ===== STAT-LABEL HAUPT-REGEL ===== */
.stat-label {
  font-size: 0.8rem !important;
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 0.4rem;
}
