/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ── Logo Icon ── */
.logo-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: .85rem;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
  flex-shrink: 0;
}

:root {
  --bg: #05050a;
  --bg2: #0d0d18;
  --surface: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.08);
  --pink: #ec4899;
  --purple: #a855f7;
  --orange: #f97316;
  --cyan: #22d3ee;
  --white: #ffffff;
  --gray: #94a3b8;
  --gray2: #64748b;
  --grad: linear-gradient(135deg, var(--purple), var(--pink));
  --grad2: linear-gradient(135deg, var(--pink), var(--orange));
  --font: 'Inter', 'Space Grotesk', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 16px;
  --glow-purple: 0 0 40px rgba(168, 85, 247, 0.3);
  --glow-pink: 0 0 40px rgba(236, 72, 153, 0.3);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection {
  background: var(--purple);
  color: white;
  text-shadow: none;
}

/* ===== NOISE OVERLAY ===== */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.03;
  z-index: 9999;
  pointer-events: none;
}

/* ===== PROGRESS BAR ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--grad);
  z-index: 2000;
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}


/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--grad);
  border-radius: 99px;
}

/* ===== UTILITY ===== */
.gradient-text {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #f97316 100%, #a855f7 150%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.3));
  animation: txtGradient 4s linear infinite;
}

@keyframes txtGradient {
  0% {
    background-position: 0% center;
  }

  100% {
    background-position: 200% center;
  }
}


.glass {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(25px) saturate(180%);
  -webkit-backdrop-filter: blur(25px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.glass::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
      rgba(255, 255, 255, 0.08),
      transparent 40%);
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.glass:hover::before {
  opacity: 1;
}

.glass>* {
  position: relative;
  z-index: 1;
}


.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--grad);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(168, 85, 247, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.8rem;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: white;
  opacity: 0;
  transition: var(--transition);
}

.btn-primary:hover::before {
  opacity: 0.1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(168, 85, 247, 0.5);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: var(--transition);
}

.btn-ghost:hover {
  border-color: var(--purple);
  background: rgba(168, 85, 247, 0.1);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}


.section-title {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  font-family: 'Space Grotesk', var(--font);
  letter-spacing: -0.02em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}


.section-sub {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 560px;
  margin-bottom: 48px;
}


/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(5, 5, 10, 0.7);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding: 10px 0;
}


.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-img {
  height: 48px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  transition: var(--transition);
}

@media (max-width: 768px) {
  .logo-img {
    height: 38px;
    max-width: 60vw;
  }
}

.logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(168, 85, 247, 0.3));
}

.logo-text {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  font-family: 'Space Grotesk', sans-serif;
}

.logo-dot {
  color: var(--pink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin-left: auto;
}

.nav-link {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: white;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  margin-left: 16px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 120px 24px 80px;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}

@media (max-width: 768px) {
  .hero-bg-img {
    height: 65vh;
    object-position: center top;
    -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(168, 85, 247, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse at 80% 80%, rgba(236, 72, 153, 0.1) 0%, transparent 60%),
    linear-gradient(to bottom, transparent 60%, var(--bg) 100%);
}

.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: float linear infinite;
  opacity: 0.6;
}

@keyframes float {
  0% {
    transform: translate(0, 100vh) scale(0);
    opacity: 0;
  }

  /* Halfway point sway */
  50% {
    transform: translate(20px, 50vh) scale(1);
    opacity: 0.8;
  }

  100% {
    transform: translate(-20px, -100px) scale(0.5);
    opacity: 0;
  }
}


.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 24px;
  border-radius: 50px;
  margin-bottom: 32px;
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.6s ease forwards;
  text-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}


.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--purple);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.4)
  }

  50% {
    box-shadow: 0 0 0 8px rgba(168, 85, 247, 0)
  }
}

.hero-title {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.03em;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: fadeInUp 0.7s 0.1s ease both;
}


.hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto 48px;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.7s 0.2s ease both;
}


.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 64px;
  animation: fadeInUp 0.7s 0.3s ease both;
}

.hero-stats {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 0.7s 0.4s ease both;
}

