:root {
  --cyan: #00f0ff;
  --purple: #7a00ff;
  --purple-light: #a855f7;
  --pink: #ff00aa;
  --bg-darkest: #020408;
  --bg-dark: #050b12;
  --bg-card: rgba(10, 20, 35, 0.6);
  --bg-card-hover: rgba(15, 30, 55, 0.8);
  --border: rgba(0, 240, 255, 0.12);
  --border-hover: rgba(0, 240, 255, 0.45);
  --text-primary: #f0f6ff;
  --text-secondary: #8899b5;
  --text-muted: #445566;
  --font-main: 'Inter', 'Poppins', sans-serif;
  --font-display: 'Poppins', 'Inter', sans-serif;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-neon-cyan: 0 0 20px rgba(0, 240, 255, 0.4), 0 0 60px rgba(0, 240, 255, 0.15);
  --shadow-neon-purple: 0 0 20px rgba(122, 0, 255, 0.4), 0 0 60px rgba(122, 0, 255, 0.15);
  --shadow-card: 0 8px 25px rgba(0, 0, 0, 0.5);
}

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

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-darkest);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-darkest); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--cyan), var(--purple));
  border-radius: 99px;
}

#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-darkest);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.loader-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-icon {
  font-size: 3rem;
  filter: drop-shadow(0 0 20px rgba(0, 240, 255, 0.8));
}

.loader-brand {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text-primary);
}

.loader-bar-wrap {
  width: 220px;
  height: 4px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
}

.loader-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  border-radius: 99px;
  box-shadow: 0 0 12px var(--cyan);
  transition: width 0.1s linear;
}

.loader-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

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

.scroll-indicator {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan), var(--purple), var(--pink));
  z-index: 9998;
  box-shadow: 0 0 10px var(--cyan);
  transition: width 0.1s linear;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 0 1.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
  background: rgba(2, 4, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 240, 255, 0.1), 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.nav-logo-icon { font-size: 1.3rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 99px;
}

.nav-link:hover { color: var(--cyan); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-link.active {
  color: var(--cyan);
}
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 99px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.accent { color: var(--cyan); }

.glow-text {
  color: var(--cyan);
  text-shadow:
    0 0 20px rgba(0, 240, 255, 0.8),
    0 0 50px rgba(0, 240, 255, 0.4),
    0 0 100px rgba(0, 240, 255, 0.2);
}

.glow-text-purple {
  color: var(--purple-light);
  text-shadow:
    0 0 20px rgba(168, 85, 247, 0.8),
    0 0 50px rgba(168, 85, 247, 0.4),
    0 0 100px rgba(122, 0, 255, 0.2);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  animation: none !important;
  backface-visibility: hidden;
}

.btn::after {
  display: none;
}

.btn:active::after {
  opacity: 1;
  transform: scale(2.5);
  transition: 0s;
}

.btn-primary {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3), 0 4px 20px rgba(0,0,0,0.4);
}

.btn-primary:hover {
  box-shadow: 
    0 0 20px rgba(0,240,255,0.4),
    0 6px 20px rgba(0,0,0,0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--text-primary);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
  transform: translateY(-3px);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: #fff;
  font-size: 1.1rem;
  padding: 18px 40px;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.4), 0 8px 30px rgba(0,0,0,0.4);
}

.btn-whatsapp:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 
    0 0 25px rgba(37,211,102,0.4),
    0 8px 25px rgba(0,0,0,0.4);
}

.btn-whatsapp .fa-whatsapp { font-size: 1.3rem; }

.btn-arrow {
  margin-left: auto;
  transition: transform var(--transition);
}

.btn-whatsapp:hover .btn-arrow { transform: translateX(5px); }

.btn-sm {
  padding: 10px 20px;
  font-size: 0.85rem;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 100px 0;
  position: relative;
  z-index: 1;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 240, 255, 0.08);
  border: 1px solid rgba(0, 240, 255, 0.2);
  color: var(--cyan);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 1.5rem 80px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hero-parallax-bg {
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(0, 240, 255, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(122, 0, 255, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 60%, rgba(0, 240, 255, 0.04) 0%, transparent 60%);
  pointer-events: none;
  will-change: transform;
}

.hero-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: orbFloat 8s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.06) 0%, transparent 70%);
  top: -100px;
  left: -150px;
  animation-delay: 0s;
}

.orb-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(122, 0, 255, 0.07) 0%, transparent 70%);
  bottom: -150px;
  right: -200px;
  animation-delay: 3s;
}

