.home-land-card {
  background-color: #2e2b33;
  border: 1px solid rgba(111, 111, 111, 0.125);
  border-radius: .50rem !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(255, 255, 255, 0.05);
  padding: 40px;
}

.review-section {
  padding: 40px 20px;
}

.review-title {
  font-weight: 600;
  margin-bottom: 30px;
}

.review-card {
  background-color: #2e2b33;
  border: 1px solid rgba(111, 111, 111, 0.125);
  border-radius: 15px;
  padding: 20px;
  height: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4), 0 1px 2px rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
}

.review-stars {
  color: #f1c40f;
  margin-bottom: 5px;
}

.review-name {
  font-weight: 700;
  font-size: 14px;
}

.review-user {
  color: #ccc;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.review-text {
  font-size: 12px;
  color: #e1e1e1;
}

.owl-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .gift-for-every {
    width: 100%;
    max-width: unset !important;
  }
}


.container {
  max-width: 1300px;
  margin: auto;
}

.title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* 4 Cards per row */
.card-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* Card */
.card {
  /* height: 120px; */
  border-radius: 14px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  color: #fff;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none !important;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

/* Background Images */
.bg1 {
  background-image: url("/public/img/newimg/like1.jpg");
}

.bg2 {
  background-image: url("/public/img/newimg/like2.jpg");
}

.bg3 {
  background-image: url("/public/img/newimg/like3.jpg");
}

.bg4 {
  background-image: url("/public/img/newimg/like4.jpg");
}

.bg5 {
  background-image: url("/public/img/newimg/like5.jpg");
}

/* Dark Overlay */
.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.45));
}

/* Badge */
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ff3b3b;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 600;
  z-index: 2;
}

.badge-new {
  position: absolute;
  top: -5px;
  right: -35px;
  background: #ff2754;
  color: white;
  padding: 24px 45px 5px 45px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  transform: rotate(45deg);
  width: 140px;
  text-align: center;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Content */
.card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
}

/* Icons */
.icon {
  width: 55px;
  height: 40px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.icon.white-circle {
  background: #ffffff;
  /* border-radius: 50%; */
  width: 55px;
  height: 40px;
  font-size: 24px;
}

.icon.pink {
  background: #ff4d8d;
}

.icon.green {
  background: #20c997;
}

.icon.purple {
  background: #845ef7;
}

.icon.orange {
  background: #ff922b;
}

/* Text */
.text h3 {
  font-size: 16px;
  font-weight: 600;
}

.text p {
  font-size: 13px;
  color: #e0e0e0;
  margin-top: 4px;
}

/* Responsive */
@media (max-width: 1024px) {
  .card-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .card-wrapper {
    grid-template-columns: 1fr;
  }
}

/* Hero Section Slider - Custom Minly Style */
#homeSlider {
  position: relative;
  width: 100%;
  height: 600px;
  overflow: hidden;
  background: #000;
  margin-top: -20px;
}

/* Premium Lighting Overlays */
#homeSlider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 0%, transparent 100%);
  z-index: 15;
  pointer-events: none;
}

.custom-slider-container {
  display: flex;
  flex-direction: row;
  /* Horizontal sliding even on mobile */
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
}

.custom-slide {
  flex: 0 0 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

/* Left Side: Text Content */
.banner-text-side {
  width: 45%;
  flex: 0 0 45%;
  background: transparent; /* Remove solid black to reveal curve behind */
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 100px;
  padding-right: 40px;
  z-index: 10;
  color: #fff;
}

.banner-text-side h1 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 25px;
}

.banner-text-side p {
  font-size: 1.4rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 35px;
  max-width: 480px;
}

.banner-text-side .btn-main {
  background: #ffd700;
  color: #000 !important;
  /* Force visible text */
  padding: 10px 45px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  width: fit-content;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}

.banner-text-side .btn-main:hover {
  background: #f0f0f0;
  transform: scale(1.05);
}