.stat-card {
  padding: 20px 32px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  border-color: rgba(168, 85, 247, 0.4);
  transform: translateY(-4px);
  box-shadow: var(--glow-purple);
}

.stat-num {
  font-size: 2rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
}

.stat-label {
  color: var(--gray);
  font-size: 0.85rem;
  margin-top: 4px;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray2);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--purple), transparent);
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0)
  }

  50% {
    transform: translateX(-50%) translateY(8px)
  }
}

/* ===== TICKER ===== */
.ticker-wrap {
  background: rgba(168, 85, 247, 0.06);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  white-space: nowrap;
  padding: 12px 0;
}

.ticker {
  display: inline-block;
  animation: ticker 30s linear infinite;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ticker span {
  margin-right: 32px;
  color: var(--gray);
}

.ticker .sep {
  color: var(--purple);
}

@keyframes ticker {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ===== FEATURED ===== */
.featured {
  padding: 120px 0;
}

.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 48px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  margin-top: 48px;
}

.featured-card:hover {
  border-color: rgba(168, 85, 247, 0.4);
  box-shadow: var(--glow-purple);
}

.featured-visual {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.5s ease;
}

.featured-card:hover .featured-img {
  transform: scale(1.03);
}

.featured-badge-live {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(16, 185, 129, 0.4);
  color: #10b981;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4)
  }

  50% {
    box-shadow: 0 0 0 6px rgba(16, 185, 129, 0)
  }
}

.featured-tag {
  display: inline-block;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.featured-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: 'Space Grotesk', sans-serif;
}

.featured-desc {
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 32px;
}

.featured-metrics {
  display: flex;
  gap: 32px;
  margin-bottom: 24px;
}

.metric-val {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

.metric-lbl {
  font-size: 0.8rem;
  color: var(--gray);
}

.featured-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.tag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--gray);
  font-size: 0.8rem;
  padding: 4px 14px;
  border-radius: 50px;
}

/* ===== SERVICES ===== */
.services {
  padding: 120px 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(168, 85, 247, 0.05) 0%, transparent 70%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 32px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 247, 0.4);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--g1, #a855f7), var(--g2, #ec4899));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 26px;
  height: 26px;
  color: white;
}

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Space Grotesk', sans-serif;
}

.service-card p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-feats {
  list-style: none;
  margin-bottom: 20px;
}

.service-feats li {
  font-size: 0.85rem;
  color: var(--gray);
  padding: 3px 0;
}

.service-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  height: 120px;
  background: rgba(255, 255, 255, 0.03);
}

.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card:hover .service-img-wrap img {
  transform: scale(1.05);
}

/* ===== PORTFOLIO ===== */
.portfolio {
  padding: 120px 0;
}

.portfolio-filter {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 24px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  color: var(--gray);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--grad);
  border-color: transparent;
  color: white;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.portfolio-card {
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.portfolio-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow-purple);
}

.portfolio-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.portfolio-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 10, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.portfolio-btn {
  font-size: 0.85rem;
  padding: 10px 24px;
}

.portfolio-info {
  padding: 20px 20px 24px;
}

.portfolio-cat {
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.portfolio-info h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  font-family: 'Space Grotesk', sans-serif;
}

.portfolio-rating {
  color: #f59e0b;
  font-size: 0.85rem;
}

.portfolio-rating span {
  color: var(--gray);
  margin-left: 4px;
}

.portfolio-card.hide {
  display: none;
}

/* ===== ABOUT ===== */
.about {
  padding: 120px 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(236, 72, 153, 0.06) 0%, transparent 60%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-stack {
  position: relative;
}

.about-img-main {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  aspect-ratio: 4/3;
}

.about-badge-floating {
  position: absolute;
  bottom: -20px;
  right: -20px;
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
}

.badge-num {
  font-size: 2.5rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1;
}

.badge-lbl {
  color: var(--gray);
  font-size: 0.8rem;
  margin-top: 4px;
}

.about-content .section-tag {
  margin-bottom: 12px;
}

.about-desc {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 24px;
  font-size: 1.05rem;
  font-weight: 400;
}


.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  margin-top: 24px;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: var(--transition);
}

.value-item:hover {
  border-color: rgba(168, 85, 247, 0.4);
}

