/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', Arial, sans-serif;
  color: #fff;

  background:
    radial-gradient(800px 400px at 20% 20%, rgba(255, 0, 80, 0.35), transparent),
    radial-gradient(700px 500px at 80% 80%, rgba(80, 120, 255, 0.35), transparent),
    radial-gradient(600px 400px at 60% 30%, rgba(120, 0, 255, 0.25), transparent),
    linear-gradient(135deg, #0a0a0f 0%, #0f0f18 40%, #0b0b14 100%);

  min-height: 100vh;
    background-attachment: fixed;
}


body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;

  background: radial-gradient(
    circle at 50% 50%,
    rgba(255,255,255,0.03),
    transparent 60%
  );
}

/* ================= LAYOUT ================= */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
  display: block;
}

.main {
  width: 100%;
}


/* ================= HEADER ================= */
.header {
  position: sticky;
  top: 0;
  z-index: 999;

  height: 72px; /* 🔥 increased height */

  background: rgba(15,15,18,0.55);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border-bottom: 1px solid rgba(255,255,255,0.06);
  
}

/* ================= HEADER ================= */
.header {
  position: sticky;
  top: 0;
  z-index: 999;

  height: 70px;

  background: rgba(15,15,18,0.6);
  backdrop-filter: blur(18px);

  border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* INNER */
.header-inner {
  max-width: 1200px;
  margin: auto;
  height: 100%;

  padding: 0 20px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ================= LOGO ================= */
.logo {
  display: flex;
  align-items: center;
}

/* PNG LOGO (VISIBLE EVERYWHERE) */
.logo-img {
  display: block;
  height: 60px;
  
}
/* ================= NAV ================= */
.nav {
  display: flex;
}

.nav a {
  margin: 0 12px;
  color: #aaa;
  text-decoration: none;
  font-size: 14px;
  transition: 0.2s;
}

.nav a:hover {
  color: #fff;
}

/* ================= BUTTON ================= */
.header-btn {
  position: relative;

  padding: 10px 18px;
  border-radius: 12px;

  background: linear-gradient(135deg,#ff4ecd,#7a5cff);
  color: #fff;

  font-size: 13px;
  font-weight: 600;

  text-decoration: none;

  overflow: hidden;
  white-space: nowrap;

  transition: 0.25s;
}

/* HOVER */
.header-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,78,205,0.4);
}

/* SHINE */
.header-btn::before {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.4),
    transparent
  );

  transform: translateX(-100%);
}

.header-btn:hover::before {
  animation: shine 0.8s ease;
}

@keyframes shine {
  100% {
    transform: translateX(100%);
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .header {
    height: 60px;
  }

  .header-inner {
    padding: 0 12px;
  }

  /* 🔥 HIDE TEXT LOGO */
  .logo-text {
    display: none;
  }

  /* 🔥 SHOW PNG LOGO */
  .logo-img {
    display: block;
  }

  /* 🔥 HIDE NAV */
  .nav {
    display: none;
  }

  /* SMALL BUTTON */
  .header-btn {
    padding: 7px 12px;
    font-size: 12px;
    border-radius: 8px;
  }
}


.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}


/* ================= SECTION TITLE ================= */
.section-title {
  max-width: 1100px;
  margin: 40px auto 30px;
  padding: 0 10px;
  text-align: center;
}

/* TITLE */
.section-title h2 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
}

/* GRADIENT TEXT */
.section-title span {
  background: linear-gradient(135deg,#ff4ecd,#7a5cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* SUBTEXT */
.section-sub {
  font-size: 13px;
  color: #aaa;
  margin-top: 10px;
}

/* NORMAL TEXT */
.section-heading {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  text-align: center;
}

/* ONLY GRADIENT WORD */
.gradient-text {
  background: linear-gradient(135deg,#ff4ecd,#7a5cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* ================= GLASS LINE ================= */
.glass-line {
  width: 120px;
  height: 2px;
  margin: 12px auto;

  border-radius: 10px;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.6),
    transparent
  );

  position: relative;
  overflow: hidden;
}

/* ANIMATION SHINE */
.glass-line::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.8),
    transparent
  );

  animation: lineShine 2.5s infinite;
}

@keyframes lineShine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .section-title h2 {
    font-size: 20px;
  }

  .glass-line {
    width: 80px;
  }
}

