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

:root {
  --purple: #7f00ff;
  --purple-light: #a855f7;
  --cyan: #cc00ff;
  --dark-bg: #0a0a1a;
  --dark-card: #12122a;
  --dark-card-border: rgba(127, 0, 255, 0.15);
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.4);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--dark-bg);
  color: var(--text-primary);
  overflow-x: hidden;
  line-height: 1.6;
}

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

.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.bg-glow-1 {
  width: 600px;
  height: 600px;
  background: var(--purple);
  top: -200px;
  right: -100px;
}

.bg-glow-2 {
  width: 500px;
  height: 500px;
  background: var(--cyan);
  bottom: 20%;
  left: -200px;
}

.bg-glow-3 {
  width: 400px;
  height: 400px;
  background: #ff00aa;
  bottom: -100px;
  right: 30%;
  opacity: 0.08;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(10, 10, 26, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(127, 0, 255, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  border-radius: 8px;
  object-fit: contain;
}

.logo-text {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-highlight {
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 24px;
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: white;
  text-decoration: none;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.3s, box-shadow 0.3s;
}

.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(127, 0, 255, 0.4);
}

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

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 24px;
  gap: 12px;
}

.mobile-nav.active {
  display: flex;
}

.mobile-nav-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  padding: 8px 0;
}

.mobile-nav-link.download-link {
  color: var(--purple-light);
  font-weight: 600;
}

.hero {
  position: relative;
  z-index: 1;
  padding: 160px 0 100px;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(127, 0, 255, 0.1);
  border: 1px solid rgba(127, 0, 255, 0.2);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--purple-light);
  margin-bottom: 32px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: #00ff88;
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero-title {
  font-size: clamp(42px, 7vw, 80px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.white-text {
  color: var(--text-primary);
}

.subtle-text {
  color: var(--text-secondary);
}

.coin-text {
  color: #ffcc00;
  font-weight: 700;
}

.hero-subtitle {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--text-secondary);
  max-width: 650px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 16px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--purple), var(--purple-light));
  color: white;
  box-shadow: 0 4px 20px rgba(127, 0, 255, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(127, 0, 255, 0.5);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

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

.stat {
  text-align: center;
}

.stat-number {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple-light), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

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

.section-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(127, 0, 255, 0.1);
  border: 1px solid rgba(127, 0, 255, 0.2);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: var(--purple-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto;
}

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

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

.service-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-card-border);
  border-radius: 20px;
  padding: 36px 28px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

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

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(127, 0, 255, 0.3);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.service-img-wrap {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 12px;
}

.service-img {
  max-width: 100%;
  max-height: 140px;
  object-fit: contain;
  transition: transform 0.4s ease;
}

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

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

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

.feature-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-card-border);
  border-radius: 20px;
  padding: 32px 24px;
  transition: all 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(127, 0, 255, 0.25);
}

.feature-large {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 40px 36px;
}

.feature-large h3 {
  margin-bottom: 8px;
}

.feature-icon-wrap {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.feature-large .feature-icon-wrap {
  width: 64px;
  height: 64px;
  min-width: 64px;
  margin-bottom: 0;
}

.feature-icon-wrap.purple {
  background: rgba(127, 0, 255, 0.15);
  color: var(--purple-light);
}

.feature-icon-wrap.blue {
  background: rgba(0, 100, 255, 0.15);
  color: #4d9fff;
}

.feature-icon-wrap.green {
  background: rgba(0, 255, 136, 0.1);
  color: #00ff88;
}

.feature-icon-wrap.orange {
  background: rgba(255, 165, 0, 0.12);
  color: #ffaa00;
}

.feature-icon-wrap.pink {
  background: rgba(255, 0, 170, 0.12);
  color: #ff66cc;
}

.feature-icon-wrap.cyan {
  background: rgba(204, 0, 255, 0.12);
  color: var(--cyan);
}

.feature-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

.earn-card {
  background: linear-gradient(135deg, rgba(127, 0, 255, 0.08), rgba(204, 0, 255, 0.05));
  border: 1px solid rgba(127, 0, 255, 0.2);
  border-radius: 32px;
  padding: 64px;
  display: flex;
  align-items: center;
  gap: 64px;
}

.earn-content {
  flex: 1;
}

.earn-ways {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.earn-way {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.earn-number {
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  min-width: 48px;
  line-height: 1;
}

.earn-info h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.earn-info p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.coin-visual {
  position: relative;
  width: 280px;
  height: 280px;
  min-width: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coin-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(127, 0, 255, 0.3), transparent 70%);
  border-radius: 50%;
  animation: coin-pulse 3s infinite ease-in-out;
}

@keyframes coin-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

.coin-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(127, 0, 255, 0.3), rgba(0, 0, 0, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(127, 0, 255, 0.4);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.coin-img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(163, 230, 53, 0.4));
}

.coin-label {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 800;
  color: rgba(163, 230, 53, 0.9);
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 3;
  white-space: nowrap;
}

.coin-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(127, 0, 255, 0.15);
}

.coin-orbit-1 {
  width: 200px;
  height: 200px;
  animation: orbit-spin 12s linear infinite;
}

.coin-orbit-2 {
  width: 260px;
  height: 260px;
  animation: orbit-spin 20s linear infinite reverse;
}

.coin-orbit-1::after, .coin-orbit-2::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--purple-light);
  border-radius: 50%;
  top: -4px;
  left: 50%;
  margin-left: -4px;
  box-shadow: 0 0 10px var(--purple);
}

