:root {
  --bg-deep: #05050a;
  --bg-card: rgba(18, 16, 35, 0.72);
  --accent: #00e5c8;
  --accent-2: #a855f7;
  --accent-3: #fb7185;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --border: rgba(0, 229, 200, 0.25);
  --glow: 0 0 40px rgba(0, 229, 200, 0.15);
  --radius: 16px;
  --font: "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
}

.bg-orbit {
  position: fixed;
  inset: -20%;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(168, 85, 247, 0.18), transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(0, 229, 200, 0.12), transparent 45%),
    radial-gradient(ellipse 50% 60% at 50% 100%, rgba(251, 113, 133, 0.1), transparent 40%);
  animation: orbit-shift 18s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes orbit-shift {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-3%, 2%) scale(1.05); }
}

.wrap {
  position: relative;
  z-index: 1;
}

.redirect-bar {
  position: relative;
  z-index: 110;
  width: 100%;
  padding: 0.55rem 0.75rem;
  background: linear-gradient(105deg, rgba(0, 229, 200, 0.18), rgba(124, 58, 237, 0.22), rgba(0, 229, 200, 0.18));
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.redirect-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
}

.redirect-bar-text strong {
  color: var(--accent);
  font-weight: 800;
}

.redirect-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.35rem;
  border-radius: 8px;
  background: rgba(5, 5, 10, 0.65);
  border: 1px solid var(--border);
  color: var(--accent);
  font-size: 1.2rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  line-height: 1;
  box-shadow: 0 0 20px rgba(0, 229, 200, 0.25);
  animation: redirect-pulse 0.5s ease-in-out infinite alternate;
}

@keyframes redirect-pulse {
  from { transform: scale(1); box-shadow: 0 0 16px rgba(0, 229, 200, 0.2); }
  to { transform: scale(1.06); box-shadow: 0 0 28px rgba(0, 229, 200, 0.4); }
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1180px, 92vw);
  margin-inline: auto;
  padding-inline: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  background: rgba(5, 5, 10, 0.75);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
  flex-wrap: wrap;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
}

.brand:hover {
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--glow);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-text strong {
  font-size: 1.15rem;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  align-items: center;
}

.nav a {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s, text-shadow 0.2s;
}

.nav a:hover {
  color: var(--accent);
  text-decoration: none;
  text-shadow: 0 0 20px rgba(0, 229, 200, 0.4);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.65rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #00b4a0);
  color: #041016;
  box-shadow: 0 4px 24px rgba(0, 229, 200, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 229, 200, 0.45);
  text-decoration: none;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/banner.jpg");
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  animation: hero-zoom 22s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    165deg,
    rgba(5, 5, 10, 0.92) 0%,
    rgba(10, 8, 28, 0.82) 45%,
    rgba(5, 5, 10, 0.95) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.hero h1 .gradient {
  display: block;
  background: linear-gradient(105deg, var(--accent), var(--accent-2), var(--accent-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(0, 229, 200, 0.25));
}

.hero-lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 36ch;
  margin-bottom: 1.75rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
}

.stat {
  padding: 0.75rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.stat strong {
  display: block;
  font-size: 1.5rem;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}

.stat span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.hero-visual {
  position: relative;
  perspective: 1000px;
}

.hero-card-stack {
  position: relative;
  width: min(100%, 380px);
  margin-inline: auto;
  aspect-ratio: 4/5;
}

.hero-float {
  position: absolute;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), var(--glow);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-float img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-float:nth-child(1) {
  width: 72%;
  left: 0;
  top: 8%;
  transform: rotateY(-8deg) rotateZ(-4deg);
  z-index: 3;
  animation: float-a 6s ease-in-out infinite;
}

.hero-float:nth-child(2) {
  width: 68%;
  right: 0;
  top: 22%;
  transform: rotateY(6deg) rotateZ(3deg);
  z-index: 2;
  animation: float-b 7s ease-in-out infinite 0.5s;
}

.hero-float:nth-child(3) {
  width: 55%;
  left: 18%;
  bottom: 5%;
  transform: rotateZ(-2deg);
  z-index: 1;
  animation: float-c 8s ease-in-out infinite 1s;
}

@keyframes float-a {
  0%, 100% { transform: rotateY(-8deg) rotateZ(-4deg) translateY(0); }
  50% { transform: rotateY(-6deg) rotateZ(-2deg) translateY(-12px); }
}

@keyframes float-b {
  0%, 100% { transform: rotateY(6deg) rotateZ(3deg) translateY(0); }
  50% { transform: rotateY(8deg) rotateZ(5deg) translateY(-10px); }
}

@keyframes float-c {
  0%, 100% { transform: rotateZ(-2deg) translateY(0); }
  50% { transform: rotateZ(0deg) translateY(-14px); }
}

/* Sections */
section {
  padding: 4.5rem 0;
  position: relative;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  margin: 0 0 0.5rem;
  letter-spacing: -0.02em;
}

.section-sub {
  color: var(--text-muted);
  max-width: 56ch;
  margin: 0 0 2.5rem;
  font-size: 1.05rem;
}

/* About */
.about-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.about-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 229, 200, 0.45);
  box-shadow: var(--glow);
}