/* Right Side: Media with Subtle Curved Partition */
.banner-media-side {
  width: 90%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  clip-path: url(#subtleSCurve); /* Subtle S-Curve SVG implementation */
  -webkit-clip-path: url(#subtleSCurve);
}

.banner-media-side::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Soft, broad premium glow highlight */
  background: linear-gradient(110deg, 
      rgba(255, 255, 255, 0.1) 30%, 
      rgba(255, 255, 255, 0.05) 50%, 
      transparent 70%);
  z-index: 5;
  pointer-events: none;
}

.banner-media-side img,
.banner-media-side video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Dots Navigation */
.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 100px;
  z-index: 30;
  display: flex;
  gap: 12px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dot.active {
  background: #fff;
  width: 25px;
  border-radius: 5px;
}

/* Responsive Custom Slider */
@media (max-width: 1200px) {
  .banner-text-side h1 {
    font-size: 2.8rem;
  }

  .banner-text-side {
    padding-left: 60px;
  }

  .slider-dots {
    left: 60px;
  }
}

@media (max-width: 991px) {
  #homeSlider {
    height: 750px;
    /* Taller on mobile to fit stack */
    margin-top: 0;
  }

  .custom-slider-container {
    gap: 0;
    /* No gaps to prevent bleeding */
  }

  .custom-slide {
    flex-direction: column;
    flex: 0 0 100%;
    min-width: 100%;
    width: 100%;
    background: #000;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* Rounding fix */
  }

  .banner-text-side {
    width: 100%;
    flex: 0 0 auto;
    min-height: 400px;
    padding: 120px 30px 40px;
    /* More padding to clear high-z navbar */
    text-align: center;
    align-items: center;
    box-sizing: border-box;
  }

  .banner-text-side h1 {
    font-size: 2.2rem;
    /* Slightly smaller for mobile hierarchy */
    margin-bottom: 12px;
  }

  .banner-text-side p {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .banner-media-side {
    width: 100%;
    flex: 1;
    margin-left: 0;
    clip-path: none;
  }

  .banner-media-side::after {
    display: none;
  }

  .slider-dots {
    left: 50%;
    transform: translateX(-50%);
    bottom: 25px;
    padding: 12px 24px;
    background: rgba(0, 0, 0, 0.7);
    /* Darker for better visibility */
    border-radius: 40px;
    backdrop-filter: blur(8px);
    /* Premium blurry background */
    z-index: 40;
  }
}

@media (max-width: 576px) {
  #homeSlider {
    height: 680px;
  }

  .banner-text-side {
    min-height: 320px;
    padding: 140px 20px 30px;
    /* Increased to 140px to safely clear logo */
  }

  .banner-text-side h1 {
    font-size: 1.7rem;
  }

  .banner-text-side p {
    font-size: 0.9rem;
  }
}

/* Hero Section (Grow your Business) */
.hero {
  background-color: #000;
  /* Solid Black as per screenshot */
  padding: 25px;
  /* Precise padding */
  color: #fff;
  overflow: hidden;
  border-radius: 20px;
  /* More pronounced rounded corners */
  margin: 40px auto;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 100%;
  margin: 0;
  border-radius: 0 !important;
}

/* Left Content */
.hero-content {
  flex: 1;
  text-align: left;
}

.hero-content h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
  line-height: 1.5;
  max-width: 450px;
}

/* Button */
.cta-btn {
  background: #20c997;
  color: #000 !important;
  border: none;
  padding: 14px 40px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 800;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-decoration: none;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3);
}

.cta-btn:hover {
  background: #17b187;
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(32, 201, 151, 0.5);
}

