/* ========================================
   ALLGEMEINE WEBSITE
======================================== */

body {
  margin: 0;
  min-height: 100vh;

  background:
    radial-gradient(
      circle at top left,
      rgba(120, 0, 255, 0.25),
      transparent 35%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(0, 120, 255, 0.2),
      transparent 35%
    ),
    #0d0d0d;

  color: white;

  font-family: Arial, sans-serif;
}

img.emoji {
  height: 1em;
  width: 1em;
  margin: 0 0.05em 0 0.1em;
  vertical-align: -0.1em;
}

/* ========================================
   HEADER
======================================== */

.website-header {
  display: flex;
  justify-content: center;
  align-items: center;

  gap: 25px;

  padding: 30px;

  text-align: center;
}

.profilbild {
  width: 110px;
  height: 110px;

  object-fit: cover;

  border-radius: 50%;

  border: 3px solid white;

  box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

.header-text h1 {
  margin: 0;

  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

  font-size: 64px;

  font-weight: normal;

  color: white;

  text-shadow:
    3px 3px 5px black,
    0 0 8px rgba(255, 255, 255, 0.3);
}

.header-text h1 a {
  color: white;
  text-decoration: none;
}

.header-text h1 a:hover {
  text-shadow:
    3px 3px 5px black,
    0 0 12px rgba(255, 255, 255, 0.7);
}

.header-text p {
  margin: 5px 0 0;

  font-size: 18px;
}

/* ========================================
   NAVIGATION
======================================== */

nav {
  padding: 15px;

  text-align: center;
}

nav a {
  margin: 0 10px;

  padding: 6px 14px;

  color: white;

  text-decoration: none;

  border-radius: 20px;

  transition:
    background-color 0.15s ease,
    box-shadow 0.15s ease;
}

body:not(.js-tabs):not(
    :has(
      #startseite:target,
      #streamplan:target,
      #events:target,
      #partner:target,
      #socials:target,
      #kontakt:target
    )
  )
  nav
  a[href="#startseite"],
body:not(.js-tabs):has(#startseite:target) nav a[href="#startseite"],
body:not(.js-tabs):has(#streamplan:target) nav a[href="#streamplan"],
body:not(.js-tabs):has(#partner:target) nav a[href="#partner"],
body:not(.js-tabs):has(#socials:target) nav a[href="#socials"],
body:not(.js-tabs):has(#kontakt:target) nav a[href="#kontakt"],
nav a.nav-active {
  background-color: rgba(255, 255, 255, 0.15);

  box-shadow: 0 0 10px rgba(255, 255, 255, 0.35);
}

/* ========================================
   TAB-SICHTBARKEIT (Streamplan / Partner / Socials / Kontakt)
======================================== */

#startseite,
#streamplan,
#events,
#partner,
#socials,
#kontakt {
  display: none;
}

main:not(
    :has(
      #startseite:target,
      #streamplan:target,
      #events:target,
      #partner:target,
      #socials:target,
      #kontakt:target
    )
  )
  #startseite {
  display: block;
}

#startseite:target,
#streamplan:target,
#events:target,
#partner:target,
#socials:target,
#kontakt:target {
  display: block;
}

/* ========================================
    STARTSEITE
======================================== */

#startseite {
  max-width: 900px;

  margin: 40px auto;

  padding: 20px;
}

.hero {
  text-align: center;

  padding: 20px 0 40px;
}

.hero h2 {
  margin: 0 0 10px;

  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

  font-size: 48px;

  color: white;

  text-shadow:
    3px 3px 5px black,
    0 0 8px rgba(255, 255, 255, 0.3);
}

.hero-quote {
  margin: 0 0 30px;

  font-size: 18px;

  font-style: italic;

  color: #cccccc;
}

.hero-buttons {
  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 16px;
}

.btn {
  display: inline-block;

  padding: 12px 28px;

  border-radius: 30px;

  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

  font-size: 18px;

  color: white;

  text-decoration: none;

  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background-color: #7a1fd6;

  box-shadow: 0 0 14px rgba(150, 60, 255, 0.6);
}

.btn-primary:hover {
  box-shadow: 0 0 20px rgba(150, 60, 255, 0.9);
}

.btn-secondary {
  background-color: #1b1b1b;

  border: 2px solid #9147ff;

  box-shadow: 0 0 10px rgba(145, 71, 255, 0.4);
}

.btn-secondary:hover {
  box-shadow: 0 0 16px rgba(145, 71, 255, 0.7);
}

/* ========================================
   LIVE- & VIDEO-EMBEDS (Twitch / YouTube)
======================================== */

.media-section {
  margin: 40px 0;

  text-align: center;
}

.live-block {
  display: flex;

  flex-wrap: wrap;

  align-items: flex-end;

  justify-content: center;

  gap: 24px;

  margin: 40px 0;
}

.media-section-compact {
  margin: 0;

  flex: 1 1 420px;

  max-width: 480px;
}

.media-section-compact .embed-wrapper {
  max-width: 480px;
}

.media-section h3 {
  margin: 0 0 16px;

  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

  font-size: 32px;

  color: white;
}

.embed-wrapper {
  position: relative;

  width: 100%;

  max-width: 860px;

  aspect-ratio: 16 / 9;

  margin: 0 auto;

  background-color: #1b1b1b;

  border-radius: 18px;

  box-shadow: 0 0 14px rgba(255, 255, 255, 0.15);

  overflow: hidden;
}

.embed-wrapper iframe {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  border: none;
}

/* ========================================
   VIDEO-KARUSSELL (YouTube / TikTok / Instagram)
+======================================== */

.video-carousel {
  max-width: 480px;

  margin: 0 auto;
}

.video-carousel-viewport {
  position: relative;

  width: 100%;
  height: 700px;

  background-color: #1b1b1b;

  border-radius: 18px;

  box-shadow: 0 0 14px rgba(255, 255, 255, 0.15);

  overflow: hidden;
}

.video-slide {
  position: absolute;
  inset: 0;

  display: flex;

  align-items: center;
  justify-content: center;

  padding: 12px;

  overflow-y: auto;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 0.3s ease;
}

.video-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.social-preview-lade {
  color: #999999;

  font-size: 14px;
}

.social-preview-card {
  position: relative;

  display: block;

  width: 100%;
  height: 100%;

  border-radius: 12px;

  overflow: hidden;

  text-decoration: none;
}

.social-preview-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.social-preview-card::before {
  content: "";

  position: absolute;

  top: 0;
  left: 0;
  right: 0;

  height: 110px;

  background: linear-gradient(
    to bottom,
    rgba(27, 27, 27, 1) 0%,
    rgba(27, 27, 27, 0.95) 35%,
    rgba(27, 27, 27, 0) 100%
  );

  pointer-events: none;

  z-index: 1;
}

.social-preview-play {
  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  width: 64px;
  height: 64px;

  display: flex;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background-color: rgba(0, 0, 0, 0.55);
  color: white;

  font-size: 24px;

  transition:
    transform 0.2s ease,
    background-color 0.2s ease;
}

.social-preview-card:hover .social-preview-play {
  transform: translate(-50%, -50%) scale(1.1);

  background-color: rgba(145, 71, 255, 0.85);
}

.social-preview-caption {
  position: absolute;

  left: 0;
  right: 0;
  bottom: 0;

  padding: 14px 16px;

  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));

  color: white;

  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

  font-size: 18px;

  text-align: center;
}