.value-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.value-item strong {
  display: block;
  margin-bottom: 4px;
}

.value-item p {
  color: var(--gray);
  font-size: 0.85rem;
  margin: 0;
}

/* ===== PROCESS ===== */
.process {
  padding: 120px 0;
  text-align: center;
}

.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 60px;
}

.process-step {
  flex: 1;
  padding: 32px 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  text-align: center;
}

.process-step:hover {
  border-color: rgba(168, 85, 247, 0.4);
  transform: translateY(-6px);
  box-shadow: var(--glow-purple);
}

.step-num {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  font-family: 'Space Grotesk', sans-serif;
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.process-step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Space Grotesk', sans-serif;
}

.process-step p {
  color: var(--gray);
  font-size: 0.82rem;
  line-height: 1.5;
}

.process-arrow {
  color: var(--purple);
  font-size: 1.5rem;
  padding-top: 60px;
  flex-shrink: 0;
  opacity: 0.5;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 120px 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(168, 85, 247, 0.06) 0%, transparent 60%);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.testi-card {
  padding: 32px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.testi-card:hover {
  border-color: rgba(168, 85, 247, 0.4);
  transform: translateY(-4px);
}

.testi-stars {
  color: #f59e0b;
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testi-text {
  color: var(--gray);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 24px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: white;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.9rem;
}

.testi-author span {
  color: var(--gray);
  font-size: 0.8rem;
}

/* ===== CONTACT ===== */
.contact {
  padding: 120px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  margin-top: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ci-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.ci-card:hover {
  border-color: rgba(168, 85, 247, 0.4);
  transform: translateX(4px);
}

.ci-icon {
  font-size: 1.5rem;
}

.ci-card strong {
  display: block;
  font-size: 0.85rem;
  color: var(--gray);
  font-weight: 500;
  margin-bottom: 2px;
}

.ci-card a,
.ci-card span {
  color: white;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
}

.ci-card a:hover {
  color: var(--purple);
}

.social-links {
  display: flex;
  gap: 12px;
  padding-top: 8px;
  flex-wrap: wrap;
}

.social-btn {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  text-decoration: none;
  transition: var(--transition);
}

.social-btn svg {
  width: 18px;
  height: 18px;
}

.social-btn:hover {
  background: var(--grad);
  border-color: transparent;
  color: white;
  transform: translateY(-3px);
}

.contact-form {
  padding: 40px;
  border-radius: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: white;
  font-family: var(--font);
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select option {
  background: #1e1e2e;
  color: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray2);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 16px;
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 10px;
  color: #10b981;
  font-weight: 500;
  margin-top: 12px;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  padding: 80px 0 32px;
  border-top: 1px solid var(--border);
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(168, 85, 247, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .nav-logo {
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-weight: 400;
}


.footer-col h5 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: white;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col a:hover {
  color: white;
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  color: var(--gray2);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll-in animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(10px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), filter 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}

.reveal-delay-2 {
  transition-delay: 0.2s;
}

.reveal-delay-3 {
  transition-delay: 0.3s;
}

.reveal-delay-4 {
  transition-delay: 0.4s;
}

.reveal-delay-5 {
  transition-delay: 0.5s;
}

/* ===== GAMES GRID ===== */
.games-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 16px;
}

.game-card {
  padding: 28px;
  border-radius: var(--radius);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.game-card:hover {
  transform: translateY(-8px);
  border-color: rgba(168, 85, 247, .4);
  box-shadow: var(--glow-purple);
}

.game-card-header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.game-icon {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}

.game-icon-placeholder {
  width: 62px;
  height: 62px;
  flex-shrink: 0;
}

.pipe-icon svg {
  width: 62px;
  height: 62px;
  border-radius: 14px;
}

.game-card-meta {
  margin-left: auto;
  text-align: right;
}

.game-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(16, 185, 129, .1);
  border: 1px solid rgba(16, 185, 129, .3);
  color: #10b981;
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 4px;
}

.game-update {
  font-size: .7rem;
  color: var(--gray2);
}

.game-name {
  font-size: 1.15rem;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
}

.game-cat {
  color: var(--purple);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .05em;
}

.game-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  font-weight: 400;
}


.game-stats-row {
  display: flex;
  gap: 20px;
}

.game-stat {
  text-align: center;
}

.gs-val {
  display: block;
  font-size: 1.3rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Space Grotesk', sans-serif;
}

.gs-lbl {
  font-size: .7rem;
  color: var(--gray2);
  letter-spacing: .08em;
}

.game-features {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.feat {
  font-size: .75rem;
  color: var(--gray);
  background: rgba(255, 255, 255, .04);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 50px;
}

.game-btn {
  margin-top: auto;
  font-size: .85rem;
  padding: 10px 22px;
}

.coming-soon-card {
  align-items: center;
  text-align: center;
  background: rgba(168, 85, 247, .04);
  border-style: dashed;
}

.coming-icon {
  font-size: 3rem;
}

.coming-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
}


/* ===== UPDATES / NEWS ===== */
.updates {
  padding: 100px 0;
}

.updates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.update-card {
  display: flex;
  gap: 20px;
  padding: 24px;
  border-radius: var(--radius);
  transition: var(--transition);
}

.update-card:hover {
  border-color: var(--purple);
  transform: translateY(-5px);
}

.update-date {
  text-align: center;
  font-weight: 800;
  font-size: 0.7rem;
  color: var(--gray2);
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
  padding-right: 20px;
}

.update-date span {
  display: block;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 4px;
}

.update-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  background: var(--purple);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.update-body h4 {
  margin-bottom: 8px;
  font-family: 'Space Grotesk', sans-serif;
  color: white;
}

.update-body p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
}




@media (max-width: 768px) {
  .updates-grid {
    grid-template-columns: 1fr;
  }
}


/* ===== CATEGORIES ===== */
.categories {
  padding: 80px 0;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.cat-card {
  padding: 32px;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}

.cat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(168, 85, 247, .4);
}

.cat-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 18px;
}

.cat-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Space Grotesk', sans-serif;
}

