/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  min-height: 100vh;
  min-width: 320px;
  overflow-x: hidden;
  overflow-wrap: break-word;
  font-family: 'Rajdhani', sans-serif;
  background: #000510;
  color: #e0f0ff;
  line-height: 1.4;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; vertical-align: top; }

/* ===== VARIABLES ===== */
:root {
  --blue-deep: #100d00;
  --blue-dark: #00152e;
  --blue-mid: #00295e;
  --blue-bright: #0044ff;
  --blue-glow: #0044ff;
  --blue-neon: #3b82f6;
  --white: #ffffff;
  --text-dim: #7aaad4;
  --text-bright: #e0f0ff;
  --card-bg: rgba(0, 30, 70, 0.7);
  --card-border: rgba(0, 81, 255, 0.25);
  --glow-shadow: 0 0 20px rgba(0, 110, 255, 0.4), 0 0 60px rgba(0, 110, 255, 0.2);
  --glow-shadow-sm: 0 0 10px rgba(0, 26, 255, 0.3);
}

/* ===== BACKGROUND ===== */
#page-wrap {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: radial-gradient(ellipse at 20% 20%, rgba(8,3,3,0.5) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 80%, rgba(3,2,2,0.5) 0%, transparent 50%),
              linear-gradient(180deg, #000000 0%, #030202 100%);
  overflow: hidden;
}

/* Nebula & efek */
.nebula-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}
.nebula-orb.n1 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(0,100,255,0.25), transparent 70%); top: -80px; left: -60px; animation: drift1 12s infinite alternate; }
.nebula-orb.n2 { width: 250px; height: 250px; background: radial-gradient(circle, rgba(0,132,255,0.2), transparent 70%); top: 40%; right: -60px; animation: drift2 15s infinite alternate; }
.nebula-orb.n3 { width: 200px; height: 200px; background: radial-gradient(circle, rgba(0,89,255,0.15), transparent 70%); bottom: 10%; left: 20%; animation: drift1 10s infinite alternate; }
@keyframes drift1 { from { transform: translate(0,0); } to { transform: translate(20px,30px); } }
@keyframes drift2 { from { transform: translate(0,0); } to { transform: translate(-25px,20px); } }

.scanlines {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,170,255,0.015) 2px, rgba(0,170,255,0.015) 4px);
  pointer-events: none;
  z-index: 1;
}
.grid-lines {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: linear-gradient(rgba(0,100,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,100,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
}

/* ===== MAIN CONTENT ===== */
#main-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 480px;
  padding: 0 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* ===== HEADER ===== */
.header-section {
  width: 100%;
  padding: 1.5rem 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  position: relative;
}
.header-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-neon), var(--blue-bright), var(--blue-neon), transparent);
  animation: borderPulse 3s ease-in-out infinite;
}
@keyframes borderPulse { 0%,100%{ opacity:0.6; } 50%{ opacity:1; } }

.logo-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.logo-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-neon));
  opacity: 0.2;
  animation: logoGlow 2.5s infinite alternate;
}
@keyframes logoGlow { from { opacity: 0.15; filter: blur(4px); } to { opacity: 0.35; filter: blur(8px); } }
.logo-img-wrap {
  display: block;
  line-height: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 110, 255, 0.4);
  box-shadow: var(--glow-shadow-sm);
}
.logo-img-wrap img { display: block; width: 220px; height: auto; }

.status-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 187, 0, 0.08);
  border: 1px solid rgba(0, 119, 255, 0.3);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: #ffffff;
  text-transform: uppercase;
}
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-neon);
  box-shadow: 0 0 8px var(--blue-neon);
  animation: blink 1.2s ease-in-out infinite;
}
@keyframes blink { 0%,100%{ opacity:1; } 50%{ opacity:0.2; } }

/* ===== HERO ===== */
.hero-section {
  width: 100%;
  padding: 0 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.section-title {
  font-family: 'Orbitron', monospace;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
  color: var(--white);
  text-shadow: 0 0 10px var(--blue-glow), 0 0 30px var(--blue-bright);
  text-transform: uppercase;
  animation: titleShimmer 4s ease-in-out infinite;
}
@keyframes titleShimmer { 0%,100%{ text-shadow:0 0 10px var(--blue-glow),0 0 30px var(--blue-bright); } 50%{ text-shadow:0 0 20px var(--blue-neon),0 0 50px var(--blue-glow); } }

.banner-frame {
  width: 100%;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 102, 255, 0.35);
  box-shadow: var(--glow-shadow), inset 0 0 30px rgba(0, 18, 120, 0.4);
}
.banner-frame::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
  animation: shine 5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shine { 0%{ left:-100%; } 60%,100%{ left:160%; } }