.video-carousel-controls {
  display: flex;

  align-items: center;
  justify-content: center;

  gap: 20px;

  margin-top: 16px;
}

.video-carousel-arrow {
  width: 36px;
  height: 36px;

  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;

  background-color: rgba(255, 255, 255, 0.05);
  color: white;

  font-size: 20px;
  line-height: 1;

  cursor: pointer;

  transition:
    background-color 0.2s ease,
    transform 0.2s ease;
}

.video-carousel-arrow:hover {
  background-color: rgba(255, 255, 255, 0.15);

  transform: translateY(-2px);
}

.video-carousel-dots {
  display: flex;

  gap: 10px;
}

.video-carousel-dot {
  width: 10px;
  height: 10px;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;

  background-color: transparent;

  cursor: pointer;

  transition: background-color 0.2s ease;
}

.video-carousel-dot.active {
  background-color: #9147ff;

  border-color: #9147ff;
}

/* ========================================
   NÄCHSTER-STREAM-KARTE
======================================== */

.next-stream-card {
  flex: 1 1 280px;

  max-width: 300px;

  box-sizing: border-box;

  margin: 0;

  padding: 20px 24px;

  background-color: #1b1b1b;

  border-radius: 18px;

  text-align: center;

  display: flex;

  flex-direction: column;

  justify-content: center;

  gap: 14px;
}