.orb-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.05) 0%, transparent 70%);
  top: 40%;
  right: 15%;
  animation-delay: 6s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 240, 255, 0.06);
  border: 1px solid rgba(0, 240, 255, 0.25);
  color: var(--cyan);
  padding: 8px 18px;
  border-radius: 99px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

.hero-badge .fa-bolt {
  animation: boltFlash 2s ease-in-out infinite;
}

@keyframes boltFlash {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-title-amp {
  color: var(--text-muted);
  font-weight: 300;
  font-size: 0.7em;
}

.hero-subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.subtitle-badge {
  background: rgba(122, 0, 255, 0.12);
  border: 1px solid rgba(122, 0, 255, 0.3);
  color: var(--purple-light);
  padding: 6px 16px;
  border-radius: 99px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
}

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

.hero-desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.8;
}

.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 32px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--cyan);
  text-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.scroll-down-hint {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 3;
}

.scroll-arrow {
  animation: scrollBounce 2s ease-in-out infinite;
  color: var(--cyan);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(6px); opacity: 0.5; }
}

.links-section {
  background: transparent;
}

.links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.link-card {
  display: block;
  position: relative;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.link-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: var(--border-hover);
  background: var(--bg-card-hover);
  box-shadow: var(--shadow-card), 0 0 25px rgba(0,240,255,0.1);
}

.link-card:hover .card-glow { opacity: 1; }
.link-card:hover .card-arrow { transform: translateX(5px); color: var(--cyan); }

.card-glow {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.card-telegram .card-glow {
  background: linear-gradient(135deg, rgba(0, 136, 204, 0.15), transparent 60%);
  box-shadow: inset 0 0 40px rgba(0, 136, 204, 0.1);
}

.card-facebook .card-glow {
  background: linear-gradient(135deg, rgba(24, 119, 242, 0.15), transparent 60%);
  box-shadow: inset 0 0 40px rgba(24, 119, 242, 0.1);
}

.card-bot .card-glow {
  background: linear-gradient(135deg, rgba(122, 0, 255, 0.15), transparent 60%);
  box-shadow: inset 0 0 40px rgba(122, 0, 255, 0.1);
}

.card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.03) 50%, transparent 60%);
  transition: left 0.6s ease;
  pointer-events: none;
}

.link-card:hover .card-shine { left: 150%; }

.card-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px;
}

.card-icon-wrap {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  transition: var(--transition);
}

.link-card:hover .card-icon-wrap { transform: scale(1.1) rotate(-5deg); }

.telegram-icon {
  background: rgba(0, 136, 204, 0.15);
  border: 1px solid rgba(0, 136, 204, 0.3);
  color: #29b6f6;
  box-shadow: 0 0 20px rgba(0, 136, 204, 0.2);
}

.facebook-icon {
  background: rgba(24, 119, 242, 0.15);
  border: 1px solid rgba(24, 119, 242, 0.3);
  color: #1877f2;
  box-shadow: 0 0 20px rgba(24, 119, 242, 0.2);
}

.bot-icon {
  background: rgba(122, 0, 255, 0.15);
  border: 1px solid rgba(122, 0, 255, 0.3);
  color: var(--purple-light);
  box-shadow: 0 0 20px rgba(122, 0, 255, 0.25);
}

.card-body { flex: 1; min-width: 0; }

.card-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 3px 10px;
  border-radius: 99px;
  margin-bottom: 8px;
}

.card-tag-hot {
  background: rgba(255, 100, 0, 0.12);
  border-color: rgba(255, 100, 0, 0.3);
  color: #ff9500;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.card-desc {
  font-size: 0.83rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.card-url {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: 'Courier New', monospace;
  display: flex;
  align-items: center;
  gap: 5px;
}

.card-arrow {
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--text-muted);
  transition: var(--transition);
}

.features-section {
  background: linear-gradient(180deg, transparent 0%, rgba(122, 0, 255, 0.03) 50%, transparent 100%);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--purple), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0,240,255,0.25);
  box-shadow: 
    0 10px 20px rgba(0,0,0,0.4),
    0 0 15px rgba(0,240,255,0.08);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon-wrap {
  position: relative;
  width: 60px;
  height: 60px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-wrap i {
  font-size: 1.5rem;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}

.feature-card:hover .feature-icon-wrap i { transform: scale(1.2); }

.feature-icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(0, 240, 255, 0.2);
  background: rgba(0, 240, 255, 0.06);
  transition: var(--transition);
}

.feature-card:hover .feature-icon-ring {
  border-color: rgba(0, 240, 255, 0.5);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.2);
  transform: scale(1.1);
}

.feature-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.referral-section {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 240, 255, 0.02) 50%, transparent 100%);
}

