:root{
  --bg:#060815;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.04);
  --border: rgba(255,255,255,.12);
  --text: #eef2ff;
  --muted: rgba(238,242,255,.72);
  --brand1:#7c3aed;
  --brand2:#60a5fa;
  --shadow: 0 30px 100px rgba(0,0,0,.55);
  --r: 18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 22% 0%, rgba(124,58,237,.28), transparent 55%),
    radial-gradient(1000px 700px at 85% 10%, rgba(96,165,250,.22), transparent 58%),
    radial-gradient(900px 700px at 55% 90%, rgba(124,58,237,.18), transparent 55%),
    var(--bg);
  overflow-x:hidden;
}

/* Hintergrund-Logo (liegt im Hauptordner) */
body::before{
  content:"";
  position: fixed;
  inset: 0;
  background-image: url("../logo-bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: min(900px, 85vw);
  opacity: 0.10;
  pointer-events: none;
  z-index: -2;
}
body::after{
  content:"";
  position: fixed;
  inset: 0;
  background: radial-gradient(900px 520px at 50% 30%, rgba(0,0,0,.30), rgba(0,0,0,.72));
  pointer-events: none;
  z-index: -1;
}

a{ color:inherit; text-decoration:none; }

.app{
  min-height:100vh;
  display:grid;
  grid-template-columns: 290px 1fr;
}

/* Sidebar */
.sidebar{
  position: sticky;
  top:0;
  height:100vh;
  padding: 18px 14px;
  border-right: 1px solid var(--border);
  background: rgba(8,10,24,.55);
  backdrop-filter: blur(16px);
}

.brand{
  display:flex;
  gap:12px;
  align-items:center;
  padding: 10px 10px 14px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 70px rgba(0,0,0,.35);
  margin-bottom: 14px;
}
.brand .mark{
  width:44px; height:44px; border-radius: 16px;
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(124,58,237,.34), rgba(96,165,250,.22));
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.brand b{ display:block; font-size: 14px; letter-spacing:.2px; }
.brand small{ display:block; color: var(--muted); font-size: 12px; margin-top: 2px; }

.nav{
  display:grid;
  gap:8px;
  margin-top: 8px;
}
.nav a{
  display:flex;
  align-items:center;
  gap:10px;
  padding: 11px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(238,242,255,.88);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  user-select:none;
}
.nav a:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.16);
}
.nav a.active{
  background: linear-gradient(135deg, rgba(124,58,237,.26), rgba(96,165,250,.18));
  border-color: rgba(124,58,237,.40);
  color: rgba(255,255,255,.95);
}

.sideFooter{
  position:absolute;
  bottom:16px;
  left:14px;
  right:14px;
  display:grid;
  gap:10px;
}
.pill{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding: 10px 12px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  color: rgba(238,242,255,.88);
  cursor:pointer;
}
.kbd{
  font-size: 12px;
  color: rgba(238,242,255,.65);
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.03);
  padding: 3px 7px;
  border-radius: 999px;
}

/* Main */
.main{ padding: 20px 18px 60px; }
.container{ width:min(1040px, 92vw); margin: 0 auto; }

.topBar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom: 14px;
}
.pageTitle{
  margin:0;
  font-size: clamp(26px, 3vw, 40px);
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  letter-spacing:.2px;
  text-shadow: 0 18px 55px rgba(0,0,0,.55);
}
.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding: 8px 12px;
  border-radius: 999px;
  border:1px solid rgba(124,58,237,.45);
  background: rgba(124,58,237,.14);
  color: rgba(255,255,255,.92);
  font-size: 13px;
  box-shadow: 0 18px 60px rgba(0,0,0,.35);
}

.hero{
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 18px;
  overflow:hidden;
  position:relative;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(900px 320px at 10% 10%, rgba(124,58,237,.22), transparent 60%),
    radial-gradient(900px 360px at 100% 0%, rgba(96,165,250,.16), transparent 60%);
  pointer-events:none;
}
.hero h2{
  position:relative;
  margin:0;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 32px;
}
.hero p{
  position:relative;
  margin:10px 0 0;
  color: var(--muted);
  line-height:1.6;
  max-width: 75ch;
  font-size: 14.5px;
}
.btnRow{ position:relative; display:flex; gap:10px; flex-wrap:wrap; margin-top: 14px; }
.btn{
  padding: 11px 14px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  font-weight: 700;
  font-size: 14px;
  color: rgba(238,242,255,.92);
  transition: transform .12s ease, background .12s ease;
  cursor:pointer;
}
.btn:hover{ transform: translateY(-1px); background: rgba(255,255,255,.09); }
.btn.primary{
  border-color: rgba(124,58,237,.45);
  background: linear-gradient(135deg, rgba(124,58,237,.25), rgba(96,165,250,.18));
}