.next-stream-divider {
  height: 1px;

  background-color: rgba(255, 255, 255, 0.12);
}

.next-stream-label {
  margin: 0;

  font-size: 13px;

  letter-spacing: 1px;

  text-transform: uppercase;

  color: #9147ff;
}

.next-stream-day {
  margin: 8px 0 2px;

  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

  font-size: 26px;

  color: white;
}

.next-stream-time,
.next-stream-fallback {
  margin: 0;

  font-size: 15px;

  color: #cccccc;
}

.next-stream-fallback a {
  color: white;
}

.next-stream-countdown {
  margin: 10px 0 0;

  font-size: 16px;

  font-weight: bold;

  color: white;
}

/* ========================================
   DISCORD-COMMUNITY-BANNER
======================================== */

.discord-banner {
  display: flex;

  flex-wrap: wrap;

  align-items: center;

  justify-content: space-between;

  gap: 20px;

  margin-top: 30px;

  padding: 24px 30px;

  background-color: #1b1b1b;

  border: 2px solid #5865f2;

  border-radius: 18px;

  box-shadow: 0 0 14px rgba(88, 101, 242, 0.35);
}

.discord-banner h3 {
  margin: 0 0 6px;

  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

  font-size: 26px;

  color: white;
}

.discord-banner p {
  margin: 0;

  font-size: 14px;

  color: #cccccc;
}

.btn-discord {
  background-color: #5865f2;

  box-shadow: 0 0 14px rgba(88, 101, 242, 0.6);

  flex-shrink: 0;
}

.btn-discord:hover {
  box-shadow: 0 0 20px rgba(88, 101, 242, 0.9);
}

/* ========================================
   KONTAKT-HINWEIS
======================================== */

.contact-hint {
  margin-top: 30px;

  text-align: center;

  font-size: 14px;

  color: #888888;
}

.contact-hint a {
  color: #cccccc;
}

/* ========================================
   STREAMPLAN
======================================== */

#streamplan {
  max-width: 900px;

  margin: 40px auto;

  padding: 20px;
}

#streamplan h2 {
  text-align: center;

  font-size: 48px;
}

/* ========================================
   EINZELNE STREAM-TAGE
======================================== */

