body {
  background-color: #0e0e0e;
  color: #fff;
}

.navbar {
  background: rgba(0, 0, 0, 0.9);
}

.hero {
  text-align: center;
  background: linear-gradient(to bottom right, #1a1a1a, #121212);
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.hero .carousel-inner {
  height: 100%;
}

.hero-bg {
  background-size: cover;
  background-position: center;
  height: 100vh;
  filter: brightness(0.6);
}

.text-shadow {
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-buttons {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: rgba(0, 0, 0, 0.6);
  padding: 1rem 2rem;
  border-radius: 2rem;
}

.glass {
  backdrop-filter: blur(8px);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 1rem;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.glass:hover {
  transform: scale(1.02);
}

.section {
  padding: 60px 0;
}

.section-title {
  font-weight: bold;
  margin-bottom: 2rem;
}

footer {
  background: #111;
  padding: 30px 0;
  text-align: center;
  color: #aaa;
}

.carousel-inner img {
  max-height: 200px;
  object-fit: contain;
}

.carousel-item {
  padding: 1rem 0;
}

.carousel-indicators [data-bs-target] {
  background-color: #fff;
}

.btn-outline-light,
.btn-outline-primary,
.btn-outline-secondary,
.btn-success {
  min-width: 180px;
}