/* ================= HERO DYNAMIC ================= */
.hero-dynamic {
  text-align: center;
  padding: 50px 15px 30px;
}

/* TITLE */
.hero-title {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
}



/* MOBILE */
@media (max-width: 768px) {
  .hero-title {
    font-size: 22px;
  }
}

/* ================= CARD ================= */
.ai-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: 0.3s;
   cursor: pointer;
}

.ai-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(122,92,255,0.25);
}

.card-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 10px;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9),
    rgba(0,0,0,0.4),
    transparent
  );
}

.card-overlay h4 {
  font-size: 14px;
}

.card-overlay p {
  font-size: 12px;
  color: #ccc;
}

.stats {
  font-size: 11px;
  color: #aaa;
}

/* ================= MEDIA ================= */
.media {
  position: relative;
}

.media video {
  width: 100%;
  height: 260px;
  object-fit: cover;
  filter: brightness(0.95);
  transition: 0.4s;
}

.video-card:hover video {
  transform: scale(1.05);
  transition: 0.4s;
}

/* ================= BUTTON ================= */
.card-btn {
  display: block;
  text-align: center;
  margin: 10px;
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg,#ff4ecd,#7a5cff);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  box-shadow:
    0 4px 15px rgba(255,78,205,0.4),
    inset 0 1px 0 rgba(255,255,255,0.2);
  transition: 0.25s;
}

.card-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 8px 25px rgba(255,78,205,0.6),
    inset 0 1px 0 rgba(255,255,255,0.3);
}

/* ================= CREATE CARD ================= */
.create-card {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg,#2b1a4a,#5b2cff);
  border-radius: 16px;
  text-decoration: none;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 320px;
}

.create-card a {
  text-decoration: none;
  color: inherit;
}

.create-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(122,92,255,0.4);
}

.create-inner {
  text-align: center;
  padding: 20px;
}

.create-inner h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.create-inner p {
  font-size: 13px;
  color: #ddd;
  margin-bottom: 15px;
}

.plus {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
}

.create-btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.1);
  color: #fff;
}


/* ================= BANNER SWITCH ================= */
.mobile-banner {
  display: none;
}

@media (max-width: 768px) {
  .desktop-banner {
    display: none;
  }

  .mobile-banner {
    display: block;
  }
}

/* ================= SLIDER ================= */
.banner-slider {
  max-width: 1100px;
  margin: 30px auto;
  overflow: hidden;
  border-radius: 20px;

  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255,255,255,0.08);
}

/* TRACK */
.slider-track {
  display: flex;
  width: 400%; /* 4 slides */
  animation: slide 20s infinite;
}

/* SLIDE */
.slide {
  width: 25%;
  flex-shrink: 0;
}

/* IMAGE */
.slide img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

/* ✅ FIXED ANIMATION */
@keyframes slide {
  0%, 20%   { transform: translateX(0); }

  25%, 45%  { transform: translateX(-25%); }

  50%, 70%  { transform: translateX(-50%); }

  75%, 95%  { transform: translateX(-75%); }

  100%      { transform: translateX(0); }
}

/* MOBILE */
@media (max-width: 768px) {
  .slide img {
    height: 200px;
  }
}

/* ================= FOOTER ================= */
.footer {
  margin-top: 40px;
  padding: 20px;
  text-align: center;
  background: #111;
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner h3 {
  margin-bottom: 10px;
}

.footer-inner p {
  color: #aaa;
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-inner small {
  color: #666;
}

.footer-links a {
  margin: 0 10px;
  color: #888;
  text-decoration: none;
  font-size: 13px;
}


/* ================= MOBILE GRID FIX ================= */
@media (max-width: 768px) {

  .card-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px;
  }

  .media video {
    height: 200px;
  }

  .create-card {
    min-height: 240px;
  }

}

.live-status {
  text-align: center;
  font-size: 13px;
  color: #aaa;
  margin-top: 5px;
}

.online {
  color: #22c55e;
  animation: blink 1.2s infinite;
}

@keyframes blink {
  50% { opacity: 0.4; }
}
.ai-card:hover {
  transform: translateY(-5px) scale(1.02);
}
/* ================= LIVE BOX ================= */
.live-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin-top: 10px;
  padding: 8px 14px;

  border-radius: 999px;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);

  border: 1px solid rgba(255,255,255,0.08);

  font-size: 13px;
  color: #ddd;

  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

