/* ========================================================
   PREMIUM LUXURY VIP LANDING PAGE THEME
   Optimized for High CTR, Fast Loading & Mobile-First USA Traffic
   ======================================================== */

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

:root {
  --bg-deep: #08090e;
  --card-bg: rgba(18, 20, 29, 0.78);
  --card-border: rgba(255, 255, 255, 0.1);
  --text-main: #ffffff;
  --text-muted: #9ea7b5;

  /* Button Gradients */
  --grad-pink: linear-gradient(135deg, #ff175d 0%, #ff5231 100%);
  --grad-purple: linear-gradient(135deg, #7928ca 0%, #a855f7 100%);
  --grad-cyan: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
  --grad-gold: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-deep);
  color: var(--text-main);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 24px 16px;
  overflow-x: hidden;
  position: relative;
}

/* Multi-Layer Ambient Background Lights */
.bg-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(95px);
  pointer-events: none;
  z-index: 0;
}

.glow-1 {
  top: -5%;
  left: 50%;
  transform: translateX(-50%);
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 23, 93, 0.28) 0%, rgba(121, 40, 202, 0.2) 50%, transparent 70%);
}

.glow-2 {
  bottom: -5%;
  right: 10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(0, 180, 216, 0.16) 0%, rgba(121, 40, 202, 0.15) 50%, transparent 70%);
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 30px 30px;
  z-index: 0;
  pointer-events: none;
}

/* Glassmorphic Portal Card */
.portal-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 450px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border-radius: 30px;
  padding: 34px 24px 26px;
  box-shadow: 
    0 25px 60px -10px rgba(0, 0, 0, 0.8),
    0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  text-align: center;
}

/* Badges Header */
.badge-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.badge {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
}

.warning-badge {
  background: rgba(255, 23, 93, 0.15);
  color: #ff3366;
  border: 1px solid rgba(255, 23, 93, 0.35);
  box-shadow: 0 0 14px rgba(255, 23, 93, 0.25);
}

.live-badge {
  background: rgba(0, 230, 153, 0.12);
  color: #00ffaa;
  border: 1px solid rgba(0, 230, 153, 0.3);
  display: flex;
  gap: 7px;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #00ffaa;
  border-radius: 50%;
  box-shadow: 0 0 8px #00ffaa;
  animation: live-blink 1.4s infinite ease-in-out;
}

@keyframes live-blink {
  0%, 100% { transform: scale(0.9); opacity: 0.8; }
  50% { transform: scale(1.25); opacity: 1; box-shadow: 0 0 12px #00ffaa; }
}

/* Avatar / Profile Photo Container */
.avatar-container {
  position: relative;
  display: inline-block;
  margin-bottom: 16px;
}

.avatar-ring {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  padding: 3.5px;
  background: linear-gradient(135deg, #ff175d, #a855f7, #00b4d8);
  box-shadow: 0 0 28px rgba(255, 23, 93, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Animated rotating border shine */
.avatar-ring::before {
  content: '';
  position: absolute;
  inset: -50%;
  background: conic-gradient(from 0deg, transparent, #ff175d, #00ffaa, #7928ca, transparent);
  animation: rotate-ring 4s linear infinite;
  z-index: 1;
}

@keyframes rotate-ring {
  100% { transform: rotate(360deg); }
}

.avatar-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2.5px solid #0f1118;
  position: relative;
  z-index: 2;
  background: #171924;
}

/* Verified Badge */
.verified-icon {
  position: absolute;
  bottom: 3px;
  right: 2px;
  background: linear-gradient(135deg, #00b4d8, #0077b6);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid #141722;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  z-index: 3;
}

/* Green Online Status Dot */
.online-status-dot {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  background-color: #00ffaa;
  border: 3px solid #141722;
  border-radius: 50%;
  box-shadow: 0 0 10px #00ffaa;
  z-index: 3;
}

/* Typography */
.title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
  background: linear-gradient(180deg, #ffffff 30%, #d1d5db 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 26px;
  padding: 0 10px;
}

/* Buttons Container */
.links-container {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 26px;
}

/* Base CTA Button Styling */
.cta-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  text-decoration: none;
  border-radius: 18px;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  color: #ffffff;
}

/* Glossy Light Sweep Overlay */
.cta-btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-20deg);
  transition: left 0.75s ease;
}

.cta-btn:hover::after {
  left: 140%;
}

.cta-btn:active {
  transform: scale(0.97);
}

/* BUTTON 1: Neon Pink / Coral (Top High CTR Pulsing) */
.btn-neon-pink {
  background: var(--grad-pink);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 28px -4px rgba(255, 23, 93, 0.55);
}

.pulse-glow {
  animation: pulse-ring 2s infinite;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 23, 93, 0.7), 0 10px 25px rgba(255, 23, 93, 0.5);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(255, 23, 93, 0), 0 10px 25px rgba(255, 23, 93, 0.5);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 23, 93, 0), 0 10px 25px rgba(255, 23, 93, 0.5);
  }
}

.btn-neon-pink:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -4px rgba(255, 23, 93, 0.7);
}

/* BUTTON 2: Velvet Purple */
.btn-neon-purple {
  background: var(--grad-purple);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 26px -4px rgba(121, 40, 202, 0.5);
}

.btn-neon-purple:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -4px rgba(121, 40, 202, 0.65);
}

/* BUTTON 3: Cyber Cyan */
.btn-cyber-cyan {
  background: var(--grad-cyan);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 10px 26px -4px rgba(0, 180, 216, 0.45);
}

.btn-cyber-cyan:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -4px rgba(0, 180, 216, 0.6);
}

/* BUTTON 4: Gold VIP */
.btn-gold-vip {
  background: var(--grad-gold);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 26px -4px rgba(245, 158, 11, 0.45);
}

.btn-gold-vip:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -4px rgba(245, 158, 11, 0.6);
}

/* Button Typography & Icons */
.btn-icon {
  font-size: 1.55rem;
  margin-right: 15px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.3));
}

.btn-text {
  flex-grow: 1;
  text-align: left;
}

.btn-title {
  display: block;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.015em;
  line-height: 1.25;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.btn-desc {
  display: block;
  font-size: 0.77rem;
  opacity: 0.92;
  margin-top: 3px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.btn-arrow {
  font-size: 1.3rem;
  font-weight: 800;
  opacity: 0.85;
  transition: transform 0.22s ease, opacity 0.22s ease;
  margin-left: 12px;
}

.cta-btn:hover .btn-arrow {
  transform: translateX(5px);
  opacity: 1;
}

/* Footer Section */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
}

.security-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.74rem;
  color: #8a94a3;
  font-weight: 600;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.disclaimer {
  font-size: 0.69rem;
  color: #5d6675;
  line-height: 1.45;
}

/* Mobile Optimizations */
@media (max-width: 480px) {
  body {
    padding: 16px 12px;
  }

  .portal-card {
    padding: 28px 18px 22px;
    border-radius: 24px;
  }

  .title {
    font-size: 1.45rem;
  }

  .avatar-ring {
    width: 88px;
    height: 88px;
  }

  .cta-btn {
    padding: 14px 16px;
    border-radius: 16px;
  }

  .btn-title {
    font-size: 0.98rem;
  }

  .btn-desc {
    font-size: 0.73rem;
  }
}