/* Right Images */
.hero-images {
  flex: 1.2;
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

.hero-images img {
  width: 110px;
  height: 220px;
  object-fit: cover;
  border-radius: 12px;
  /* Slightly softer radius for images */
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.4s ease;
}

.hero-images img:hover {
  transform: translateY(-20px) scale(1.05);
  border-color: #20c997;
}

/* Responsive */
@media (max-width: 1200px) {
  .hero-container {
    gap: 40px;
  }

  .hero-content h1 {
    font-size: 38px;
  }
}

@media (max-width: 992px) {
  .hero {
    padding: 60px 20px;
  }

  .hero-container {
    flex-direction: column;
    text-align: center;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
    margin-bottom: 40px;
  }

  .hero-images {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }

  .hero-images img {
    width: 100px;
    height: 180px;
  }
}

@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-images img {
    width: 80px;
    height: 140px;
  }
}

/* Section */
.impact {
  background: #e0264a;
  border-radius: 16px;
  margin-top: 40px;
  color: #ffffff;
}

/* Layout */
.impact-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

/* Text Content */
.impact-content {
  max-width: 560px;
}

.impact-content h2 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 20px;
}

.impact-content .lead {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #ffe3e8;
}

.impact-content p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 28px;
  color: #ffd2db;
}

/* Button */
.cta {
  display: inline-block;
  background: #ffffff;
  color: #e0264a !important;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Image Card */
.impact-image {
  /*background: #ffffff;*/
  padding: 14px;
  border-radius: 20px;
}

.impact-image img {
  width: 340px;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
}

/* Responsive */
@media (max-width: 992px) {
  .impact {
    padding: 40px;
  }

  .impact-container {
    flex-direction: column;
    text-align: center;
  }

  .impact-image img {
    width: 100%;
    max-width: 320px;
    height: auto;
  }
}

@media (max-width: 480px) {
  .impact {
    padding: 30px 20px;
  }

  .impact-content h2 {
    font-size: 26px;
  }
}

/* ============================================================
   PREMIUM GUEST NAVBAR (MINLY STYLE)
   ============================================================ */

/* Nav Item Spacing */
.navbar-nav.mr-auto .nav-item {
  margin-right: 1.5rem !important; /* Premium spacing between items */
}

.navbar-nav.mr-auto .nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85) !important;
  transition: color 0.3s ease;
}

.navbar-nav.mr-auto .nav-link:hover {
  color: #fff !important;
}

/* Sleek Search Bar (Minly Mode) */
#searchCreatorNavbar {
  width: 280px !important; /* Sleeker, narrower width */
  height: 40px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 50px !important;
  padding: 0 45px 0 20px !important;
  color: #fff !important;
  font-size: 0.9rem !important;
  transition: all 0.3s ease !important;
}

#searchCreatorNavbar:focus {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.1) !important;
  width: 320px !important;
}

.button-search {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent !important;
  border: none !important;
  color: rgba(255, 255, 255, 0.7) !important;
  padding: 0 !important;
  height: auto !important;
}

/* Auth Pill Buttons (Minly Aesthetic) */
.btn-auth-signup,
.btn-auth-login {
  height: 40px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 22px !important;
  border-radius: 50px !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  white-space: nowrap;
}

/* Sign Up (Primary CTA) */
.btn-auth-signup {
  background-color: #fff !important;
  color: #FF3366 !important; /* Minly Magenta */
  border: none !important;
}

.btn-auth-signup:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
  background-color: #f8f8f8 !important;
}

/* Log In (Secondary CTA) */
.btn-auth-login {
  background: transparent !important;
  color: #fff !important;
  border: 1.5px solid rgba(255, 255, 255, 0.6) !important;
}

.btn-auth-login:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: #fff !important;
}

/* ============================================================
   LIGHT THEME ADAPTATION
   ============================================================ */
[data-bs-theme="light"] header .navbar.navbar-inverse,
[data-bs-theme="light"] .navbar.navbar-inverse {
  background-color: #fff !important;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05) !important;
}

[data-bs-theme="light"] .navbar-nav.mr-auto .nav-link {
  color: #333 !important;
}

[data-bs-theme="light"] .navbar-nav.mr-auto .nav-link:hover {
  color: #FF3366 !important;
}