.stream-tag {
  display: flex;

  justify-content: center;
  align-items: center;

  gap: 20px;

  padding: 25px 30px;

  margin-bottom: 20px;

  background-color: #1b1b1b;

  border-radius: 18px;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.stream-tag:hover {
  transform: translateY(-3px);

  box-shadow: 0 0 22px rgba(145, 71, 255, 0.4);
}

/* ========================================
   TEXT
======================================== */

.stream-tag h3,
.stream-tag p {
  margin: 0;

  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

  color: white;

  -webkit-text-stroke: 1px black;

  text-shadow:
    2px 2px 4px black,
    0 0 6px rgba(255, 255, 255, 0.5);
}

.stream-tag h3 {
  font-size: 42px;

  font-weight: bold;
}

.stream-tag p {
  font-size: 50px;

  font-weight: bold;
}

/* ========================================
   STANDARD-BILDER
======================================== */

.stream-tag img {
  width: 160px;
  height: 80px;

  object-fit: cover;

  border-radius: 12px;

  box-shadow: 0 0 10px rgba(255, 255, 255, 0.6);
}

/* ========================================
   ZUG-EMOJI
======================================== */

.stream-icon {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  width: 120px;
  height: 160px;

  font-size: 70px;
}

.stream-icon img.emoji {
  width: 1em;
  height: 1em;

  object-fit: contain;

  border-radius: 0;

  box-shadow: none;
}

.montag .stream-icon,
.dienstag .stream-icon,
.mittwoch .stream-icon,
.donnerstag .stream-icon,
.freitag .stream-icon,
.samstag .stream-icon,
.sonntag .stream-icon {
  position: relative;

  z-index: 3;
}

/* ========================================
   BLUR-BEREICHE
======================================== */

.montag,
.dienstag,
.mittwoch,
.donnerstag,
.freitag,
.samstag,
.sonntag {
  position: relative;

  overflow: hidden;

  background: none;
}

/* gemeinsamer Blur-Hintergrund */

.montag::before,
.dienstag::before,
.mittwoch::before,
.donnerstag::before,
.freitag::before,
.samstag::before,
.sonntag::before {
  content: "";

  position: absolute;

  inset: -10px;

  background-size: cover;
  background-position: center;

  filter: blur(5px);

  transform: scale(1.1);

  z-index: 0;
}

/* dunkler Overlay */

.montag::after,
.dienstag::after,
.mittwoch::after,
.donnerstag::after,
.freitag::after,
.samstag::after,
.sonntag::after {
  content: "";

  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.4);

  z-index: 1;
}

/* ========================================
   EINZELNE HINTERGRÜNDE
======================================== */

.montag::before {
  background-image: url("Image/fc27.webp");
}

.dienstag::before {
  background-image: url("Image/fc27.webp");
}

.mittwoch::before {
  background-image: url("Image/fc27.webp");
}

.donnerstag::before {
  background-image: url("Image/fc27.webp");
}

.freitag::before {
  background-image: url("Image/pc-setup-hintergrund.webp");
}

.samstag::before {
  background-image: url("Image/pc-setup-hintergrund.webp");
}

.sonntag::before {
  background-image: url("Image/pc-setup-hintergrund.webp");
}

/* ========================================
   INHALT ÜBER DEM BLUR
======================================== */

.montag h3,
.montag p,
.montag img,
.dienstag h3,
.dienstag p,
.dienstag img,
.mittwoch h3,
.mittwoch p,
.mittwoch img,
.donnerstag h3,
.donnerstag p,
.donnerstag img,
.freitag h3,
.freitag p,
.samstag h3,
.samstag p,
.samstag img,
.sonntag h3,
.sonntag p {
  position: relative;

  z-index: 2;
}

/* ========================================
   SAMSTAG-BILD
======================================== */

.samstag img {
  width: 120px;
  height: 160px;
  object-fit: contain;
  background: transparent;
  border: none;

  border-radius: 0;

  box-shadow: none;
}

/* ========================================
   MITTWOCH-BILD
======================================== */

.mittwoch img {
  width: 90px;
  height: 120px;

  object-fit: contain;

  background: transparent;

  border: none;

  border-radius: 0;

  box-shadow: none;
}

/* ========================================
   OFFLINE-ICON (DIENSTAG u. FREITAG
======================================== */

.dienstag img,
.freitag img {
  width: 110px;
  height: 110px;

  object-fit: contain;

  background: transparent;

  border: none;

  border-radius: 0;

  box-shadow: none;

  position: relative;

  z-index: 3;
}

/* ========================================
   DONNERSTAG-BINGO-BILD
======================================== */