.cat-card p {
  color: var(--gray);
  font-size: .88rem;
  line-height: 1.6;
}

/* ===== LIVE STATS ===== */
.live-stats {
  padding: 120px 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(168, 85, 247, .05) 0%, transparent 70%);
}

.live-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.live-card {
  padding: 28px;
  border-radius: var(--radius);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.live-card:hover {
  border-color: rgba(168, 85, 247, .4);
  transform: translateY(-4px);
}

.live-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.live-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.live-icon-svg {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.live-icon-svg svg {
  width: 52px;
  height: 52px;
  border-radius: 12px;
}

.live-card-header h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
  font-family: 'Space Grotesk', sans-serif;
}

.live-cat {
  font-size: .72rem;
  color: var(--purple);
  font-weight: 600;
  letter-spacing: .05em;
}

.live-badge {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(16, 185, 129, .1);
  border: 1px solid rgba(16, 185, 129, .3);
  color: #10b981;
  font-size: .7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
}

.live-badge.testing {
  background: rgba(249, 115, 22, .1);
  border-color: rgba(249, 115, 22, .3);
  color: #f97316;
}

.live-badge.testing .live-dot {
  background: #f97316;
  animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(249, 115, 22, 0.4)
  }

  50% {
    box-shadow: 0 0 0 6px rgba(249, 115, 22, 0)
  }
}

