body {
  background: linear-gradient(180deg, #f4f6f9 0%, #fff 100%);
  font-family: 'Poppins', sans-serif;
}

/* Hero */
.hero-section {
  height: 70vh;
  background: url('images/hero-bg.jpg') center/cover no-repeat;
  position: relative;
  z-index: 1;
}
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: -1;
}
.hero-section h1 {
  font-size: 2.8rem;
  letter-spacing: 1px;
}

/* Products */
.card {
  border: none;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  transition: all 0.35s ease;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}
.card {
  line-height: 0;
}
.card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
  transition: all 0.3s;
  display: block;
}
.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}
.card img:hover {
  transform: scale(1.05);
}
.card-body {
  padding: 1.2rem;
}
.card-title {
  font-weight: 600;
  color: #222;
}
.card-text {
  color: #666;
}
.btn-dark {
  border-radius: 25px;
  transition: all 0.3s;
}
.btn-dark:hover {
  background-color: #111;
  transform: scale(1.05);
}

/* Modal */
.glass-card {
  background: linear-gradient(180deg, #110e0e5e 0%, #32213b 100%);
  backdrop-filter: blur(16px);
  border-radius: 25px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Ensure no border/shadow line appears after the products section */
#products {
  border: 0;
  box-shadow: none;
  background: transparent;
  overflow: hidden;
}

/* Remove any full-width line below the products section */
#products + * {
  border-top: 0 !important;
  box-shadow: none !important;
}
.footer-section {
  background: #111;
  color: #bbb;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #ff007f, #00e5ff, #6a11cb);
}

.footer-title {
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  position: relative;
}

.footer-title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #ff007f, #6a11cb);
  border-radius: 2px;
}

.footer-section a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #00e5ff;
  text-decoration: underline;
}

.play-badge {
  width: 150px;
  margin-top: 10px;
  transition: transform 0.3s ease;
}

.play-badge:hover {
  transform: scale(1.05);
}

.footer-bottom {
  border-top: 1px solid #333;
  background-color: #0d0d0d;
}

.footer-bottom p {
  color: #888;
  font-size: 0.9rem;
}

.footer-bottom span {
  color: #00e5ff;
  font-weight: 600;
}