/* 🔥 PULSE DOT */
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;

  box-shadow: 0 0 10px #22c55e;

  animation: pulse 1.2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

/* COUNT STYLE */
#live-count {
  color: #fff;
  font-weight: 600;
}

/* ================= WRAPPER (CENTER FIX) ================= */
.live-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}

/* ================= LIVE BOX ================= */
.live-box {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 16px;
  border-radius: 999px;

  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.1);

  font-size: 13px;
  color: #ddd;

  box-shadow:
    0 8px 25px rgba(0,0,0,0.35),
    inset 0 1px 0 rgba(255,255,255,0.1);

  animation: float 3s ease-in-out infinite;
}

/* 🔥 FLOAT EFFECT */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-4px); }
  100% { transform: translateY(0px); }
}

/* ================= PULSE DOT ================= */
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;

  box-shadow: 0 0 10px #22c55e;

  animation: pulse 1.2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: 0.4; }
  100% { transform: scale(1); opacity: 1; }
}

/* COUNT */
#live-count {
  color: #fff;
  font-weight: 700;
}

/* TEXT */
.live-text {
  color: #aaa;
}

/* 🔥 HOVER GLOW */
.live-box:hover {
  box-shadow:
    0 10px 35px rgba(122,92,255,0.4),
    0 0 20px rgba(255,78,205,0.3);
}



/* ================= SECTION ================= */
.top-ai {
  margin: 50px auto;
  max-width: 1100px;
}

/* ================= GRID ================= */
.top-ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* ================= CARD ================= */
.top-ai-card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(15px);

  border: 1px solid rgba(255,255,255,0.08);

  transition: 0.3s;
}

/* IMAGE */
.top-ai-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* OVERLAY */
.top-ai-overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9),
    transparent
  );
}

/* TITLE */
.top-ai-overlay h3 {
  font-size: 16px;
  color: #fff;
}

/* TEXT */
.top-ai-overlay p {
  font-size: 12px;
  color: #bbb;
}

/* BADGE */
.badge {
  display: inline-block;
  margin-top: 6px;
  padding: 4px 8px;

  font-size: 11px;
  border-radius: 8px;

  background: rgba(255,255,255,0.1);
}

/* CTA */
.top-ai-btn {
  display: block;
  margin-top: 10px;

  padding: 8px;
  border-radius: 10px;

  text-align: center;

  background: linear-gradient(135deg,#ff4ecd,#7a5cff);
  color: #fff;

  font-size: 13px;
  font-weight: 600;
}

/* HOVER EFFECT */
.top-ai-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 30px rgba(122,92,255,0.4);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .top-ai-grid {
    grid-template-columns: 1fr;
  }

  .top-ai-img {
    height: 200px;
  }
}

/* ================= ABOUT SECTION ================= */
.about-ai {
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 15px;
}

/* ROW */
.about-row {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 40px 0;
}

/* REVERSE */
.about-row.reverse {
  flex-direction: row-reverse;
}

/* TEXT */
.about-text {
  flex: 1;
}

.about-text h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.about-text p {
  font-size: 14px;
  color: #bbb;
  line-height: 1.6;
}

/* IMAGE */
.about-img {
  flex: 1;
}

.about-img img {
  width: 100%;
  border-radius: 18px;
  object-fit: cover;

  background: rgba(255,255,255,0.05);
  min-height: 250px;
}

/* BUTTON */
.about-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 16px;

  border-radius: 10px;

  background: linear-gradient(135deg,#ff4ecd,#7a5cff);
  color: #fff;

  text-decoration: none;
  font-size: 14px;
  font-weight: 600;

  transition: 0.25s;
}

