.section-title {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  margin-bottom: 10px !important;
  font-size: 42px !important;
}

.section-title h2 {
  color: #FFFFFF !important;
  font-size: 42px !important;
  font-weight: 700 !important;
  margin-bottom: 10px !important;
  text-align: center !important;
  width: 100% !important;
}

.section-subtitle {
  text-align: center !important;
  margin-bottom: 1rem !important;
}

.section-subtitle p {
  color: rgba(255,255,255,0.8) !important;
  font-size: 14px !important;
  line-height: 1.6 !important;
  text-align: center !important;
  max-width: 800px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

html, body {
    margin: 0;
    min-height: 100vh;
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    font-weight: var(--bs-body-font-weight);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    background: 
        radial-gradient(
            circle at 20% 30%, 
            rgba(30, 100, 220, 0.18) 0%, 
            transparent 60%
        ),
        radial-gradient(
            circle at 80% 70%, 
            rgba(0, 180, 255, 0.12) 0%, 
            transparent 70%
        ),
        linear-gradient(180deg, 
            #0f1a2e 0%, 
            #001220 40%, 
            #000814 100%
        );
    background-attachment: fixed;
}

::-webkit-scrollbar {
  width: 12px;
  height: 12px;
}

::-webkit-scrollbar-track {
  background: #000000;
}

::-webkit-scrollbar-thumb {
  background: #1a1a1a;
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: #2a2a2a;
}

* {
  scrollbar-width: thin;
  scrollbar-color: rgb(33 150 243) rgb(33 150 243 / 20%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1.5rem;
    background: rgb(33 150 243 / 30%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 9999px;
    margin-bottom: 1rem !important;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0;
    animation: popDownContent 1.2s cubic-bezier(0.23, 0.86, 0.39, 0.96) 0.2s forwards;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  color: #ffffff;
}

.hero-badge span {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.02em;
}

.modal-content {
  background: linear-gradient(180deg, rgb(0 28 51), rgb(2 15 25));
}