.referral-wrapper {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.referral-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse 50% 30% at 50% 50%, rgba(122, 0, 255, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.referral-header { margin-bottom: 48px; }

.referral-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.referral-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(135deg, rgba(15, 25, 45, 0.9), rgba(5, 15, 30, 0.9));
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 240, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.referral-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 240, 255, 0.15), transparent);
  transition: left 0.7s ease;
  z-index: 0;
}

.referral-card:hover::before {
  left: 100%;
}

.referral-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--cyan);
  box-shadow: 
    0 0 15px rgba(0,240,255,0.2),
    0 10px 25px rgba(0,0,0,0.4);
}

.referral-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(122, 0, 255, 0.2));
  border: none;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  z-index: 1;
}

.referral-card:hover .referral-icon {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.6);
}

.referral-icon-deposit {
  background: linear-gradient(135deg, rgba(122, 0, 255, 0.2), rgba(0, 240, 255, 0.2));
  color: var(--purple-light);
}

.referral-icon-deposit i {
  text-shadow: 0 0 8px var(--purple-light);
}

.referral-icon i {
  text-shadow: 0 0 8px var(--cyan);
}

.referral-info {
  flex: 1;
  text-align: left;
  z-index: 1;
}

.referral-info h3 {
  font-size: 1.25rem;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 8px;
}

.referral-info p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.referral-reward {
  flex-shrink: 0;
  min-width: 100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(0, 240, 255, 0.12);
  padding: 8px 20px;
  border-radius: 60px;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(0, 240, 255, 0.3);
  transition: all 0.3s ease;
  z-index: 1;
}

.referral-card:hover .referral-reward {
  background: rgba(0, 240, 255, 0.2);
  border-color: var(--cyan);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
  transform: scale(1.05);
}

.reward-plus {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
}

.reward-points {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--cyan), #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  line-height: 1.2;
  white-space: nowrap;
}

.reward-label {
  font-size: 0.7rem;
  color: var(--cyan);
  letter-spacing: 1px;
  font-weight: 600;
}

.referral-cta-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(122, 0, 255, 0.08);
  border: 1px solid rgba(122, 0, 255, 0.2);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  text-align: left;
  flex-wrap: wrap;
}

.referral-cta-inner > i {
  font-size: 2rem;
  color: var(--purple-light);
  flex-shrink: 0;
}

.referral-cta-inner > div {
  flex: 1;
  min-width: 200px;
}

.referral-cta-inner strong {
  display: block;
  font-size: 1rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.referral-cta-inner span {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.ticker-section {
  padding: 20px 0;
  background: rgba(0, 240, 255, 0.03);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.ticker-track {
  display: flex;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.ticker-content {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: ticker 25s linear infinite;
  will-change: transform;
}

.ticker-content span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.5px;
}

.ticker-content span i {
  color: var(--cyan);
  font-size: 0.7rem;
}

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

.contact-section {
  background: linear-gradient(180deg, transparent 0%, rgba(37, 211, 102, 0.02) 50%, transparent 100%);
}

.contact-wrapper {
  text-align: center;
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 80px 48px;
  position: relative;
  overflow: hidden;
}

.contact-glow-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(37, 211, 102, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.contact-content { position: relative; z-index: 1; }

.wa-icon-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
}

.wa-icon-wrap .fa-whatsapp {
  font-size: 3.5rem;
  color: #25d366;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 20px rgba(37, 211, 102, 0.6));
}

.wa-pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.3);
  animation: waPulse 2.5s ease-out infinite;
}

.wa-pulse-ring-2 { animation-delay: 1.25s; }

@keyframes waPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 16px 0;
}

.contact-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.contact-info-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.contact-info-item i { color: var(--cyan); }

.contact-number {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.contact-number i { color: var(--cyan); }

.footer {
  background: rgba(2, 4, 8, 0.9);
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
  position: relative;
  z-index: 1;
}

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

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  display: block;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  max-width: 280px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: rgba(0, 240, 255, 0.1);
  border-color: rgba(0, 240, 255, 0.3);
  color: var(--cyan);
  transform: translateY(-3px);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.2);
}

.footer-links-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

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

.footer-links-col a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.footer-links-col a:hover { color: var(--cyan); transform: translateX(4px); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-credits {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-credits i { color: var(--cyan); }
.heart { font-size: 0.9rem; }

.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.4);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 998;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 0 30px rgba(0, 240, 255, 0.6);
}

.hide-mobile { display: initial; }

