        /* You can keep this if you want, but it's usually not needed once Bootstrap loads */
        .flovv-card {
            display: block;
            text-decoration: none;
            color: inherit;
        }

        .flovv-image-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
        }

        .flovv-image-wrapper img {
            width: 100%;
            height: auto;
            display: block;
        }

        .flovv-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0,0,0,0.35);
            opacity: 0;
            transition: opacity 0.25s;
        }

        .flovv-card:hover .flovv-overlay {
            opacity: 1;
        }

        .flovv-title {
            position: absolute;
            bottom: 16px;
            left: 16px;
            color: white;
            margin: 0;
            text-shadow: 0 1px 3px rgba(0,0,0,0.8);
        }
            :root {
  --orange-main: #FF6600;
  --orange-soft: #FF9751;
  --blue-dark: #22305C;
  --blue-accent: #136197;
}

/* ====== GLOBAL ====== */
.section-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--blue-dark);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

/* ====== STORIES ====== */
.story-row {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
}

.story-card {
  min-width: 90px;
  text-align: center;
  color: var(--blue-dark);
  font-weight: 600;
  text-decoration: none;
}

.story-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--orange-main);
  transition: transform 0.3s ease;
}

.story-card:hover img {
  transform: scale(1.08);
}

/* ====== CATEGORY CARDS ====== */
.flovv-card {
  position: relative;
  display: block;
  height: 320px;
  border-radius: 22px;
  overflow: hidden;
  background: var(--blue-dark);
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
  transition: all 0.35s ease;
}

.flovv-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.flovv-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(34,48,92,0.95),
    rgba(19,97,151,0.35),
    transparent
  );
}

.flovv-card h2 {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  z-index: 2;
  text-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

/* ====== HOVER MAGIC ====== */
.flovv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.28);
}

.flovv-card:hover img {
  transform: scale(1.1);
}

.flovv-card:hover .flovv-gradient {
  background: linear-gradient(
    to top,
    rgba(255,102,0,0.9),
    rgba(255,151,81,0.45),
    transparent
  );
}