.section{ margin-top: 16px; }
.sectionHead{
  display:flex; align-items:baseline; justify-content:space-between;
  gap:12px; margin: 18px 0 10px;
}
.sectionHead h3{ margin:0; font-size: 18px; letter-spacing:.2px; }
.sectionHead small{ color: var(--muted); }

.grid3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap:12px;
}
.card{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 18px 70px rgba(0,0,0,.22);
}
.card h4{ margin:0 0 8px; font-size: 16px; }
.card p{ margin:0; color: var(--muted); line-height:1.55; font-size: 14px; }

/* Termine */
.events{ display:grid; gap:12px; }
.event{
  display:flex; gap:12px;
  border:1px solid rgba(255,255,255,.10);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius: 18px;
  overflow:hidden;
}
.dateBox{
  width:80px; min-width:80px;
  display:flex; flex-direction:column;
  align-items:center; justify-content:center;
  border-right:1px solid rgba(255,255,255,.10);
  background: linear-gradient(135deg, rgba(124,58,237,.22), rgba(96,165,250,.12));
  padding: 14px 10px;
  text-align:center;
}
.dateBox b{ font-size: 26px; line-height:1; }
.dateBox small{ color: rgba(238,242,255,.75); margin-top:6px; }
.eventBody{ padding: 14px; }
.eventBody b{ display:block; margin-bottom:4px; }
.eventBody .meta{ color: var(--muted); font-size: 13px; line-height:1.45; }

/* Galerie */
.gallery{ display:grid; grid-template-columns: repeat(12, 1fr); gap:10px; }
.g{
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  border-radius: 18px;
  min-height: 160px;
  overflow:hidden;
  position:relative;
}
.g::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0), rgba(0,0,0,.35));
  pointer-events:none;
}
.g span{
  position:absolute; left:12px; bottom:10px;
  color: rgba(238,242,255,.88);
  font-size: 13px;
  z-index:2;
}
.g.one{ grid-column: span 5; }
.g.two{ grid-column: span 4; }
.g.three{ grid-column: span 3; }

/* Formular */
label{ display:block; margin-bottom:6px; color: rgba(238,242,255,.72); font-size:13px; }
input, textarea{
  width:100%;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  padding: 12px;
  color: rgba(238,242,255,.95);
  outline:none;
}
textarea{ min-height: 120px; resize: vertical; }
.row2{ display:grid; grid-template-columns: 1fr 1fr; gap:12px; }

/* Mobile */
@media (max-width: 980px){
  .app{ grid-template-columns: 1fr; }
  .sidebar{
    height:auto;
    position:relative;
    border-right:none;
    border-bottom:1px solid var(--border);
  }
  .sideFooter{ position:relative; bottom:auto; left:auto; right:auto; }
  .nav{ grid-template-columns: 1fr 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .row2{ grid-template-columns: 1fr; }
  .g.one,.g.two,.g.three{ grid-column: span 12; }
}

.event.past {
  opacity: 0.45;
  text-decoration: line-through;
}

.vorstandCard img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 12px;
}

/* ===== UI nur blau färben ===== */

