
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #FFD700;
  background: url('../assets/branding/eqnoir-bg-city.jpg') no-repeat center center fixed;
  background-size: cover;
}

.ticker-wrap {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: #FFD700;
  border-bottom: 1px solid #FFD700;
  z-index: 1000;
  overflow: hidden;
}

.ticker {
  display: flex;
  align-items: center;
  height: 40px;
}

.ticker-move {
  display: inline-block;
  white-space: nowrap;
  animation: tickerScroll 60s linear infinite;
}

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

header {
  text-align: center;
  padding: 100px 20px 20px;
}

.eqnoir-title {
  font-size: 3em;
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255,215,0,0.8);
  animation: pulse 2.5s infinite alternate;
}

@keyframes pulse {
  0% { text-shadow: 0 0 5px rgba(255,215,0,0.3); }
  100% { text-shadow: 0 0 20px rgba(255,215,0,0.8); }
}

nav a {
  color: #FFD700;
  text-decoration: none;
  margin: 0 10px;
}
nav a:hover {
  color: white;
}

.content {
  text-align: center;
  padding: 140px 20px;
  background: rgba(0, 0, 0, 0.55);
  min-height: 75vh;
  border-radius: 10px;
}

.btn {
  display: inline-block;
  margin: 15px;
  padding: 12px 28px;
  border: 1px solid #FFD700;
  color: #FFD700;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.btn:hover {
  background-color: #FFD700;
  color: black;
}

footer {
  text-align: center;
  padding: 40px 0;
  background: rgba(0,0,0,0.65);
}

.social-icons img {
  width: 30px;
  margin: 0 10px;
  filter: invert(86%) sepia(57%) saturate(749%) hue-rotate(8deg) brightness(103%) contrast(102%);
  transition: transform 0.3s, filter 0.3s;
}
.social-icons img:hover {
  transform: scale(1.2);
  filter: drop-shadow(0 0 6px rgba(255,215,0,0.8));
}
