body, html {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
  height: 100%;
}

#particles-js {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
}

.blur-overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(18, 18, 18, 0.6);
  z-index: 1;
  pointer-events: none;
}


.content-wrapper {
  position: relative;
  z-index: 1;
}

.title {
  text-align: center;
  font-size: 3rem;
  margin-top: 40px;
}

.brand-undefined { color: #fff; }
.brand-bp        { color: #ff2b2b; font-weight: bold; }

.subtitle {
  text-align: center;
  color: #bbb;
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.buttons {
  text-align: center;
  margin: 20px 0;
}

.buttons button {
  background: #1a1a1a;
  color: #ff2b2b;
  border: 1px solid #ff2b2b;
  padding: 12px 24px;
  margin: 10px;
  font-size: 1rem;
  cursor: pointer;
  border-radius: 6px;
  transition: background 0.3s ease;
}

.buttons button:hover {
  background: #ff2b2b;
  color: #000;
}

.cards-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: #111;
  border: 1px solid #ff2b2b;
  border-radius: 10px;
  width: 300px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(255,43,43,0.5);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card h2 {
  color: #ff2b2b;
  margin-bottom: 15px;
}

.card iframe {
  width: 100%;
  height: 170px;
  border-radius: 8px;
  margin-bottom: 15px;
}

/* Inner Swiper Slider */
.productSwiper {
  width: 100%;
  overflow: hidden;
}

.productSwiper .swiper-wrapper {
  display: flex;
}

.productSwiper .swiper-slide {
  flex-shrink: 0;
  width: 100% !important;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 10px;
  box-sizing: border-box;
}

.productSwiper .swiper-slide h3 {
  color: #fff;
  margin-bottom: 10px;
}

.productSwiper .swiper-slide button {
  background: #ff2b2b;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  width: 100%;
  cursor: pointer;
  transition: background 0.3s ease;
}

.productSwiper .swiper-slide button:hover {
  background: #ff0000;
}

.productSwiper .swiper-pagination {
  position: static;
  margin-top: 10px;
  text-align: center;
}

.productSwiper .swiper-pagination-bullet {
  background: grey;
  opacity: 1;
  border-radius: 10px;
  width: 20px;
  height: 8px;
  margin: 0 4px !important;
}

.productSwiper .swiper-pagination-bullet-active {
  background: #fff;
}

/* Mobile: Stack Cards Vertically */
@media (max-width: 992px) {
  .cards-section {
    flex-direction: column !important;
    align-items: center !important;
  }
  .card {
    width: 90% !important;
  }
}