/* Sidebar / Menü */
.sidebar{
  background: linear-gradient(180deg, #0f172a, #0b1220);
}

.nav a{
  background: linear-gradient(135deg, rgba(37,99,235,.18), rgba(14,165,233,.12));
  border-color: rgba(56,189,248,.25);
}

.nav a:hover{
  background: linear-gradient(135deg, rgba(37,99,235,.30), rgba(14,165,233,.18));
  border-color: rgba(56,189,248,.45);
}

.nav a.active{
  background: linear-gradient(135deg, rgba(37,99,235,.40), rgba(14,165,233,.25));
  border-color: rgba(56,189,248,.55);
  box-shadow: 0 0 18px rgba(56,189,248,.25);
}

/* Willkommen Box (Hero) */
.hero{
  background: linear-gradient(135deg, rgba(37,99,235,.35), rgba(14,165,233,.20));
  border: 1px solid rgba(56,189,248,.40);
  box-shadow: 0 0 30px rgba(37,99,235,.25);
}

/* "Modern – Social" Button oben rechts */
.badge{
  background: linear-gradient(135deg, rgba(37,99,235,.35), rgba(14,165,233,.22));
  border-color: rgba(56,189,248,.50);
  box-shadow: 0 0 14px rgba(56,189,248,.25);
}

/* Sidebar Logo-Kachel */
.brand .mark{
  background: linear-gradient(135deg, rgba(37,99,235,.40), rgba(14,165,233,.25));
}

/* ===== Sidebar Kopf aufräumen ===== */

.brand .mark{
  display: none;
}

.brand small{
  display: none;
}

.brand{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 14px 16px;
}

.brand h1{
  font-size: 18px;
  margin: 0;
  letter-spacing: 0.4px;
}

/* ===== Datum-Boxen blau ===== */

.dateBox{
  background: linear-gradient(135deg, #2563eb, #0ea5e9);
  color: #ffffff;
  border: 1px solid rgba(56,189,248,.5);
  box-shadow: 0 0 18px rgba(37,99,235,.35);
}

.dateBox small{
  color: rgba(255,255,255,.85);
}

/* ===== Lila Rest-Glow entfernen ===== */

body{
  background:
    radial-gradient(1100px 700px at 18% 8%, rgba(37,99,235,.24), transparent 60%),
    radial-gradient(1000px 700px at 86% 12%, rgba(14,165,233,.22), transparent 62%),
    radial-gradient(900px 700px at 55% 92%, rgba(56,189,248,.16), transparent 62%),
    #0b1220; /* fester dunkler Grundton statt lila */
}

/* ===== Termin Hover Effekt ===== */

.event{
  transition: transform .2s ease, box-shadow .2s ease;
}

.event:hover{
  transform: translateX(6px);
  box-shadow: 0 0 22px rgba(56,189,248,.35);
}

/* ===== Galerie Grid (Bilder) ===== */
.galleryGrid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 1100px){
  .galleryGrid{ grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px){
  .galleryGrid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px){
  .galleryGrid{ grid-template-columns: 1fr; }
}

.galleryThumb{
  display:block;
  overflow:hidden;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  cursor: pointer;
}
.galleryThumb img{
  width: 100%;
  height: 160px;
  object-fit: cover;
  display:block;
  transition: transform .25s ease, opacity .25s ease;
  opacity: .92;
}
.galleryThumb:hover img{
  transform: scale(1.05);
  opacity: 1;
}

/* ===== Album Kacheln ===== */
.albumGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
@media (max-width: 1100px){ .albumGrid{ grid-template-columns: repeat(2, 1fr);} }
@media (max-width: 650px){ .albumGrid{ grid-template-columns: 1fr;} }

.albumCard{
  text-align:left;
  border-radius: 16px;
  overflow:hidden;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  cursor:pointer;
  padding:0;
}

.albumCover{
  height: 140px;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05);
}

.albumMeta{
  padding: 10px 12px;
}
.albumName{
  font-weight: 900;
  color: rgba(255,255,255,.92);
}
.albumCount{
  margin-top: 2px;
  font-size: 13px;
  color: rgba(255,255,255,.65);
}

/* ===== Galerie Grid ===== */
.galleryGrid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width:1100px){ .galleryGrid{ grid-template-columns: repeat(3, 1fr);} }
@media (max-width:900px){ .galleryGrid{ grid-template-columns: repeat(2, 1fr);} }
@media (max-width:520px){ .galleryGrid{ grid-template-columns: 1fr;} }

.galleryThumb{
  display:block;
  overflow:hidden;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  cursor: pointer;
}
.galleryThumb img{
  width: 100%;
  height: 160px;
  object-fit: cover;
  display:block;
  transition: transform .25s ease, opacity .25s ease;
  opacity: .92;
}
.galleryThumb:hover img{
  transform: scale(1.05);
  opacity: 1;
}

