body {
  margin: 0;
  font-family: 'Orbitron', sans-serif;
  background: #0a0f19;
  color: white;
}

/* NAV */

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10,15,25,0.75);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: space-between;
  padding: 20px 60px;
  z-index: 1000;
}

.nav a {
  color: white;
  margin-left: 30px;
  text-decoration: none;
  position: relative;
}

.nav a:hover {
  color: #1ec8ff;
}

/* HERO */

.hero {
  height: 100vh;
  background: url('/media/hero.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding-left: 10%;
}

.hero-content h1 {
  font-size: 60px;
}

.hero-content h2 {
  font-size: 40px;
  color: #1ec8ff;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 80px;
}

.feature-box {
  background: rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}

.feature-box video,
.feature-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
}

.liveticker {
  background: rgba(255,255,255,0.05);
  padding: 15px 40px;
  font-size: 14px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.bottom-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 80px;
}

.bottom-box {
  background: rgba(255,255,255,0.05);
  padding: 40px;
  text-align: center;
  text-decoration: none;
  color: white;
  transition: 0.3s;
}

.bottom-box:hover {
  background: rgba(30,200,255,0.15);
  transform: translateY(-5px);
}