.about-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,78,205,0.5);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .about-row {
    flex-direction: column;
  }

  .about-row.reverse {
    flex-direction: column;
  }
}
.about-img img:hover {
  transform: scale(1.03);
  transition: 0.3s;
}
.about-text strong {
  color: #fff;
  font-weight: 600;

  background: linear-gradient(135deg,#ff4ecd,#7a5cff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* ================= SIDE CHAT WIDGET ================= */
.chat-preview {
  position: fixed;

  right: 20px;
  bottom: 20px; /* 🔥 grounded on desktop */

  width: 320px;
  max-width: 90%;

  z-index: 999;

  border-radius: 16px;
  background: rgba(20,20,30,0.9);
  backdrop-filter: blur(12px);

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.6),
    0 0 30px rgba(122,92,255,0.2);

  opacity: 1;
  transform: translateY(20px);

  pointer-events: none;
  overflow: hidden;
}

/* SHOW */
.chat-preview.show {
  animation: chatSlideIn 0.5s ease forwards,
             floatSide 3s ease-in-out infinite;
  pointer-events: auto;
}

/* ENTRY */
@keyframes chatSlideIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FLOAT */
@keyframes floatSide {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* ================= CLOSE BUTTON ================= */
.chat-close {
  position: absolute;
  top: 8px;
  right: 8px;

  width: 28px;
  height: 28px;

  border-radius: 50%;
  border: none;

  background: rgba(255,255,255,0.15);
  color: #fff;

  font-size: 18px;
  font-weight: bold;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 10;

  transition: 0.2s;
}

.chat-close:hover {
  background: rgba(255,255,255,0.3);
  transform: scale(1.1);
}

/* ================= CONTENT ================= */
.chat-header {
  padding: 10px;
  font-size: 13px;
  text-align: center;
  background: rgba(255,255,255,0.08);
}

.chat-body {
  display: flex;
  gap: 10px;
  padding: 12px;
}

.chat-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
}

.chat-msg p {
  font-size: 13px;
  color: #ddd;
}

/* CTA */
.chat-cta {
  display: block;
  text-align: center;
  padding: 10px;

  background: linear-gradient(135deg,#ff4ecd,#7a5cff);
  color: #fff;

  text-decoration: none;
  font-weight: 600;
}

/* ================= CHAT BUBBLE ================= */
.chat-bubble {
  position: fixed;

  right: 20px;
  bottom: 20px; /* 🔥 match chat */

  width: 60px;
  height: 60px;

  border-radius: 50%;

  display: none;
  align-items: center;
  justify-content: center;

  font-size: 24px;
  cursor: pointer;

  background: linear-gradient(135deg,#ff4ecd,#7a5cff);
  color: #fff;

  box-shadow: 0 10px 30px rgba(255,78,205,0.5);

  z-index: 999;
}

/* ================= HIDDEN ================= */
.chat-hidden {
  display: none !important;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  /* push above sticky CTA */
  .chat-preview {
    bottom: 85px;
    right: 10px;
    width: 90%;
  }

  .chat-bubble {
    bottom: 85px;
    right: 12px;
  }

}

.typing {
  display: none;
  padding: 6px 12px;
}

.typing span {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 2px;

  background: #aaa;
  border-radius: 50%;

  animation: bounce 1.2s infinite;
}

.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce {
  0%,80%,100% { transform: scale(0); }
  40% { transform: scale(1); }
}


.notif-popup {
  position: fixed;
  top: 90px;
  right: 20px;

  width: 260px;

  background: rgba(20,20,30,0.9);
  backdrop-filter: blur(12px);

  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);

  box-shadow: 0 15px 40px rgba(0,0,0,0.5);

  padding: 10px;

  display: none;
  z-index: 999;
}

.notif-inner {
  display: flex;
  gap: 10px;
  align-items: center;
}

.notif-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.notif-text strong {
  font-size: 13px;
}

.notif-text p {
  font-size: 12px;
  color: #ccc;
}

/* ANIMATION */
.notif-show {
  display: block;
  animation: notifSlide 0.4s ease;
}

@keyframes notifSlide {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* BADGE */
.chat-badge {
  position: absolute;
  top: -5px;
  right: -5px;

  min-width: 18px;
  height: 18px;

  padding: 0 5px;

  background: #ff3b3b;
  color: #fff;

  font-size: 11px;
  font-weight: 600;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 0 10px rgba(255,0,0,0.6);
}

/* HIDE */
.chat-badge.hidden {
  display: none;
}

/* ================= GLOBAL RESET (IMPORTANT) ================= */
h1, h2, h3, h4, p {
  margin: 0;
  padding: 0;
}

/* ================= HERO ================= */
.hero-dynamic {
  padding-top: 20px;
  padding-bottom: 0;
}

.hero-title {
  margin-bottom: 6px;   /* 🔥 super tight */
  line-height: 1.2;
}

/* ================= LIVE COUNTER ================= */
.live-wrap {
  margin-top: 4px;
  margin-bottom: 12px;
}

/* ================= BANNER ================= */
.banner-slider {
  margin-top: 10px;
  margin-bottom: 12px;
}

/* ================= SECTION TITLE ================= */
.section-title {
  margin-top: 10px;
  margin-bottom: 8px;
}

.section-title h2 {
  margin-bottom: 4px;
}

.section-sub {
  margin-top: 4px;
}

/* ================= GRID ================= */
.card-grid {
  margin-top: 10px;
}

/* ================= GLOBAL SECTION CONTROL ================= */
section {
  margin: 0;
  padding-top: 15px;
  padding-bottom: 10px;
}

/* ================= MOBILE (EVEN TIGHTER) ================= */
@media (max-width: 768px) {

  .hero-dynamic {
    padding-top: 15px;
  }

  .hero-title {
    margin-bottom: 4px;
  }

  .live-wrap {
    margin-bottom: 10px;
  }

  .banner-slider {
    margin-top: 8px;
    margin-bottom: 10px;
  }

  .section-title {
    margin-top: 8px;
    margin-bottom: 6px;
  }

  section {
    padding-top: 12px;
    padding-bottom: 8px;
  }
}

/* ================= LISTING ================= */

.ai-listing {
  padding: 30px 20px;
  max-width: 1100px;
  margin: auto;
}

/* HEADER */
.listing-header {
  text-align: center;
  margin-bottom: 20px;
}

.listing-header h1 {
  font-size: 28px;
  font-weight: 700;
}

.year {
  background: #ff4ecd;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 12px;
  margin-left: 8px;
}

.listing-header p {
  color: #aaa;
  margin-top: 5px;
}

/* FEATURED */
.featured-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);

  padding: 15px 20px;
  border-radius: 14px;
  margin-bottom: 20px;
}

.featured-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.featured-logo {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.featured-btn {
  background: linear-gradient(135deg,#ff4ecd,#7a5cff);
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  text-decoration: none;
}
/* ================= FEATURED WRAPPER ================= */
.featured-wrapper {
  max-width: 1150px;
  margin: 20px auto;
  border-radius: 16px;
  overflow: hidden;
}

/* ================= TOP STRIP ================= */
.featured-strip {
  text-align: center;
  font-size: 12px;
  letter-spacing: 2px;

  padding: 8px;

  background: linear-gradient(90deg,#ff4ecd,#7a5cff);

  color: #fff;
  font-weight: 600;
}

/* ================= MAIN CARD ================= */
.featured-card {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px 20px;

  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.08);

  transition: 0.3s;
}

/* 🔥 HOVER */
.featured-card:hover {
  transform: translateY(-3px);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.6),
    0 0 30px rgba(122,92,255,0.2);
}

/* ================= LEFT ================= */
.featured-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* ICON */
.featured-icon {
  width: 44px;
  height: 44px;

  border-radius: 12px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(135deg,#ff4ecd,#7a5cff);

  font-size: 20px;
}

/* TEXT */
.featured-info strong {
  display: block;
  font-size: 16px;
}

.featured-info p {
  font-size: 13px;
  color: #bbb;
  margin-top: 2px;
}

/* ================= CTA ================= */
.featured-btn {
  padding: 10px 18px;

  border-radius: 10px;

  background: linear-gradient(135deg,#ff4ecd,#7a5cff);
  color: #fff;

  font-weight: 600;
  text-decoration: none;

  transition: 0.25s;
}

.featured-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,78,205,0.4);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .featured-card {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .featured-left {
    flex-direction: column;
  }

}
/* FILTERS */
.filters {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 20px;
}

.filters button {
  background: rgba(255,255,255,0.05);
  border: none;
  padding: 8px 14px;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
}

.filters .active {
  background: linear-gradient(135deg,#ff4ecd,#7a5cff);
}

/* GRID */
.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px,1fr));
  gap: 15px;
}

/* CARD */
.listing-card {
  position: relative;
  padding: 15px;
  border-radius: 14px;

  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);

  text-align: center;
}