/* ===== Lightbox größer + eingebettet (Upgrade) ===== */
.lightbox{
  position: fixed;
  inset: 0;
  z-index: 9999;
}

.lbOverlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(6px);
}

/* Box größer, fast Fensterfüllend aber mit Rand */
.lbBox{
  position: relative;
  z-index: 2;

  width: min(1150px, 96vw);     /* größer */
  height: min(750px, 90vh);     /* größer */

  margin: 4vh auto 0 auto;      /* näher an den Rand, wirkt "mehr" */
  border-radius: 22px;
  overflow: hidden;

  border: 1px solid rgba(255,255,255,.18);
  background: rgba(10,16,28,.85);
  box-shadow: 0 30px 90px rgba(0,0,0,.65);
}

/* Kopfbereich */
.lbTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(90deg, rgba(59,130,246,.22), rgba(14,165,233,.10));
}

.lbTitle{
  font-weight: 900;
  color: rgba(255,255,255,.92);
}

/* Das Bild selbst: mehr Fläche, weniger "Rand" */
#lbImg{
  width: 100%;
  height: calc(100% - 112px); /* Top + Bottom */
  object-fit: contain;
  background: rgba(255,255,255,.04);
  padding: 10px;              /* etwas weniger Padding -> Bild wirkt größer */
  box-sizing: border-box;
}

/* Footer */
.lbBottom{
  display:flex;
  align-items:center;
  justify-content:center;   /* Count mittig */
  gap: 14px;
  padding: 12px 12px;
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}

/* Buttons: größer + deutlicher */
.lbBtn{
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(37,99,235,.35);
  color: rgba(255,255,255,.95);
  cursor: pointer;
  font-size: 22px;

  display:flex;
  align-items:center;
  justify-content:center;

  transition: .2s ease;
}

.lbBtn:hover{
  background: rgba(37,99,235,.55);
  transform: translateY(-1px) scale(1.05);
}

/* Close Button: oben rechts, klar sichtbar */
.lbClose{
  position: absolute;
  top: 14px;
  right: 14px;

  width: 44px;
  height: 44px;
  border-radius: 999px;

  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.14);
  color: rgba(255,255,255,.95);
  cursor: pointer;

  display:flex;
  align-items:center;
  justify-content:center;

  font-size: 18px;
  line-height: 1;
}

/* Counter */
.lbCount{
  font-weight: 900;
  color: rgba(255,255,255,.88);
  font-size: 14px;
}

/* =========================
   MOBILE VERSION (FIX: GRID HEADER)
========================= */

.mobileHeader{
  display:none;
}

.mobileOverlay{
  display:none;
}

/* Nur für Handy */
@media (max-width: 900px){

  /* Header als Grid: links Burger | Mitte Titel | rechts Platzhalter */
  .mobileHeader{
    display:grid;
    grid-template-columns: 44px 1fr 44px;
    align-items:center;

    padding: 14px 12px;
    position:fixed;
    top:0;
    left:0;
    right:0;
    z-index:1001;

    background:rgba(15,20,35,.96);
    backdrop-filter:blur(12px);
    border-bottom:1px solid rgba(255,255,255,.08);
  }

  /* Burger Button */
  .burger{
    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;

    font-size:22px;
    background:none;
    border:none;
    color:white;
    cursor:pointer;
  }

  /* 👉 TITEL: bekommt wirklich Platz + skaliert automatisch */
  .mobileTitle{
    width: 100%;
    max-width: 100%;

    text-align:center;
    font-weight:900;
    font-size: clamp(11px, 3.3vw, 16px); /* etwas stärker runter skalieren */
    letter-spacing:0.2px;

    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  /* Seite nach unten schieben wegen fixed Header */
  .app{
    padding-top:70px;
  }

  /* Sidebar als Drawer */
  .sidebar{
    position:fixed;
    left:-260px;
    top:0;
    height:100%;
    width:260px;
    z-index:1002;
    transition:all .3s ease;
    box-shadow: 10px 0 30px rgba(0,0,0,.4);
  }

  .sidebar.open{
    left:0;
  }

  .mobileOverlay{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.5);
    z-index:1000;
    display:none;
  }

  .mobileOverlay.show{
    display:block;
  }

  .main{
    margin-left:0 !important;
  }
}

