body {
  background: url("../images/bg-stars.png") no-repeat center center fixed !important;
  background-size: cover !important;
  background-color: #050511 !important;
  color: #ffffff !important;
  font-family: "Outfit", sans-serif;
}

/* Header */
.header {
  background: rgba(5, 5, 17, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 15px 0;
  position: absolute;
  width: 100%;
  z-index: 100;
}

.navbar-brand {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff !important;
  display: flex;
  align-items: center;
  letter-spacing: 0.5px;
}

.navbar-brand img {
  height: 40px;
  margin-right: 12px;
}

.header-btn {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
}

.header-btn:hover {
  background: #ffffff;
  color: #050511;
  border-color: #ffffff;
}

/* Hero Section */
.hero-section {
  padding-top: 200px;
  padding-bottom: 20px;
  min-height: 70vh;
  display: flex;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-size: 80px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 40px;
  color: #ffffff;
}

.hero-btn {
  border: 1px solid #3b60d4;
  color: #ffffff;
  padding: 12px 30px;
  border-radius: 4px;
  background: rgba(59, 96, 212, 0.1);
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
}

.hero-btn:hover {
  background: #3b60d4;
  color: #ffffff;
}

.hero-graphic-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-graphic {
  max-width: 100%;
  height: auto;
  /* Filter to match the blue glow if needed, assuming image is white/blue */
}

/* Features Section */
.features-section {
  padding: 80px 0;
}

.section-intro {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 60px;
  max-width: 800px;
}

.highlight-blue {
  color: #3b60d4;
  font-weight: 600;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: 12px;
  min-height: 140px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.05) 0%,
    transparent 100%
  );
  opacity: 0;
  transition: opacity 0.4s;
}

.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(59, 96, 212, 0.5);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(59, 96, 212, 0.2);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-text {
  font-size: 24px;
  line-height: 1.4;
  margin: 0;
  font-weight: 300;
  color: #e0e0e0;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 52px;
  }

  .hero-section {
    padding-top: 100px;
    text-align: center;
    flex-direction: column;
  }

  .hero-graphic-container {
    margin-top: 50px;
  }

  .section-intro {
    font-size: 32px;
  }
}

/* Particle/Star background effect (Simple implementation) */
.bg-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: transparent;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 2px !important;
}