.stream-tag.donnerstag img:not(.emoji) {
  width: 120px;
  height: 160px;

  object-fit: contain;

  background: transparent !important;

  border: 0 !important;

  outline: 0 !important;

  border-radius: 0 !important;

  box-shadow: none !important;

  filter: none !important;
}

/* Hier deine Partner Maximausi */

#partner {
  max-width: 900px;

  margin: 60px auto 20px;

  padding: 20px;
}

#partner h2 {
  text-align: center;

  font-size: 48px;

  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

.partner-grid {
  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 20px;

  margin-top: 20px;
}

.partner-card {
  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  width: 220px;

  padding: 20px;

  background-color: #1b1b1b;

  border-radius: 18px;

  text-align: center;

  text-decoration: none;

  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.partner-card:hover {
  transform: translateY(-4px);

  box-shadow: 0 0 16px rgba(255, 255, 255, 0.25);
}

.partner-card img {
  box-sizing: border-box;

  width: 140px;
  height: 215px;

  padding: 10px;

  object-fit: contain;

  background-color: #ffffff;

  border-radius: 12px;

  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);

  margin-bottom: 12px;
}

.partner-card img[src*="partner-holy"] {
  background-color: hwb(0 100% 0%);
}

.partner-card img[src*="partner-instant-gaming"] {
  background-color: #000000;
}

.partner-card-text {
  min-height: 175px;

  justify-content: center;
}

.partner-name {
  margin: 0;

  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

  font-size: 24px;

  color: white;

  -webkit-text-stroke: 0.5px black;
}

.partner-note {
  margin: 6px 0 0;

  font-size: 14px;

  color: #cccccc;
}

.partner-note strong {
  color: white;
}

.werbung-hinweis {
  margin-top: 20px;

  text-align: center;

  font-size: 12px;

  color: #888888;
}

/* deine Socials Baby */

#socials {
  max-width: 900px;

  margin: 20px auto 60px;

  padding: 20px;
}

#socials h2 {
  text-align: center;

  font-size: 48px;

  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

.socials-grid {
  display: flex;

  flex-wrap: wrap;

  justify-content: center;

  gap: 24px;

  margin-top: 20px;
}

.social-link {
  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 8px;

  width: 90px;

  color: white;

  text-decoration: none;

  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

  font-size: 16px;

  transition: transform 0.15s ease;
}

.social-link:hover {
  transform: translateY(-4px);
}

.social-icon {
  display: flex;

  align-items: center;

  justify-content: center;

  width: 64px;
  height: 64px;

  background-color: #1b1b1b;

  border-radius: 16px;

  box-shadow: 0 0 12px rgba(255, 255, 255, 0.2);

  transition: box-shadow 0.15s ease;
}

.social-link:hover .social-icon {
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.4);
}

.social-icon svg {
  width: 34px;
  height: 34px;
}

/* Icons der Socials */

.icon-discord {
  fill: #5865f2;
}

.icon-youtube rect {
  fill: #ff0000;
}

.icon-x {
  fill: white;
}

.icon-tiktok {
  fill: white;
}

/* ========================================
   KONTAKT
======================================== */

#kontakt {
  max-width: 900px;

  margin: 20px auto 60px;

  padding: 20px;
}

#kontakt h2 {
  text-align: center;

  font-size: 48px;

  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

.kontakt-grid {
  display: flex;

  flex-wrap: wrap;

  gap: 30px;

  margin-top: 30px;
}

.kontakt-block {
  flex: 1 1 320px;

  background-color: rgba(255, 255, 255, 0.05);

  border-radius: 16px;

  padding: 24px;
}

.kontakt-block h3 {
  margin-top: 0;

  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

  font-size: 22px;
}

.kontakt-block .contact-hint {
  margin-top: 0;

  margin-bottom: 20px;

  text-align: left;
}

.contact-form {
  display: flex;

  flex-direction: column;

  gap: 6px;
}

