body{
  background-color: rgb(7, 13, 25);
}

.glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 700px;
    height: 700px;
    background: #363f8c;
    opacity: 0.9;
    filter: blur(200px);
    pointer-events: none;
    z-index: -999;
    border-radius: 9999px;
}

@media (max-width: 991.98px) {
    .glow {
        position: fixed;
        top: -40vh;
        left: 50vw;
        transform: translateX(-50%);
        width: 120vmax;
        height: 120vmax;
        max-width: 500px;
        max-height: 500px;
        background: #363f8c;
        opacity: 0.8;
        filter: blur(160px);
    }
}

.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.hero-buttons a {
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 16px;
  transition: all 0.3s ease;
}

.btn-shop {
  background-color: #6571ff;
  color: white;
}

.btn-shop:hover {
  background-color: #5562e0;
}

.btn-about {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
}

.btn-about:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 40px;
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
    .h4, h4 {
        font-size: 1.3rem;
    }
}

.alert-blog {
  box-sizing: border-box;
  text-align: center;
}

.d-flex.align-items-center.gap-3 {
    background: rgba(255, 255, 255, 0.08);
    color: #cbd5e1;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0.75rem;
    padding: 0.5rem 1rem;
    font-weight: 500;
}

.accordion-button {
  background-color: #ffffff0f;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: #ffffff0f;
}

.accordion-item {
  background-color: #ffffff0f;
}

.modal-content {
  background-color: #060c16;
}