.corner {
  position: absolute;
  width: 16px; height: 16px;
  pointer-events: none;
  z-index: 3;
}
.corner.tl { top: 6px; left: 6px; border-top: 2px solid var(--blue-neon); border-left: 2px solid var(--blue-neon); }
.corner.tr { top: 6px; right: 6px; border-top: 2px solid var(--blue-neon); border-right: 2px solid var(--blue-neon); }
.corner.bl { bottom: 6px; left: 6px; border-bottom: 2px solid var(--blue-neon); border-left: 2px solid var(--blue-neon); }
.corner.br { bottom: 6px; right: 6px; border-bottom: 2px solid var(--blue-neon); border-right: 2px solid var(--blue-neon); }

.stats-bar {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}
.stat-item {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 10px;
  padding: 0.6rem 0.4rem;
  text-align: center;
  backdrop-filter: blur(10px);
  position: relative;
}
.stat-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-neon), transparent);
}
.stat-value {
  display: block;
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 0 10px var(--blue-neon);
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 12px;
  color: #ffffff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: 'Orbitron', monospace;
}

/* ===== BUTTONS ===== */
.buttons-section {
  width: 100%;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}
.btn-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  height: 3.5rem;
  border-radius: 10px;
  font-family: 'Orbitron', monospace;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-cta:active { transform: scale(0.97); }
.btn-primary {
  background: linear-gradient(135deg, #0052cc, #0065e9, #0065e9, #004bee);
  background-size: 300% 300%;
  color: #fff;
  border: 1px solid rgba(0, 89, 255, 0.6);
  box-shadow: 0 0 20px rgba(0, 119, 255, 0.5), 0 0 40px rgba(0, 140, 255, 0.3), inset 0 1px 0 rgba(255,255,255,0.2);
  animation: btnFlow 3s ease infinite;
}
@keyframes btnFlow { 0%{ background-position:0% 50%; } 50%{ background-position:100% 50%; } 100%{ background-position:0% 50%; } }
.btn-secondary {
  background: linear-gradient(135deg, rgba(0, 21, 80, 0.9), rgba(0, 72, 120, 0.9));
  color: #ffffff;
  border: 1px solid rgba(0, 81, 255, 0.5);
  box-shadow: 0 0 15px rgba(0, 89, 255, 0.2);
}
.btn-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
  animation: btnShine 3s ease-in-out infinite;
}
@keyframes btnShine { 0%{ left:-100%; } 50%,100%{ left:150%; } }
.btn-icon { width: 1.2rem; height: 1.2rem; fill: currentColor; flex-shrink: 0; }

/* ===== DIVIDER ===== */
.divider {
  width: 100%;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 89, 255, 0.3), transparent);
}
.divider-text {
  font-family: 'Orbitron', monospace;
  font-size: 20px;
  letter-spacing: 0.15em;
  color: #ffffff;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ===== FEATURES ===== */
.features-section {
  width: 100%;
  padding: 0 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.feature-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 0.875rem 1rem;
  position: relative;
  backdrop-filter: blur(8px);
}
.feature-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--blue-bright), var(--blue-neon));
  box-shadow: 0 0 8px var(--blue-glow);
}
.feature-icon {
  width: 2.2rem; height: 2.2rem;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0, 81, 255, 0.3), rgba(0, 26, 255, 0.2));
  border: 1px solid rgba(0, 119, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-icon svg { width: 1rem; height: 1rem; fill: #ffffff; }
.feature-text { flex: 1; }
.feature-title {
  font-family: 'Orbitron', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}
.feature-desc {
  font-size: 10px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* ===== TICKER ===== */
.ticker-wrap {
  width: 100%;
  background: rgba(0, 42, 70, 0.6);
  border-top: 1px solid rgba(0, 153, 255, 0.2);
  border-bottom: 1px solid rgba(0, 174, 255, 0.2);
  overflow: hidden;
  padding: 0.5rem 0;
  position: relative;
}
.ticker-label {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  background: linear-gradient(90deg, var(--blue-bright), #0052cc);
  font-family: 'Orbitron', monospace;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 2;
  box-shadow: 4px 0 12px rgba(0, 119, 255, 0.4);
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  padding-left: 6rem;
  animation: tickerScroll 20s linear infinite;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 10px;
  color: #ffffff;
  padding: 0 1.5rem;
}
.ticker-sep { color: var(--blue-bright); font-weight: 700; }
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ===== FOOTER ===== */
.footer-section {
  width: 100%;
  padding: 1rem 1.25rem 0.5rem;
  text-align: center;
}
.footer-text {
  font-family: 'Orbitron', monospace;
  font-size: 15px;
  color: #ffffff;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ===== PULSE RINGS ===== */
.pulse-ring {
  position: fixed;
  bottom: 10%; right: 5%;
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(0,170,255,0.15);
  animation: pulseExpand 4s ease-out infinite;
  pointer-events: none;
  z-index: 0;
}
.pulse-ring.r2 { animation-delay: 1.3s; width: 100px; height: 100px; bottom: 8%; right: 3%; }
.pulse-ring.r3 { animation-delay: 2.6s; width: 120px; height: 120px; bottom: 6%; right: 1%; }
@keyframes pulseExpand { 0%{ opacity:0.5; transform:scale(0.8); } 100%{ opacity:0; transform:scale(1.4); } }