[data-bs-theme="light"] #searchCreatorNavbar {
  background: #f4f4f4 !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
  color: #333 !important;
}

[data-bs-theme="light"] #searchCreatorNavbar::placeholder {
  color: #999;
}

[data-bs-theme="light"] .button-search {
  color: #777 !important;
}

[data-bs-theme="light"] .btn-auth-signup {
  background-color: #FF3366 !important; /* Invert colors for light mode */
  color: #fff !important;
}

[data-bs-theme="light"] .btn-auth-signup:hover {
  background-color: #e62e5c !important;
}

[data-bs-theme="light"] .btn-auth-login {
  color: #333 !important;
  border-color: rgba(0, 0, 0, 0.2) !important;
}

[data-bs-theme="light"] .btn-auth-login:hover {
  background: rgba(0, 0, 0, 0.03) !important;
  border-color: #333 !important;
}

/* Mobile Responsiveness for Buttons */
@media (max-width: 991px) {
  .btn-auth-signup,
  .btn-auth-login {
    height: 36px;
    padding: 0 15px !important;
    font-size: 0.85rem !important;
  }
}

/* ============================================================
   EVENT SCROLLER (HOME PAGE)
   ============================================================ */
.event-scroller-wrapper {
  position: relative;
  width: 100%;
  padding: 10px 0;
}

.event-scroller {
  display: flex !important;
  overflow-x: auto !important;
  scroll-behavior: smooth;
  gap: 20px;
  padding-bottom: 20px;
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.event-scroller::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}

.event-scroller-item {
  flex: 0 0 320px; /* Fixed width for cards in scroller */
  min-width: 320px;
}

/* Reusing & Adapting Premium Card Styles from live-events.blade.php */
.event-card-link {
  text-decoration: none !important;
  display: block;
  height: 100%;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.event-card-link:hover {
  transform: translateY(-8px);
}

.event-card-premium {
  border-radius: 20px !important;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #edf2f7 !important;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05) !important;
  transition: all 0.3s ease;
}

[data-bs-theme="dark"] .event-card-premium {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: none !important;
}

.card-cover-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.card-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.badge-live {
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0% { opacity: 1; }
  50% { opacity: 0.7; }
  100% { opacity: 1; }
}

/* ============================================================
   PREMIUM CREATOR CARD (REDESIGN)
   ============================================================ */
.creator-card-premium {
  display: block;
  text-decoration: none !important;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  height: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid #edf2f7;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
}

[data-bs-theme="dark"] .creator-card-premium {
  background: #111111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.creator-card-premium:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

[data-bs-theme="dark"] .creator-card-premium:hover {
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.creator-card-image-wrapper {
  position: relative;
  padding-top: 125%; /* Portrait Aspect Ratio */
  overflow: hidden;
  background: #f1f5f9;
}

[data-bs-theme="dark"] .creator-card-image-wrapper {
  background: #0f172a;
}

.creator-card-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.creator-card-premium:hover .creator-card-image {
  transform: scale(1.05);
}

.creator-card-info {
  padding: 16px 20px 22px;
  display: flex;
  flex-direction: column;
  min-height: 100px;
}

.creator-card-name {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1a202c;
  margin-bottom: 2px;
  line-height: 1.2;
  display: flex;
  align-items: center;
}

[data-bs-theme="dark"] .creator-card-name {
  color: #f8fafc;
}

.creator-card-category {
  font-size: 0.9rem;
  color: #718096;
  margin-bottom: 8px;
  font-weight: 500;
}

[data-bs-theme="dark"] .creator-card-category {
  color: #94a3b8;
}

.creator-card-price {
  margin-top: auto;
  font-size: 1rem;
  font-weight: 700;
  color: #1a202c;
}

[data-bs-theme="dark"] .creator-card-price {
  color: #f8fafc;
}

.creator-card-premium .verified-icon {
  font-size: 1.1rem;
  color: #0d6efd;
  margin-left: 6px;
  display: inline-flex;
}