/* RANK */
.rank {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 12px;
  opacity: 0.6;
}

/* TAG */
.tag {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 6px;
}

.tag.free {
  background: #22c55e;
}

.tag.premium {
  background: #ff4ecd;
}

/* LOGO */
.card-logo {
  width: 50px;
  margin: 10px auto;
}

/* STARS */
.stars {
  color: gold;
  font-size: 14px;
  margin: 5px 0;
}

/* BUTTON */
.visit-btn {
  display: inline-block;
  margin-top: 10px;

  background: linear-gradient(135deg,#ff4ecd,#7a5cff);
  padding: 8px 14px;
  border-radius: 10px;

  color: #fff;
  text-decoration: none;
}

/* ================= GLASS CARD BASE ================= */
.listing-card {
  position: relative;
  padding: 18px;
  border-radius: 16px;

  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.08);

  transition: all 0.35s ease;

  overflow: hidden;
}

/* 🔥 GLASS EDGE GLOW */
.listing-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;

  padding: 1px;

  background: linear-gradient(
    120deg,
    rgba(255,78,205,0.2),
    rgba(122,92,255,0.2),
    transparent
  );

  -webkit-mask: 
    linear-gradient(#000 0 0) content-box, 
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;

  opacity: 0;
  transition: 0.3s;
}

