
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f9f9f9;
  color: #222;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background: linear-gradient(90deg, #0ff, #0055ff, #ffd700, #ff3c3c);
  color: white;
}
.logo {
  font-size: 1.8rem;
  font-weight: bold;
}
.logo span {
  background: linear-gradient(90deg, #0ff, #0055ff, #ffd700, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.nav-links a:hover {
  text-decoration: underline;
}
.ticker {
  background: #111;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px;
}
.ticker span {
  display: inline-block;
  padding-left: 100%;
  animation: scroll 20s linear infinite;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
.container {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}
.card {
  background: white;
  margin: 15px 0;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
footer {
  background: #0d0d0d;
  color: #e6e6e6;
  padding: 40px 20px;
  margin-top: 50px;
}
.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.footer-logo {
  font-size: 2rem;
  font-weight: bold;
  color: white;
}
.footer-logo span {
  background: linear-gradient(90deg, #0ff, #0055ff, #ffd700, #ffcc00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.footer-col h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #fff;
  border-left: 3px solid #ff3c3c;
  padding-left: 8px;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #333;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 0.85rem;
  color: #aaa;
}
