@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;900&display=swap');

body {
  font-family: 'Orbitron', sans-serif;
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1729 100%);
  color: #a8b2d1;
}

nav {
  background: rgba(10, 14, 39, 0.95) !important;
  border-bottom: 2px solid #00d9ff;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
}

nav .nav-link {
  border-radius: var(--bs-border-radius) !important;
  color: #a8b2d1 !important;
  transition: all 0.3s;
}

nav .nav-link:hover {
  background-color: #00d9ff !important;
  color: #0a0e27 !important;
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.6);
}

nav .nav-link.active {
  background-color: #00d9ff !important;
  color: #0a0e27 !important;
}

#hero {
  background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 50%, #0f1729 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(2px 2px at 20% 30%, white, transparent),
    radial-gradient(2px 2px at 60% 70%, white, transparent),
    radial-gradient(1px 1px at 50% 50%, white, transparent),
    radial-gradient(1px 1px at 80% 10%, white, transparent),
    radial-gradient(2px 2px at 90% 60%, white, transparent),
    radial-gradient(1px 1px at 33% 80%, white, transparent),
    radial-gradient(1px 1px at 15% 60%, white, transparent);
  background-size: 200% 200%;
  animation: stars 20s linear infinite;
  opacity: 0.6;
}

@keyframes stars {
  0% { background-position: 0 0, 50% 50%, 100% 0, 0 100%, 50% 0, 100% 100%, 25% 75%; }
  100% { background-position: 100% 100%, 0 0, 0 100%, 100% 0, 0 50%, 50% 50%, 75% 25%; }
}

#hero h1 {
  padding-top: 80px;
  color: #00d9ff;
  text-shadow: 0 0 30px rgba(0, 217, 255, 0.8), 0 0 60px rgba(0, 217, 255, 0.4);
  position: relative;
  z-index: 1;
}

#hero p {
  color: #a8b2d1;
  position: relative;
  z-index: 1;
}

#disclaimer,
#play-now,
#features,
#about,
#reviews {
  padding: 80px 0;
  background: rgba(10, 14, 39, 0.6);
}

.icon-container {
  width: 80px;
  height: 80px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #00d9ff 0%, #0066ff 100%);
  box-shadow: 0 0 30px rgba(0, 217, 255, 0.5);
  border: 2px solid #00d9ff;
}

iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 3px solid #00d9ff;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(0, 217, 255, 0.5);
}

.btn-success, .btn-lg.btn-success {
  background: linear-gradient(135deg, #00d9ff 0%, #0066ff 100%) !important;
  border: 2px solid #00d9ff !important;
  box-shadow: 0 4px 15px rgba(0, 217, 255, 0.4) !important;
  transition: all 0.3s !important;
  font-weight: 700;
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 217, 255, 0.6) !important;
}

.card {
  background: rgba(26, 31, 58, 0.8) !important;
  border: 2px solid #00d9ff !important;
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.3) !important;
}

.text-success {
  color: #00d9ff !important;
}

h1, h2, h3, h4, h5, h6 {
  color: #00d9ff !important;
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

footer {
  padding: 20px 0;
  background: rgba(10, 14, 39, 0.95) !important;
  border-top: 2px solid #00d9ff;
}

footer .nav-link {
  flex-grow: 1;
  color: #a8b2d1 !important;
}

footer .nav-link:hover {
  color: #00d9ff !important;
}

.modal-content {
  background: rgba(10, 14, 39, 0.98) !important;
  border: 3px solid #00d9ff !important;
  box-shadow: 0 0 40px rgba(0, 217, 255, 0.6) !important;
  color: #a8b2d1 !important;
}

.modal-body h3 {
  color: #00d9ff !important;
}

.form-control, .form-floating > .form-control {
  background: rgba(26, 31, 58, 0.8) !important;
  border: 2px solid #00d9ff !important;
  color: #a8b2d1 !important;
}

.form-control:focus {
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.5) !important;
  border-color: #00d9ff !important;
}

.form-floating > label {
  color: #a8b2d1 !important;
}