/* eSport Racing Style Template mit Fonts & Icons */

/* Global */
body {
  margin: 0;
  font-family: 'Rajdhani', sans-serif;
  background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0f3460 100%);
  color: #f5f5f5;
}

/* Layout */
.layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 20px;
  padding: 20px;
}

/* Top Menü */
.top-menu {
  background: rgba(0, 0, 0, 0.9);
  padding: 20px;
  display: flex;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0,255,255,0.5);
  font-family: 'Orbitron', sans-serif;
}

/* Horizontal erzwingen */
.top-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 40px;
  justify-content: center;
}

.top-menu li {
  display: inline-block;
}

.top-menu a {
  color: #fff;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: all 0.3s ease;
}

.top-menu a:hover {
  color: #00eaff;
  text-shadow: 0 0 10px #00eaff, 0 0 20px #00eaff;
  transform: scale(1.1);
}

/* Seitenmenü */
.side-menu {
  background: rgba(15, 15, 30, 0.95);
  padding: 20px;
  border-right: 3px solid #00eaff;
  border-radius: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
}

.side-menu a {
  display: block;
  padding: 10px;
  margin: 5px 0;
  color: #ddd;
  transition: all 0.3s ease;
}

.side-menu a:hover {
  color: #ff007f;
  text-shadow: 0 0 10px #ff007f, 0 0 20px #ff007f;
  transform: translateX(5px);
}

/* Content */
.content {
  padding: 30px;
  background: rgba(0,0,0,0.6);
  border-radius: 15px;
  box-shadow: 0 0 20px rgba(0,0,0,0.8);
  font-family: 'Rajdhani', sans-serif;
  font-size: 1.1rem;
}

/* Bilder auf Startseite */
.content img {
  max-width: 100%;
  height: auto;
  margin: 10px;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(0, 234, 255, 0.7);
}

/* Font Awesome Beispiel */
.fa {
  margin-right: 8px;
}
