body {
  background-color: #e9e9e9;
  margin: 0;
  font-family: Arial, sans-serif;
}

.header-container {
  padding: 20px;
}

.header-box {
  background-color: #2177b9;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 1);
  display: flex;
  align-items: center;
  padding: 10px 20px;
}

.logo {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  margin-right: 20px;
}

.title {
  color: #edf2f5;
  font-size: 2em;
  margin: 0;
}

.subtitle {
    font-size: 0.5em;
    color: #a9c8db;
    font-style: normal;
    margin-left: 0px;
    display: block;
}

.nav-bar {
  height: 60px;
  background-color: #2177b9;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 8px rgba(0,0,0,1);
  border-radius: 10px;
  margin: 10px 20px;
}

.nav-button {
  background-color: #edf2f5;
  color: #21547a;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-button:hover {
  background-color: #a9c8db;
  color: #fff;
  transform: scale(1.05);
}

.ticker {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  background-color: #2177b9;
  color: #edf2f5;
  font-family: monospace;
  padding: 5px 0;
  z-index: 9999;
}

.ticker span {
  display: inline-block;
  padding-left: 100%;
  animation: scrollText 20s linear infinite;
  white-space: nowrap;
}

@keyframes scrollText {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.player-wrapper {
  width: calc(100% - 40px); /* 20px links + 20px rechts */
  margin: 10px 20px;
  display: flex;
  justify-content: center;
  padding: 10px 0;
  background-color: #2177b9;
  box-shadow: 0 4px 12px rgba(0,0,0,1);
  border-radius: 12px;
}

.module {
  width: calc(100% - 40px);;
  
  margin: 20px auto;
  padding: 20px;
  background-color: #2177b9;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,1);
  color: #fff;
  font-family: sans-serif;
  box-sizing: border-box;
}

.steakhouse-banner {
  position: relative;
  background-color: #5c2e1f; /* warmes rotbraun */
  color: #f5e9dc; /* sanftes cremeweiß */
  text-align: center;
  padding: 1rem;
  margin-top: 1rem;
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(0,0,0,0.2);
  font-size: 0.9rem;
  line-height: 1.4;
}
.steakhouse-banner a {
  color: #f5e9dc;
  text-decoration: underline;
}
.steakhouse-banner a:hover {
  color: #ffffff;
  text-decoration: none;
}
.keine-werbung {
  position: absolute;
  top: 0.4rem;
  left: 0.6rem;
  font-size: 0.7rem;
  color: #f5e9dc;
  opacity: 0.7;
  pointer-events: none;
}
.steakhouse-banner p {
  animation: fadeIn 1.2s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}










