/* index.html 전용 스타일 */

body {
  background: linear-gradient(135deg, #d0f1ff 0%, #f8fafc 100%);
}

#network-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 0;
  top: 0;
  left: 0;
}

main.position-relative {
  position: relative;
  z-index: 1;
}

.main-content-padding {
  padding-left: 1rem;
  padding-right: 1rem;
}

.main-title {
  font-size: 2.5rem;
}

.main-desc {
  font-size: 1.25rem;
}

@media (max-width: 576px) {
  .main-title {
    font-size: 1.5rem !important;
  }
  .main-desc {
    font-size: 0.95rem !important;
  }
  .main-content-padding {
    padding-left: 1rem;
    padding-right: 1rem;
  }
} 