.about-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  color: var(--accent);
}

.about-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Slots */
.slots {
  background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.06), transparent);
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.slot-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
}

.slot-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5, 5, 10, 0.95));
  z-index: 1;
  pointer-events: none;
}

.slot-card:hover {
  transform: scale(1.03) translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(0, 229, 200, 0.3);
}

.slot-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  transition: transform 0.5s;
}

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

.slot-body {
  position: relative;
  z-index: 2;
  padding: 1.1rem 1.25rem 1.35rem;
  margin-top: -3.5rem;
}

.slot-body h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.slot-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.55rem;
  border-radius: 6px;
  background: rgba(168, 85, 247, 0.25);
  color: #e9d5ff;
}

.tag.accent {
  background: rgba(0, 229, 200, 0.2);
  color: var(--accent);
}

.slot-card .btn {
  width: 100%;
  font-size: 0.85rem;
  padding: 0.55rem;
}

/* Features strip with images */
.features-strip {
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .features-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.feature-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 180px;
  border: 1px solid var(--border);
}

.feature-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.feature-tile:hover img {
  transform: scale(1.1);
}

.feature-tile .cap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  background: linear-gradient(0deg, rgba(5, 5, 10, 0.95), transparent 60%);
  font-weight: 700;
  font-size: 0.95rem;
}

/* FAQ */
.faq-list {
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  overflow: hidden;
  transition: border-color 0.25s;
}

.faq-item[open] {
  border-color: rgba(168, 85, 247, 0.45);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.15rem 1.35rem;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.35rem;
  color: var(--accent);
  transition: transform 0.3s;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-body {
  padding: 0 1.35rem 1.35rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  animation: fade-in 0.35s ease;
}

@keyframes fade-in {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.faq-body p {
  margin: 0 0 1rem;
}

.faq-body p:last-child {
  margin-bottom: 0;
}

/* CTA band */
.cta-band {
  text-align: center;
  padding: 4rem 1.5rem;
  margin: 2rem 0;
  border-radius: calc(var(--radius) * 1.5);
  border: 1px solid var(--border);
  background:
    linear-gradient(135deg, rgba(0, 229, 200, 0.12), rgba(168, 85, 247, 0.12)),
    url("../images/1.jpg") center/cover;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 10, 0.88);
}

.cta-band .inner {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.cta-band p {
  color: var(--text-muted);
  max-width: 42ch;
  margin: 0 auto 1.5rem;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 3rem;
  background: rgba(0, 0, 0, 0.35);
}

.footer-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
}

.disclaimer {
  font-size: 0.8rem;
  color: var(--text-muted);
  max-width: 52ch;
  line-height: 1.65;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent);
}

.domain-badge {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  background: rgba(0, 229, 200, 0.12);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
}

/* Marquee gallery */
.marquee-wrap {
  overflow: hidden;
  margin: 2rem 0 0;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee 42s linear infinite;
}

.marquee:hover {
  animation-play-state: paused;
}

.marquee img {
  width: 140px;
  height: 90px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  flex-shrink: 0;
  opacity: 0.9;
  transition: transform 0.3s, opacity 0.3s;
}

.marquee img:hover {
  transform: scale(1.08);
  opacity: 1;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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