/* Base card */
.v-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #111;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 260px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
}

.v-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* Image area */
.v-card-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.v-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Badge */
.v-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.7);
  color: #fff;
}

/* Icon */
.v-card-icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0,0,0,0.7);
}

/* Play icon */
.v-icon-play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-45%, -50%);
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #fff;
}

/* Overlay */
.v-card-overlay {
  position: absolute;
  inset: 0;
  padding: 16px 16px 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
}

/* Overlay styles */
.v-overlay-light .v-card-overlay {
  background: linear-gradient(to top, rgba(255,255,255,0.18), transparent 55%);
  color: #fff;
}

.v-overlay-dark .v-card-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent 55%);
  color: #fff;
}

.v-overlay-gradient .v-card-overlay {
  background: linear-gradient(135deg, rgba(0,0,0,0.75), rgba(0,0,0,0.25));
  color: #fff;
}

.v-overlay-transparent .v-card-overlay {
  background: none;
}

/* Text */
.v-card-title {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 600;
}

.v-card-tagline {
  margin: 0 0 10px;
  font-size: 13px;
  opacity: 0.85;
}

/* Button */
.v-card-button {
  pointer-events: auto;
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

/* Button styles */
.v-button-solid {
  background: #00b4ff;
  color: #021019;
  border: 1px solid #00b4ff;
}

.v-button-outline {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.v-button-ghost {
  background: rgba(0,0,0,0.4);
  color: #fff;
  border: 1px solid transparent;
}

/* Hover effects */
.v-hover-zoom:hover .v-card {
  transform: scale(1.03);
}

.v-hover-glow:hover .v-card {
  box-shadow: 0 14px 35px rgba(0,180,255,0.45);
}

.v-hover-lift:hover .v-card {
  transform: translateY(-4px);
}

.v-hover-darken:hover .v-card {
  filter: brightness(0.85);
}

/* Types (badge colours) */
.v-type-hub .v-card-badge {
  background: rgba(0,180,255,0.8);
}

.v-type-product .v-card-badge {
  background: rgba(0,200,120,0.8);
}

.v-type-amazon .v-card-badge {
  background: rgba(255,153,0,0.85);
}

.v-type-oem .v-card-badge {
  background: rgba(180,180,180,0.85);
}

.v-type-youtube .v-card-badge {
  background: rgba(255,0,80,0.85);
}

.v-type-advert .v-card-badge {
  background: rgba(255,60,0,0.85);
}

.v-type-influencer .v-card-badge {
  background: rgba(180,0,255,0.85);
}

.v-type-viral .v-card-badge {
  background: rgba(255,0,180,0.85);
}

.v-type-service .v-card-badge {
  background: rgba(0,140,255,0.85);
}

.v-type-partner .v-card-badge {
  background: rgba(0,200,200,0.85);
}

/* Video type badge tweak */
.v-type-video .v-card-badge {
  box-shadow: 0 0 0 1px rgba(255,255,255,0.25);
}

/* Lightbox */
.vcard-lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.vcard-lightbox-overlay.active {
  display: flex;
}

.vcard-lightbox-inner {
  position: relative;
  max-width: 960px;
  width: 90%;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.7);
}

.vcard-lightbox-video {
  width: 100%;
  height: auto;
  display: block;
}

.vcard-lightbox-close {
  position: absolute;
  top: 8px;
  right: 12px;
  font-size: 20px;
  color: #fff;
  cursor: pointer;
  z-index: 2;
}

/* Responsive */
@media (max-width: 768px) {
  .v-card {
    min-height: 220px;
  }
  .v-card-title {
    font-size: 16px;
  }
  .v-card-tagline {
    font-size: 12px;
  }
}