.live-stats-row {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.ls {
  text-align: center;
}

.ls-v {
  font-size: 1.3rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
}

.ls-l {
  font-size: .7rem;
  color: var(--gray2);
}

.live-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.live-update {
  font-size: .72rem;
  color: var(--gray2);
  margin-top: auto;
}

.dev-card {
  background: rgba(168, 85, 247, .04);
  border-color: rgba(168, 85, 247, .15);
}

.dev-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.dev-logo {
  font-size: 1.5rem;
  font-weight: 800;
  font-family: 'Space Grotesk', sans-serif;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== PHONE MOCKUP (Water Sort preview) ===== */
.game-mockup {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 24px;
}

.phone-frame {
  background: #111;
  border: 3px solid #333;
  border-radius: 36px;
  padding: 16px 12px;
  width: 200px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .6), 0 0 40px rgba(168, 85, 247, .2);
}

.phone-screen {
  background: linear-gradient(135deg, #0f0f1a, #1a0a2e);
  border-radius: 24px;
  padding: 16px;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.ws-title {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .15em;
  color: rgba(255, 255, 255, .7);
  text-transform: uppercase;
}

.ws-tubes {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  height: 180px;
  margin: 8px 0;
}

.tube {
  width: 28px;
  background: rgba(255, 255, 255, .08);
  border-radius: 0 0 14px 14px;
  border: 1px solid rgba(255, 255, 255, .12);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  transition: var(--transition);
}

.tube.empty {
  background: rgba(255, 255, 255, .04);
}

.liquid {
  width: 100%;
  border-radius: 0 0 12px 12px;
  transition: height .4s ease;
}

.ws-level {
  font-size: .65rem;
  color: rgba(255, 255, 255, .4);
  letter-spacing: .12em;
}

/* Store Buttons */
.store-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.store-btn:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(168, 85, 247, .5);
  transform: translateY(-2px);
}

.store-btn div span {
  display: block;
  font-size: .65rem;
  color: var(--gray);
  letter-spacing: .08em;
}

.store-btn div strong {
  display: block;
  font-size: .95rem;
  font-weight: 700;
}

.google-play svg {
  fill: #34a853;
}

/* About phones */
.about-phones {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 20px;
}

.about-phone {
  padding: 12px;
  border-radius: 16px;
  width: 140px;
}

/* Footer play link */
.footer-play-link {
  text-decoration: none;
  font-weight: 600;
  font-size: .85rem;
}

.footer-logo-link {
  margin-bottom: 16px;
  display: inline-flex;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-card {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .games-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .live-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cat-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
  }

  .nav-links.open {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 5, 10, 0.97);
    justify-content: center;
    align-items: center;
    z-index: 999;
    gap: 32px;
  }

  .nav-links.open .nav-link {
    font-size: 1.5rem;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
    z-index: 1001;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-badge-floating {
    display: none;
  }

  .process-steps {
    flex-direction: column;
  }

  .process-arrow {
    transform: rotate(90deg);
    align-self: center;
    padding: 0;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .featured-metrics {
    gap: 16px;
  }

  .games-grid {
    grid-template-columns: 1fr;
  }

  .live-grid {
    grid-template-columns: 1fr;
  }

  .cat-grid {
    grid-template-columns: 1fr;
  }

  .about-phones {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    flex-direction: column;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ===== ELEGANT HOVER EFFECTS ===== */
.btn-primary,
.btn-ghost,
.nav-link,
.nav-logo {
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.6s ease;
  will-change: transform;
}

/* 1. Shimmer Overlay on Primary Buttons */
.btn-primary {
  overflow: hidden;
  position: relative;
}
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0; left: -100%; right: auto; bottom: auto;
  width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.25), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.btn-primary:hover::after {
  left: 150%;
}

.btn-primary:hover,
.btn-ghost:hover {
  box-shadow: 0 10px 30px rgba(168, 85, 247, 0.15);
}

/* 2. Elegant Underline Reveal */
.nav-link {
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px; right: 0; 
  width: 0; height: 1px;
  background: var(--pink);
  transition: width 0.3s ease, right 0.3s ease;
}
.nav-link:hover::after {
  width: 100%;
  left: 0;
  right: auto;
}

/* ===== SUDOKU SCREEN MOCKUP ===== */
.sd-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.4);
  width: 100%;
  aspect-ratio: 1;
  margin: 10px 0;
}
.sd-cell {
  background: #171120;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.4);
}
.sd-cell.marked {
  color: #fff;
  font-weight: 700;
  background: rgba(168, 85, 247, 0.25);
}
.sd-cell:nth-child(3n):not(:nth-child(9n)) {
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}
.sd-cell:nth-child(n+19):nth-child(-n+27),
.sd-cell:nth-child(n+46):nth-child(-n+54) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}
.sd-numpad {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
  width: 100%;
  margin-bottom: 4px;
}
.sd-num {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
}
.sd-del {
  background: rgba(236, 72, 153, 0.15);
  color: #ec4899;
}