/* =========================================
   SIDEBAR ULTRA NEON PULSE (DESKTOP + MOBILE)
   Ganz unten in style.css einfügen
========================================= */

/* EXTREM KRASSES PULSIEREN */
@keyframes neonPulse {
  0% {
    box-shadow:
      0 0 30px rgba(59,130,246,.6),
      0 0 80px rgba(59,130,246,.45),
      0 0 150px rgba(59,130,246,.25),
      0 0 220px rgba(59,130,246,.15),
      inset 0 0 50px rgba(59,130,246,.25);
  }

  50% {
    box-shadow:
      0 0 60px rgba(59,130,246,.95),
      0 0 140px rgba(59,130,246,.70),
      0 0 260px rgba(59,130,246,.45),
      0 0 380px rgba(59,130,246,.25),
      inset 0 0 90px rgba(59,130,246,.40);
  }

  100% {
    box-shadow:
      0 0 30px rgba(59,130,246,.6),
      0 0 80px rgba(59,130,246,.45),
      0 0 150px rgba(59,130,246,.25),
      0 0 220px rgba(59,130,246,.15),
      inset 0 0 50px rgba(59,130,246,.25);
  }
}

/* Desktop Sidebar */
.sidebar{
  background: linear-gradient(180deg, #0e1530, #0b1126) !important;
  border-right: 1px solid rgba(59,130,246,.7) !important;

  animation: neonPulse 1.8s infinite ease-in-out;
}

/* Hover nochmal extra Explosion */
.sidebar:hover{
  box-shadow:
    0 0 80px rgba(59,130,246,1),
    0 0 200px rgba(59,130,246,.85),
    0 0 350px rgba(59,130,246,.55),
    inset 0 0 120px rgba(59,130,246,.5) !important;
}

/* Mobile Drawer genauso brutal */
@media (max-width: 900px){
  .sidebar{
    animation: neonPulse 1.6s infinite ease-in-out;
  }
}

/* ===== Startseite: Bilder-Slider ===== */
.sliderCard{ padding:0; overflow:hidden; }

.heroSlider{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.04);
}

.hsImgWrap{
  aspect-ratio: 16/7;
  width:100%;
  background:rgba(0,0,0,.2);
}

.hsImgWrap img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  opacity:1;
  transition:opacity .8s ease, transform 1.2s ease;
  transform:scale(1.02);
}

.heroSlider.isFading .hsImgWrap img{
  opacity:0;
  transform:scale(1.00);
}

.hsOverlay{
  position:absolute;
  left:14px; right:14px; bottom:14px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(10,14,28,.55);
  backdrop-filter: blur(10px);
}

.hsTitle{
  font-weight:900;
  font-size:16px;
  color:rgba(238,242,255,.96);
}

.hsMeta{
  margin-top:3px;
  font-size:13px;
  color:rgba(238,242,255,.70);
}

.hsDots{
  position:absolute;
  top:12px;
  right:12px;
  display:flex;
  gap:6px;
}

.hsDot{
  width:8px; height:8px;
  border-radius:99px;
  background:rgba(255,255,255,.25);
  border:1px solid rgba(255,255,255,.10);
}

.hsDot.isActive{
  background:rgba(59,130,246,.85);
  box-shadow:0 0 0 2px rgba(59,130,246,.18);
}

@media (max-width: 900px){
  .hsImgWrap{ aspect-ratio: 16/10; }
}

<style>
.infoTickerCard{
  padding: 8px 14px;
  overflow:hidden;
  border:1px solid rgba(59,130,246,.25);
  box-shadow: 0 0 16px rgba(59,130,246,.15),
              inset 0 0 20px rgba(59,130,246,.08);
}

.infoTicker{
  overflow:hidden;
  white-space:nowrap;
}

.infoTickerTrack{
  display:inline-block;
  white-space:nowrap;
  animation: tickerMove 28s linear infinite;
}

.infoTicker:hover .infoTickerTrack{
  animation-play-state: paused;
}

.infoItem{
  display:inline-block;
  margin-right: 50px;
  font-weight:700;
  color: rgba(238,242,255,.92);
  font-size: 14px;
}

@keyframes tickerMove{
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
</style>