/* ================= HOVER EFFECT ================= */
.listing-card:hover {
  transform: translateY(-6px) scale(1.02);

  border: 1px solid rgba(255,255,255,0.15);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.6),
    0 0 25px rgba(122,92,255,0.15);
}

/* 🔥 ACTIVATE EDGE GLOW */
.listing-card:hover::before {
  opacity: 1;
}

/* ================= INNER CONTENT ================= */
.card-logo {
  width: 52px;
  margin: 12px auto;
  transition: 0.3s;
}

.listing-card:hover .card-logo {
  transform: scale(1.08);
}

/* TITLE */
.listing-card h3 {
  margin-top: 8px;
  font-weight: 600;
}

/* DESCRIPTION */
.listing-card p {
  font-size: 13px;
  color: #bbb;
  margin-top: 6px;
}

/* ================= CTA BUTTON ================= */
.visit-btn {
  display: inline-block;
  margin-top: 12px;

  padding: 9px 16px;
  border-radius: 10px;

  background: linear-gradient(135deg,#ff4ecd,#7a5cff);
  color: #fff;

  font-size: 13px;
  font-weight: 600;

  text-decoration: none;

  transition: all 0.25s ease;
}

/* 🔥 CTA HOVER BOOST */
.listing-card:hover .visit-btn {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(255,78,205,0.35);
}

/* ================= TAG STYLE ================= */
.tag {
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 600;
}

.tag.free {
  background: rgba(34,197,94,0.15);
  color: #22c55e;
}

.tag.premium {
  background: rgba(255,78,205,0.15);
  color: #ff4ecd;
}

/* ================= RANK ================= */
.rank {
  font-size: 11px;
  opacity: 0.5;
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .listing-card {
    padding: 14px;
  }

  .listing-card:hover {
    transform: none; /* prevent jumpy feel on mobile */
  }

}

.listing-card {
  position: relative;
  padding: 18px;
  border-radius: 16px;

  background: rgba(255,255,255,0.04);

  /* 🔥 SOFTER BORDER */
  border: 1px solid rgba(255,255,255,0.12);

  /* 🔥 LIGHT SEPARATION */
  box-shadow: 
    0 8px 20px rgba(0,0,0,0.4),
    inset 0 0 0 1px rgba(255,255,255,0.02);

  transition: all 0.3s ease;
}
.listing-card:hover {
  transform: translateY(-5px);

  border: 1px solid rgba(255,255,255,0.22);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.6),
    0 0 20px rgba(122,92,255,0.12); /* softer glow */
}
.listing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px,1fr));

  /* 🔥 THIS FIXES CLAUSTROPHOBIA */
  gap: 22px;

  margin-top: 20px;
}
.ai-listing {
  padding: 30px 20px;

  /* 🔥 VERY SOFT GRADIENT LAYER */
  background: radial-gradient(
    circle at center,
    rgba(122,92,255,0.06),
    transparent 70%
  );
}

/* ================= CTA BLOCK ================= */
.cta-block {
  display: flex;
  justify-content: center;
  align-items: center;

  margin: 50px 20px;
}

/* INNER GLASS CARD */
.cta-inner {
  text-align: center;

  padding: 35px 30px;
  border-radius: 18px;

  max-width: 600px;
  width: 100%;

  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.1);

  box-shadow:
    0 20px 60px rgba(0,0,0,0.6),
    0 0 40px rgba(122,92,255,0.08);

  position: relative;
  overflow: hidden;
}