.coin-orbit-2::after {
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan);
}

@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

.download-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.download-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: var(--dark-card);
  border: 1px solid var(--dark-card-border);
  border-radius: 20px;
  text-decoration: none;
  color: white;
  transition: all 0.4s ease;
}

.download-card:hover {
  transform: translateY(-6px);
  border-color: rgba(127, 0, 255, 0.4);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.download-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-icon.telegram {
  background: rgba(127, 0, 255, 0.15);
  color: #a855f7;
}

.download-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: linear-gradient(135deg, #a855f7, #7f00ff);
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.download-icon.android {
  background: rgba(61, 220, 132, 0.12);
  color: #3ddc84;
}

.download-icon.playstore {
  background: rgba(61, 220, 132, 0.12);
  color: #3ddc84;
}

.download-icon.appstore {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.download-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.download-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.download-platform {
  font-size: 17px;
  font-weight: 700;
}

.download-arrow {
  color: var(--text-muted);
  transition: color 0.3s, transform 0.3s;
}

.download-card:hover .download-arrow {
  color: var(--purple-light);
  transform: translateX(4px);
}

.download-note {
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 32px;
}

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

.referral-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.ref-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-card-border);
  border-radius: 24px;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s, box-shadow 0.4s;
}

.ref-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.ref-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
}

.ref-card-driver::before {
  background: linear-gradient(90deg, var(--purple), var(--cyan));
}

.ref-card-client::before {
  background: linear-gradient(90deg, #a855f7, var(--cyan));
}

.ref-card-badge {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--purple-light);
  margin-bottom: 20px;
}

.ref-card-client .ref-card-badge {
  color: #00ff88;
}

.ref-amount {
  display: flex;
  align-items: flex-start;
  gap: 2px;
  margin-bottom: 4px;
}

.ref-currency {
  font-size: 28px;
  font-weight: 700;
  color: #ffcc00;
  line-height: 1.2;
  margin-top: 8px;
}

.ref-number {
  font-size: 72px;
  font-weight: 900;
  background: linear-gradient(135deg, #ffcc00, #ff9500);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.ref-period {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 24px;
}

.ref-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
}

.ref-how h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.ref-step {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.ref-step-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(127, 0, 255, 0.15);
  color: var(--purple-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.ref-card-client .ref-step-icon {
  background: rgba(0, 255, 136, 0.1);
  color: #00ff88;
}

.ref-step p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
  padding-top: 4px;
}

.ref-step p strong {
  color: var(--text-primary);
}

.ref-example {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 14px 18px;
  background: rgba(127, 0, 255, 0.08);
  border: 1px solid rgba(127, 0, 255, 0.15);
  border-radius: 12px;
  font-size: 14px;
  color: var(--text-secondary);
}

.ref-card-client .ref-example {
  background: rgba(0, 255, 136, 0.05);
  border-color: rgba(0, 255, 136, 0.15);
}

.ref-example strong {
  color: #ffcc00;
}

.referral-bottom {
  margin-top: 32px;
}

.ref-highlight {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 32px;
  background: linear-gradient(135deg, rgba(255, 204, 0, 0.06), rgba(127, 0, 255, 0.06));
  border: 1px solid rgba(255, 204, 0, 0.15);
  border-radius: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.ref-highlight-icon {
  min-width: 48px;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 204, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ref-highlight-text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.ref-highlight-text strong {
  color: var(--text-primary);
}

.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 0 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 300px;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-secondary);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.footer-countries {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .services-grid,
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-large {
    grid-column: 1 / -1;
  }

  .earn-card {
    flex-direction: column;
    padding: 40px 28px;
    gap: 40px;
  }

  .coin-visual {
    width: 200px;
    height: 200px;
    min-width: 200px;
  }

  .coin-circle {
    width: 100px;
    height: 100px;
  }

  .coin-symbol {
    font-size: 36px;
  }

  .coin-orbit-1 {
    width: 150px;
    height: 150px;
  }

  .coin-orbit-2 {
    width: 190px;
    height: 190px;
  }

  .download-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .referral-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

@media (max-width: 640px) {
  .nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

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

  .feature-large {
    flex-direction: column;
    text-align: center;
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-title {
    letter-spacing: -1px;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-divider {
    height: 30px;
  }

  .earn-card {
    padding: 32px 20px;
  }

  .earn-number {
    font-size: 22px;
    min-width: 36px;
  }

  .footer-links {
    gap: 32px;
    flex-wrap: wrap;
  }

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

  .ref-highlight {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
}

.referral-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: linear-gradient(135deg, #7f00ff, #cc00ff);
  padding: 12px 20px;
  box-shadow: 0 4px 20px rgba(127, 0, 255, 0.4);
}

.referral-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.referral-banner-text {
  display: flex;
  align-items: center;
  gap: 8px;
  color: white;
  font-size: 15px;
}

.referral-banner-icon {
  font-size: 22px;
}

.referral-banner-code-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.referral-banner-code {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  padding: 6px 20px;
  border-radius: 10px;
  letter-spacing: 2px;
  border: 2px dashed rgba(255, 255, 255, 0.5);
}

.referral-banner-copy {
  background: white;
  color: #7f00ff;
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s;
}

.referral-banner-copy:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.ref-toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: linear-gradient(135deg, #7f00ff, #cc00ff);
  color: white;
  padding: 14px 28px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 15px;
  z-index: 9999;
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(127, 0, 255, 0.5);
  white-space: nowrap;
}

.ref-toast.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