@media (max-width: 1024px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(2, 4, 8, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-link { font-size: 1.1rem; }

  .nav-toggle { display: flex; }

  .hero { padding: 100px 1.5rem 60px; }
  .hero-title { letter-spacing: -1px; }
  .hero-stats { gap: 0; }
  .stat-item { padding: 0 16px; }
  .stat-num { font-size: 1.2rem; }
  .hide-mobile { display: none; }

  .links-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }

  .section { padding: 70px 0; }
  .section-header { margin-bottom: 40px; }

  .referral-wrapper { padding: 40px 24px; }
  .referral-cards { grid-template-columns: 1fr; }
  .referral-cta-inner { flex-direction: column; text-align: center; }

  .contact-wrapper { padding: 48px 24px; }
  .contact-info-row { gap: 16px; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .back-to-top { bottom: 20px; right: 20px; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; width: 100%; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .btn-whatsapp { width: 100%; justify-content: center; }
  .card-inner { flex-wrap: wrap; }
  .stat-item { padding: 0 12px; }
  .referral-card {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 16px;
    padding: 24px;
  }
  .referral-info {
    text-align: center;
    flex: auto;
    width: 100%;
  }
  .referral-reward {
    min-width: auto;
    margin-top: 8px;
  }
  .reward-points {
    font-size: 1.6rem;
    white-space: nowrap;
  }
}

[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: scale(0);
  animation: rippleAnim 0.6s linear;
  pointer-events: none;
  z-index: 10;
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

@keyframes neonFlicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow:
      0 0 10px rgba(0, 240, 255, 0.9),
      0 0 30px rgba(0, 240, 255, 0.7),
      0 0 60px rgba(0, 240, 255, 0.5),
      0 0 100px rgba(0, 240, 255, 0.3);
  }
  20%, 24%, 55% {
    text-shadow: none;
  }
}

::selection {
  background: rgba(0, 240, 255, 0.25);
  color: var(--text-primary);
}

.sell-section {
  position: relative;
}

.sell-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
}

.sell-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  transition: var(--transition);
  padding: 28px 22px;
  text-align: center;
  line-height: 1.6;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.sell-card h3 {
  margin-bottom: 12px;
  position: relative;
  display: block;
}

.sell-card p {
  margin: 12px 0;
}

.sell-card ul {
  text-align: left;
  display: inline-block;
  margin-top: 15px;
}

.sell-card ul li {
  margin: 6px 0;
}

.sell-card .btn {
  display: inline-block;
  margin-top: 22px;
  transition: 0.3s;
}

.sell-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--border-hover);
  box-shadow: 
    0 10px 25px rgba(0,0,0,0.5),
    0 0 20px rgba(0,240,255,0.12);
}

.sell-card.highlight {
  border: 1px solid rgba(0, 240, 255, 0.35);
  box-shadow: 0 0 25px rgba(0, 240, 255, 0.2);
}

@keyframes glowPulse {
  from {
    box-shadow: 0 0 20px rgba(0,240,255,0.2);
  }
  to {
    box-shadow: 0 0 60px rgba(0,240,255,0.45);
  }
}

.sell-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -100%;
  width: 60%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.08),
    transparent
  );
  transform: rotate(25deg);
}

.sell-card:hover::after {
  left: 150%;
  transition: 0.8s;
}

.sell-card.highlight::before {
  content: "HOT";
  position: absolute;
  top: 15px;
  right: 15px;
  
  background: linear-gradient(45deg, var(--cyan), var(--purple));
  color: #fff;
  font-size: 0.65rem;
  padding: 5px 12px;
  border-radius: 999px;
  
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.4);
  white-space: nowrap;
  
  z-index: 2;
  
  animation: hotPulse 1.5s infinite;
}

@keyframes hotPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.sell-card .btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 25px rgba(122, 0, 255, 0.5);
}

.sell-note {
  text-align: center;
  margin-top: 30px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.sell-animate {
  animation: floatCard 6s ease-in-out infinite;
}

.sell-card:nth-child(odd) {
  animation-delay: 1s;
}

@keyframes floatCard {
  0%,100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.section-desc {
  opacity: 0.8;
}

.card-desc {
  opacity: 0.75;
}

.link-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x,50%) var(--y,50%), rgba(0,240,255,0.12), transparent 60%);
  opacity: 0;
  transition: opacity 0.3s;
}

.link-card:hover::after {
  opacity: 1;
}

.glass {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 768px) {
  .btn-primary,
  .btn-whatsapp,
  .link-card,
  .feature-card,
  .referral-card,
  .sell-card {
    box-shadow: 0 0 20px rgba(0,240,255,0.15) !important;
  }
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(122,0,255,0.08), transparent 70%);
  pointer-events: none;
}