/* 🔥 SOFT GLOW BACKGROUND */
.cta-inner::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at center,
    rgba(255,78,205,0.12),
    transparent 70%
  );

  opacity: 0.6;
}

/* TITLE */
.cta-inner h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

/* SUBTEXT */
.cta-sub {
  font-size: 14px;
  color: #bbb;
  margin-bottom: 18px;
}

/* CTA BUTTON */
.cta-main {
  display: inline-block;

  padding: 12px 26px;
  border-radius: 12px;

  background: linear-gradient(135deg,#ff4ecd,#7a5cff);
  color: #fff;

  font-weight: 700;
  text-decoration: none;

  transition: 0.25s;
}

/* 🔥 HOVER */
.cta-main:hover {
  transform: translateY(-2px) scale(1.03);

  box-shadow:
    0 15px 40px rgba(255,78,205,0.4);
}

/* MOBILE */
@media (max-width: 768px) {

  .cta-inner {
    padding: 28px 18px;
  }

  .cta-inner h2 {
    font-size: 20px;
  }

}


/* ================= Age Gate ================= */
.age-gate {
  position: fixed;
  inset: 0;

  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 9999;
}

/* ================= BOX ================= */
.age-box {
  width: 90%;
  max-width: 420px;

  padding: 28px;
  border-radius: 18px;

  text-align: center;

  background: rgba(20,20,30,0.95);
  backdrop-filter: blur(16px);

  border: 1px solid rgba(255,255,255,0.08);

  box-shadow:
    0 30px 80px rgba(0,0,0,0.8),
    0 0 40px rgba(255,78,205,0.08);

  animation: fadeUp 0.4s ease;
}

/* BADGE */
.age-badge {
  display: inline-block;

  padding: 6px 12px;
  border-radius: 999px;

  font-size: 11px;
  letter-spacing: 1px;

  background: rgba(255,78,205,0.15);
  color: #ff4ecd;

  margin-bottom: 12px;
}

/* TITLE */
.age-title {
  font-size: 28px;
  font-weight: 700;
}

/* SUB */
.age-sub {
  margin-top: 6px;
  color: #bbb;
}

.danger {
  color: #ff4d4d;
  font-weight: 600;
}

/* CONTENT */
.age-content {
  margin-top: 16px;

  padding: 14px;
  border-radius: 12px;

  background: rgba(255,255,255,0.03);

  font-size: 13px;
  color: #aaa;
}

/* YES BUTTON */
.age-yes {
  width: 100%;
  margin-top: 18px;

  padding: 14px;
  border-radius: 12px;
  border: none;

  background: linear-gradient(135deg,#ff7a18,#ff4ecd);
  color: #fff;

  font-weight: 700;
  font-size: 15px;

  cursor: pointer;

  transition: 0.25s;
}

.age-yes:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(255,78,205,0.4);
}

/* NO BUTTON */
.age-no {
  margin-top: 10px;

  background: none;
  border: none;

  color: #777;
  font-size: 13px;

  cursor: pointer;
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= PREVIEW TEASER ================= */
.age-preview {
  display: flex;
  justify-content: center;
  gap: 10px;

  margin: 15px 0;
}

/* BLUR CARDS */
.blur-card {
  width: 60px;
  height: 80px;

  border-radius: 10px;

  background: linear-gradient(135deg,#ff4ecd,#7a5cff);

  filter: blur(6px);
  opacity: 0.6;

  animation: float 3s ease-in-out infinite;
}

.blur-card:nth-child(2) {
  animation-delay: 0.3s;
}
.blur-card:nth-child(3) {
  animation-delay: 0.6s;
}

/* FLOAT ANIMATION */
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* 🔥 BUTTON PULSE (SUBTLE) */
.age-yes {
  animation: pulseBtn 2s infinite;
}

@keyframes pulseBtn {
  0% { box-shadow: 0 0 0 rgba(255,78,205,0.4); }
  50% { box-shadow: 0 0 20px rgba(255,78,205,0.4); }
  100% { box-shadow: 0 0 0 rgba(255,78,205,0.4); }
}


/* REMOVE LINK UNDERLINE IN NOTIFICATION */
.notif-inner {
  text-decoration: none;
  color: inherit;
}

/* ALSO PROTECT CHILD TEXT */
.notif-inner * {
  text-decoration: none !important;
  color: inherit;
}