.contact-form label {
  font-size: 14px;

  color: #cccccc;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 12px;

  padding: 10px 12px;

  border-radius: 8px;

  border: 1px solid rgba(255, 255, 255, 0.2);

  background-color: rgba(0, 0, 0, 0.3);

  color: white;

  font-family: inherit;

  font-size: 15px;

  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;

  border-color: rgba(255, 255, 255, 0.5);
}

.contact-form button {
  align-self: flex-start;

  margin-top: 4px;
}

.contact-form-note {
  margin-top: 12px;

  margin-bottom: 0;

  font-size: 13px;

  color: #888888;
}

.impressum p {
  margin: 0 0 16px;

  line-height: 1.6;

  color: #dddddd;
}

.impressum p:last-child {
  margin-bottom: 0;
}

.impressum a {
  color: #cccccc;
}

/* ========================================
   DATENSCHUTZERKLÄRUNG
======================================== */

.datenschutz {
  margin-top: 20px;

  padding-top: 20px;

  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.datenschutz summary {
  cursor: pointer;

  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

  font-size: 20px;

  color: white;

  list-style: none;
}

.datenschutz summary::-webkit-details-marker {
  display: none;
}

.datenschutz summary::before {
  content: "▸";

  display: inline-block;

  margin-right: 10px;

  transition: transform 0.2s ease;
}

.datenschutz[open] summary::before {
  transform: rotate(90deg);
}

.datenschutz summary:hover {
  color: #cccccc;
}

.datenschutz h4 {
  margin: 20px 0 10px;

  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

  font-size: 17px;

  color: white;
}

.datenschutz > h4:first-of-type {
  margin-top: 18px;
}

.datenschutz p {
  margin: 0 0 14px;

  font-size: 14px;

  line-height: 1.6;

  color: #cccccc;
}

.datenschutz ul {
  margin: 0 0 14px;

  padding-left: 20px;

  font-size: 14px;

  line-height: 1.6;

  color: #cccccc;
}

.datenschutz hr {
  margin: 20px 0;

  border: none;

  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

/* ========================================
   EVENTS
======================================== */

#events {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
}

#events h2 {
  text-align: center;

  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

  font-size: 48px;

  color: white;

  text-shadow:
    3px 3px 5px black,
    0 0 8px rgba(255, 255, 255, 0.3);
}

.event-liste {
  display: flex;
  flex-direction: column;

  gap: 20px;
}

.event-card {
  display: flex;
  align-items: center;

  gap: 30px;

  padding: 20px 30px;

  background: linear-gradient(
    135deg,
    rgba(145, 71, 255, 0.18),
    rgba(20, 20, 20, 0.95)
  );

  border-radius: 18px;

  border: 1px solid rgba(255, 255, 255, 0.15);

  box-shadow: 0 0 15px rgba(145, 71, 255, 0.2);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.event-card:hover {
  transform: translateY(-3px);

  box-shadow: 0 0 22px rgba(145, 71, 255, 0.4);
}

/* Kalender-Datum */

.event-datum {
  display: flex;
  flex-direction: column;

  align-items: center;
  justify-content: center;

  min-width: 100px;
  height: 100px;

  background-color: rgba(0, 0, 0, 0.5);

  border-radius: 16px;

  border: 2px solid rgba(255, 255, 255, 0.7);

  box-shadow: 0 0 10px rgba(255, 255, 255, 0.25);
}

.event-tag {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

  font-size: 40px;

  line-height: 1;

  color: white;
}

.event-monat {
  margin-top: 5px;

  font-size: 16px;

  font-weight: bold;

  letter-spacing: 2px;

  color: #9147ff;
}

/* Event-Informationen */

.event-info {
  flex: 1;
}

.event-info h3 {
  margin: 0 0 10px;

  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;

  font-size: 32px;

  color: white;

  text-shadow: 2px 2px 4px black;
}

.event-info p {
  margin: 5px 0;

  font-size: 16px;

  color: #cccccc;
}
