/* ==========================================================================
   REACTWALLET — MINIMALIST DESIGN SYSTEM
   Palette: Black (#090a0f), White (#ffffff), Refined Blue (#2563eb, #3b82f6)
   Aesthetic: Clean, Elegant, High-Tech Simplicity, Zero Emojis, No Clutter
   ========================================================================== */

:root {
  --bg: #090a0f;
  --bg-surface: #10121a;
  --bg-surface-hover: #151822;
  --bg-subtle: #181b26;

  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(255, 255, 255, 0.16);
  --border-focus: #2563eb;

  --text: #ffffff;
  --text-muted: #94a3b8;
  --text-dim: #64748b;

  --blue: #2563eb;
  --blue-light: #3b82f6;
  --blue-soft: rgba(37, 99, 235, 0.12);
  --blue-glow: rgba(37, 99, 235, 0.25);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 22px;

  --container: 1160px;
  --transition: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

/* ============================================================
   ANIMATED BACKGROUND — Aurora Orbs + Grid
   ============================================================ */

.bg-grid {
  position: fixed;
  inset: 0;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: -2;
  animation: gridDrift 40s linear infinite;
}

@keyframes gridDrift {
  0%   { background-position: 0 0; }
  100% { background-position: 56px 56px; }
}

.subtle-blue-glow {
  position: fixed;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

/* Aurora orb 1 — blue */
.subtle-blue-glow::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  width: 55%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.22) 0%, transparent 70%);
  filter: blur(70px);
  animation: auroraFloat1 14s ease-in-out infinite;
}

/* Aurora orb 2 — cyan/teal */
.subtle-blue-glow::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 45%;
  height: 80%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(0, 208, 146, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  animation: auroraFloat2 18s ease-in-out infinite;
}

@keyframes auroraFloat1 {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.9; }
  33%       { transform: translateY(-30px) scale(1.05); opacity: 1; }
  66%       { transform: translateY(20px) scale(0.97); opacity: 0.8; }
}

@keyframes auroraFloat2 {
  0%, 100% { transform: translateY(0) translateX(0) scale(1); opacity: 0.7; }
  40%       { transform: translateY(25px) translateX(-15px) scale(1.08); opacity: 1; }
  70%       { transform: translateY(-15px) translateX(10px) scale(0.95); opacity: 0.6; }
}

/* Floating particles canvas */
#bg-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.55;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

code {
  font-family: var(--font-mono);
  font-size: 0.85em;
  background: var(--bg-subtle);
  color: var(--blue-light);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */

.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(9, 10, 15, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  transition: background var(--transition);
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
}

.brand-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: contain;
  transition: transform var(--transition);
}

.nav-brand:hover .brand-logo-img {
  transform: scale(1.06);
}

.brand-text {
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: -0.3px;
}

.brand-text strong {
  font-weight: 700;
  color: var(--blue-light);
}

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

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

.nav-links a:hover {
  color: #ffffff;
}

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ==========================================================================
   LANGUAGE TOGGLE SWITCH (EN / ES)
   ========================================================================== */

.lang-switch {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2px;
  gap: 2px;
  backdrop-filter: blur(8px);
}

.lang-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 9px;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
  line-height: 1;
}

.lang-btn:hover {
  color: #ffffff;
}

.lang-btn.active {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 0 10px rgba(37, 99, 235, 0.45);
}

.btn-nav-github {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
}

.btn-nav-github:hover {
  color: #ffffff;
  border-color: var(--border-hover);
  background: rgba(255, 255, 255, 0.06);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.btn-primary:hover {
  background: var(--blue-light);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 6px;
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  border: 1px solid var(--border);
}

.mobile-menu-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
  border-radius: 2px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero-section {
  padding: 80px 0 60px;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.network-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--blue-light);
  background: var(--blue-soft);
  border: 1px solid rgba(37, 99, 235, 0.3);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.network-dot {
  width: 7px;
  height: 7px;
  background: #3b82f6;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(59,130,246,0.8);
  animation: dotPulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 4px rgba(59,130,246,0.6); }
  50%       { box-shadow: 0 0 12px rgba(59,130,246,1), 0 0 20px rgba(59,130,246,0.4); }
}

.hero-headline {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1.5px;
  color: #ffffff;
  margin-bottom: 20px;
}

.hero-headline strong {
  background: linear-gradient(135deg, #60a5fa, #2563eb 40%, #00d092);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 32px;
}

.hero-lead strong {
  color: #ffffff;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.btn-primary-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
  box-shadow: 0 4px 16px rgba(37,99,235,0.4);
  position: relative;
  overflow: hidden;
}

.btn-primary-large::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn-primary-large:hover {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,99,235,0.6);
}

.btn-primary-large:hover::after {
  opacity: 1;
}

.btn-secondary-large {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.btn-secondary-large:hover {
  background: var(--bg-surface-hover);
  border-color: var(--border-hover);
}

.hero-specs-inline {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.spec-inline-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   REAL APP PHONE MOCKUP (Fiel a las Capturas de Producción)
   ========================================================================== */

.hero-mockup-col {
  display: flex;
  justify-content: center;
  animation: mockupFloat 6s ease-in-out infinite;
  will-change: transform;
}

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

.phone-glow-wrapper {
  position: relative;
  width: 100%;
  max-width: 375px;
}

/* Rotating conic ring — lives OUTSIDE the overflow:hidden phone frame */
.phone-glow-wrapper::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 40px;
  background: conic-gradient(
    from 0deg,
    transparent 0deg 55deg,
    rgba(37, 99, 235, 0.7) 55deg 120deg,
    transparent 120deg 175deg,
    rgba(0, 208, 146, 0.5) 175deg 240deg,
    transparent 240deg 295deg,
    rgba(56, 189, 248, 0.45) 295deg 360deg
  );
  z-index: -1;
  animation: phoneRingRotate 8s linear infinite;
  filter: blur(8px);
  opacity: 0.7;
}

.real-phone-frame {
  width: 100%;
  max-width: 375px;
  height: 640px;
  max-height: 640px;
  display: flex;
  flex-direction: column;
  background: #080c16;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 36px;
  padding: 12px 14px 0;
  box-shadow: 
    0 30px 60px -12px rgba(0, 0, 0, 0.95),
    0 0 0 1px rgba(255,255,255,0.06),
    0 0 50px rgba(37, 99, 235, 0.22),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  user-select: none;
  transition: box-shadow 0.4s ease;
}

.real-phone-frame:hover {
  box-shadow:
    0 35px 70px -10px rgba(0, 0, 0, 0.98),
    0 0 0 1px rgba(255,255,255,0.09),
    0 0 70px rgba(37, 99, 235, 0.35),
    inset 0 1px 1px rgba(255, 255, 255, 0.14);
}

/* Phone inner glow (safe to keep — it's flat, not a ring) */
.real-phone-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15) 50%, transparent);
  z-index: 1;
  pointer-events: none;
}

/* Simulated Phone Status Bar */
.phone-statusbar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6px 8px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #94a3b8;
}

.phone-time {
  font-family: var(--font);
  color: #cbd5e1;
}

.phone-status-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.phone-battery {
  border: 1px solid #94a3b8;
  border-radius: 3px;
  padding: 0 3px;
  font-size: 0.62rem;
  line-height: 1;
}

/* App Screens Viewport (Fixed Scrollable Area) */
.app-screens-viewport {
  flex: 1;
  min-height: 0;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-right: 1px;
}

.app-screens-viewport::-webkit-scrollbar {
  display: none;
}

.app-screen {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  animation: fadeInScreen 0.2s ease-out;
  padding-bottom: 8px;
}

@keyframes fadeInScreen {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* App Header */
.real-app-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.real-avatar-badge {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, #8b5cf6, #6d28d9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.4);
  flex-shrink: 0;
}

.real-header-info {
  flex-grow: 1;
  margin-left: 10px;
}

.real-header-addr {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.2px;
}

.real-header-net {
  font-size: 0.72rem;
  font-weight: 600;
  color: #00d092;
  display: flex;
  align-items: center;
  gap: 4px;
}

.green-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #00d092;
  border-radius: 50%;
  box-shadow: 0 0 6px #00d092;
  animation: greenPulse 2.2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes greenPulse {
  0%, 100% { box-shadow: 0 0 4px rgba(0,208,146,0.7); transform: scale(1); }
  50%       { box-shadow: 0 0 10px rgba(0,208,146,1), 0 0 20px rgba(0,208,146,0.4); transform: scale(1.2); }
}

.real-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.real-icon-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #121826;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.real-icon-btn:hover {
  background: #1c2438;
  color: #ffffff;
}

/* Balance Hero Card */
.real-balance-card {
  background: linear-gradient(180deg, #101626 0%, #0d1220 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 12px 12px 10px;
  margin-bottom: 10px;
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, 0.6);
}

.real-balance-top-pills {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.pill-addr {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3px 7px;
  border-radius: 7px;
  font-size: 0.7rem;
  color: #94a3b8;
  cursor: pointer;
  transition: all var(--transition);
}

.pill-addr:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.pill-gas {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0, 208, 146, 0.08);
  border: 1px solid rgba(0, 208, 146, 0.2);
  padding: 3px 7px;
  border-radius: 7px;
  font-size: 0.7rem;
  color: #94a3b8;
}

.pill-gas strong {
  color: #00d092;
}

.real-hero-balance {
  text-align: center;
  margin: 4px 0 10px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}

.real-hero-balance .balance-val {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -1px;
  line-height: 1;
}

.real-hero-balance .balance-token-tag {
  font-size: 1.15rem;
  font-weight: 800;
  color: #2563eb;
  letter-spacing: -0.5px;
}

.real-hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding-top: 2px;
}

.hero-action-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}

.hero-circle-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.hero-circle-btn.send {
  background: #2563eb;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.45);
}

.hero-circle-btn.send:hover {
  transform: scale(1.05);
  background: #3b82f6;
}

.hero-circle-btn.receive {
  background: #161e31;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-circle-btn.receive:hover {
  transform: scale(1.05);
  background: #1f2a45;
}

.hero-btn-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #94a3b8;
}

.hero-btn-label.active-blue {
  color: #3b82f6;
}

/* Assets Section */
.real-assets-section {
  margin-bottom: 14px;
}

.section-micro-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
  display: block;
}

.real-asset-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.real-asset-row {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f1524 0%, #111828 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 10px 12px;
  cursor: pointer;
  transition: all 0.18s ease;
  position: relative;
  overflow: hidden;
}

.real-asset-row::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37,99,235,0) 0%, rgba(37,99,235,0.06) 100%);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.real-asset-row:hover {
  background: linear-gradient(135deg, #141c30 0%, #162035 100%);
  border-color: rgba(37, 99, 235, 0.35);
  transform: translateX(3px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.real-asset-row:hover::after {
  opacity: 1;
}

.asset-logo-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 12px;
  font-weight: 800;
  font-size: 0.95rem;
}

.asset-logo-badge.react {
  background: #1d4ed8;
  color: #ffffff;
  border: 1px solid #3b82f6;
}

.asset-logo-badge.usdt {
  background: #00875a;
  color: #ffffff;
  border-radius: 8px;
}

.asset-logo-badge.xpl {
  background: #062b3a;
  color: #38bdf8;
  border: 1px solid rgba(56, 189, 248, 0.3);
}

.asset-meta {
  flex-grow: 1;
}

.asset-name-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
}

.asset-name-sub {
  font-size: 0.72rem;
  color: #64748b;
}

.asset-balance-wrap {
  text-align: right;
  margin-right: 8px;
}

.asset-num-val {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
}

.asset-unit-label {
  font-size: 0.7rem;
  font-weight: 700;
}

.asset-unit-label.react-blue { color: #3b82f6; }
.asset-unit-label.usdt-green { color: #00d092; }
.asset-unit-label.xpl-green { color: #38bdf8; }

.asset-chevron {
  color: #475569;
  font-size: 1.1rem;
  font-weight: 600;
}

/* Recent Activity */
.real-activity-section {
  margin-bottom: 12px;
}

.activity-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.activity-view-all {
  font-size: 0.75rem;
  font-weight: 600;
  color: #3b82f6;
}

.real-activity-card {
  display: flex;
  align-items: center;
  background: rgba(0, 208, 146, 0.04);
  border: 1px solid rgba(0, 208, 146, 0.25);
  border-radius: 14px;
  padding: 10px 12px;
  cursor: pointer;
  transition: all 0.18s ease;
  box-shadow: 0 0 18px rgba(0, 208, 146, 0.08), inset 0 1px 0 rgba(0, 208, 146, 0.08);
  position: relative;
  overflow: hidden;
}

.real-activity-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  border-radius: 14px 0 0 14px;
  background: linear-gradient(180deg, #00d092, rgba(0,208,146,0.3));
}

.real-activity-card:hover {
  background: rgba(0, 208, 146, 0.09);
  border-color: rgba(0, 208, 146, 0.5);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(0, 208, 146, 0.14);
}

.activity-icon-badge {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 208, 146, 0.12);
  border: 1px solid rgba(0, 208, 146, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
}

.activity-icon-badge.usdt {
  background: rgba(0, 135, 90, 0.18);
  border-color: rgba(0, 208, 146, 0.35);
}

.activity-details {
  flex-grow: 1;
}

.activity-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.activity-sub {
  font-size: 0.68rem;
  color: #00d092;
}

.activity-amount {
  font-size: 0.8rem;
  font-weight: 800;
}

.activity-amount.positive {
  color: #00d092;
}

/* ==========================================================================
   VIEW 2: SEND CRYPTO STYLES (Foto 2)
   ========================================================================== */

.real-send-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  padding-bottom: 6px;
}

.send-title-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.send-header-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.send-header-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
}

.send-scan-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #162035;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #3b82f6;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 8px;
}

.send-section-box {
  background: #0f1524;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 10px 12px;
  margin-bottom: 10px;
}

.send-box-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.send-box-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: #cbd5e1;
}

.send-box-sub {
  font-size: 0.7rem;
  color: #64748b;
}

.send-box-avail {
  font-size: 0.72rem;
  font-weight: 700;
  color: #3b82f6;
}

/* Horizontal Token Carousel */
.send-asset-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.send-asset-chip {
  background: #141b2e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 8px 6px;
  cursor: pointer;
  transition: all 0.18s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.send-asset-chip::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  opacity: 0;
  background: radial-gradient(circle at 50% 120%, rgba(0,208,146,0.15), transparent 70%);
  transition: opacity 0.2s;
}

.send-asset-chip:hover::after {
  opacity: 1;
}

.send-asset-chip.active {
  background: #0e1f1a;
  border-color: #00d092;
  box-shadow: 0 0 14px rgba(0, 208, 146, 0.25), inset 0 1px 0 rgba(0,208,146,0.15);
}

.chip-top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 4px;
}

.asset-logo-badge.mini {
  width: 22px;
  height: 22px;
  font-size: 0.7rem;
  margin: 0;
}

.badge-tag {
  font-size: 0.58rem;
  font-weight: 800;
  color: #00d092;
  background: rgba(0, 208, 146, 0.15);
  padding: 1px 4px;
  border-radius: 4px;
}

.badge-tag.gas {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.15);
}

.chip-name {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
}

.chip-val {
  font-size: 0.7rem;
  color: #94a3b8;
}

/* Recipient and Inputs */
.send-paste-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 700;
  color: #3b82f6;
}

.send-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #080c16;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 7px 10px;
}

.send-input-wrap input {
  background: none;
  border: none;
  color: #ffffff;
  font-family: var(--font);
  font-size: 0.82rem;
  width: 100%;
  outline: none;
}

.send-input-wrap input::placeholder {
  color: #475569;
}

.send-recent-contacts {
  margin-top: 8px;
}

.recent-title {
  font-size: 0.68rem;
  color: #64748b;
  display: block;
  margin-bottom: 4px;
}

.recent-chips {
  display: flex;
  gap: 6px;
}

.recent-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #141b2e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 6px;
  transition: all var(--transition);
}

.recent-pill:hover {
  background: #1d2742;
  color: #ffffff;
  border-color: #3b82f6;
}

/* Amount Input */
.send-amount-input-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #080c16;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 6px 12px;
  margin-bottom: 8px;
}

.send-amount-num {
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  background: none;
  border: none;
  outline: none;
  width: 70%;
  font-family: var(--font);
}

.send-token-pill {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: #00875a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
}

.send-percent-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.pct-btn {
  background: #141b2e;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 5px 0;
  border-radius: 6px;
  transition: all var(--transition);
}

.pct-btn.active, .pct-btn:hover {
  background: rgba(37, 99, 235, 0.2);
  border-color: #2563eb;
  color: #ffffff;
}

.send-speed-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  color: #64748b;
  margin: 6px 0 10px;
  padding: 0 4px;
}

.send-speed-footer .speed-right {
  color: #00d092;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn-execute-send {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(37, 99, 235, 0.45);
  transition: all 0.18s ease;
  position: relative;
  overflow: hidden;
}

.btn-execute-send::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.08), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}

.btn-execute-send:hover {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.6);
}

.btn-execute-send:hover::before {
  opacity: 1;
}

.btn-execute-send:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(37, 99, 235, 0.35);
}

/* ==========================================================================
   VIEW 3: POS TERMINAL WITH NUMERIC KEYPAD (Foto 3)
   ========================================================================== */

.pos-top-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.pos-header-title-box {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pos-card-icon-blue {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pos-brand-name {
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.pos-sub-addr {
  font-size: 0.65rem;
  color: #64748b;
}

.pos-currency-switch {
  display: flex;
  gap: 4px;
  background: #0f1524;
  padding: 3px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pos-curr-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #94a3b8;
  padding: 3px 6px;
  border-radius: 6px;
  transition: all var(--transition);
}

.pos-curr-pill.active {
  background: #1e293b;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dot-r {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #2563eb;
  color: #ffffff;
  font-size: 0.55rem;
  font-weight: 800;
}

.dot-t {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: #00875a;
  color: #ffffff;
  font-size: 0.55rem;
  font-weight: 800;
}

.pos-subnav-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 8px;
}

.pos-subtab {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: #0f1524;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 5px 0;
  font-size: 0.72rem;
  font-weight: 700;
  color: #64748b;
  transition: all var(--transition);
}

.pos-subtab.active {
  background: #162035;
  color: #ffffff;
  border-color: rgba(37, 99, 235, 0.4);
}

.pos-keypad-amount-box {
  background: #0d1220;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 6px 10px;
  text-align: center;
  margin-bottom: 4px;
}

.pos-amount-tag {
  font-size: 0.6rem;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 0.5px;
  display: block;
}

.pos-amount-row-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 1px;
}

.pos-token-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #1d4ed8;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pos-big-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
}

.pos-token-name {
  font-size: 1.05rem;
  font-weight: 800;
  color: #2563eb;
}

.pos-modifiers-wrap {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 4px;
}

.pos-mod-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mod-label {
  font-size: 0.62rem;
  font-weight: 700;
  color: #64748b;
  width: 54px;
  flex-shrink: 0;
}

.mod-chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  flex-grow: 1;
}

.mod-chip {
  background: #111728;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 5px;
  color: #94a3b8;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 0;
  text-align: center;
  transition: all var(--transition);
}

.mod-chip.green-active.active {
  border-color: #00d092;
  color: #00d092;
  background: rgba(0, 208, 146, 0.08);
}

.mod-chip.red-active.active {
  border-color: #ef4444;
  color: #f87171;
  background: rgba(239, 68, 68, 0.08);
}

.pos-memo-input-wrap {
  margin-bottom: 4px;
}

.pos-memo-input-wrap input {
  width: 100%;
  background: #0a0f1d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 7px;
  padding: 5px 8px;
  color: #ffffff;
  font-size: 0.7rem;
  outline: none;
  font-family: var(--font);
}

.pos-memo-input-wrap input::placeholder {
  color: #475569;
}

/* Keypad Grid */
.pos-keypad-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 4px;
}

.key-btn {
  background: linear-gradient(145deg, #131929, #0f1524);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 6px 0;
  text-align: center;
  transition: all 0.12s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.05);
}

.key-btn:hover {
  background: linear-gradient(145deg, #1e2942, #162035);
  border-color: rgba(37, 99, 235, 0.35);
  box-shadow: 0 4px 8px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.08);
}

.key-btn:active {
  transform: scale(0.94);
  background: linear-gradient(145deg, #2563eb, #1d4ed8);
  box-shadow: 0 1px 3px rgba(37,99,235,0.5), inset 0 1px 0 rgba(255,255,255,0.1);
  border-color: #3b82f6;
}

.pos-keypad-actions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-bottom: 4px;
}

.key-btn-action {
  background: #121828;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 7px;
  padding: 5px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.76rem;
  transition: all 0.15s ease;
}

.key-btn-action.clear {
  color: #f87171;
}

.key-btn-action.backspace {
  color: #94a3b8;
}

.key-btn-action:hover {
  background: #1e2942;
}

.btn-pos-charge-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 8px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.45);
  transition: all 0.18s ease;
  position: relative;
  overflow: hidden;
}

.btn-pos-charge-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.12) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-pos-charge-submit:hover {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.6);
  transform: translateY(-1px);
}

.btn-pos-charge-submit:hover::before {
  transform: translateX(100%);
}

.btn-pos-charge-submit:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(37,99,235,0.4);
}

/* ==========================================================================
   VIEW 5: TRANSACTION HISTORY SCREEN (Foto 1)
   ========================================================================== */

.history-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.btn-history-back {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #121826;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.btn-history-back:hover {
  background: #1e2942;
}

.history-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
}

.history-metrics-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 10px;
}

.h-metric-card {
  background: linear-gradient(135deg, #0f1524 0%, #111828 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 10px 12px;
  position: relative;
  overflow: hidden;
}

.h-metric-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at top right, rgba(37,99,235,0.06), transparent 70%);
  pointer-events: none;
}

.h-metric-title {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #94a3b8;
  margin-bottom: 4px;
}

.green-circle-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(0, 208, 146, 0.2);
  color: #00d092;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 900;
}

.blue-circle-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.2);
  color: #3b82f6;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  font-weight: 900;
}

.h-metric-val {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.1;
}

.h-metric-val.positive {
  color: #00d092;
}

.h-metric-val.neutral {
  color: #ffffff;
}

.h-metric-sub {
  font-size: 0.65rem;
  color: #64748b;
}

.history-filter-row {
  display: flex;
  gap: 6px;
  margin-bottom: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.h-filter-btn {
  background: #111728;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  white-space: nowrap;
  transition: all var(--transition);
}

.h-filter-btn.active {
  background: rgba(37, 99, 235, 0.2);
  border-color: #2563eb;
  color: #ffffff;
}

.history-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.history-item-card {
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f1524 0%, #111828 100%);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 10px 12px;
  cursor: pointer;
  transition: all 0.18s ease;
  position: relative;
  overflow: hidden;
}

.history-item-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(180deg, #00d092, rgba(0,208,146,0.3));
  border-radius: 14px 0 0 14px;
  transition: width 0.18s ease;
}

.history-item-card:hover {
  background: linear-gradient(135deg, #111d2e 0%, #142035 100%);
  border-color: rgba(0, 208, 146, 0.35);
  transform: translateX(3px);
  box-shadow: 0 4px 16px rgba(0, 208, 146, 0.08);
}

.history-item-card:hover::before {
  width: 3px;
}

.h-icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 208, 146, 0.12);
  border: 1px solid rgba(0, 208, 146, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  flex-shrink: 0;
}

.h-info {
  flex-grow: 1;
}

.h-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
}

.h-status-line {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 2px;
}

.badge-rcvd {
  font-size: 0.58rem;
  font-weight: 800;
  color: #00d092;
  background: rgba(0, 208, 146, 0.12);
  padding: 1px 4px;
  border-radius: 3px;
  letter-spacing: 0.3px;
}

.h-date {
  font-size: 0.65rem;
  color: #64748b;
}

.h-amount-wrap {
  text-align: right;
  margin-right: 6px;
}

.h-amount-val {
  font-size: 0.85rem;
  font-weight: 800;
}

.h-amount-val.positive {
  color: #00d092;
}

.h-amount-unit {
  font-size: 0.65rem;
  color: #64748b;
  font-weight: 700;
}

.h-chevron {
  color: #475569;
  font-size: 1.1rem;
}

/* ==========================================================================
   BOTTOM NAVIGATION BAR (Fixed at bottom of Phone)
   ========================================================================== */

.real-bottom-nav {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  background: #0a0f1d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0 -14px 0;
  padding: 8px 6px 12px;
  position: relative;
  z-index: 10;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: #64748b;
  font-size: 0.68rem;
  font-weight: 700;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px 6px;
  transition: all var(--transition);
}

.nav-item:hover {
  color: #cbd5e1;
}

.nav-item.active {
  color: #2563eb;
}

.nav-scan-floating-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -24px;
}

.nav-scan-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #2563eb;
  border: 3px solid #080c16;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(37, 99, 235, 0.6);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.nav-scan-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 24px rgba(37, 99, 235, 0.85);
}

.scan-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: #64748b;
  margin-top: 2px;
}

.pos-nav-icon-wrap {
  position: relative;
  display: inline-flex;
}

.nav-pos-badge {
  position: absolute;
  top: -4px;
  right: -8px;
  background: #2563eb;
  color: #ffffff;
  font-size: 0.5rem;
  font-weight: 800;
  padding: 1px 3px;
  border-radius: 4px;
}

/* ==========================================================================
   LIGHT MODE OVERRIDES FOR PHONE MOCKUP (Foto 2)
   ========================================================================== */

.real-phone-frame.light-theme {
  background: #f8fafc;
  border-color: #cbd5e1;
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.15),
    0 0 30px rgba(37, 99, 235, 0.1),
    inset 0 1px 1px #ffffff;
}

.real-phone-frame.light-theme .phone-time {
  color: #0f172a;
}

.real-phone-frame.light-theme .phone-status-icons {
  color: #475569;
}

.real-phone-frame.light-theme .phone-battery {
  border-color: #475569;
}

.real-phone-frame.light-theme .real-header-addr {
  color: #0f172a;
}

.real-phone-frame.light-theme .real-icon-btn {
  background: #ffffff;
  border-color: #e2e8f0;
  color: #475569;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.real-phone-frame.light-theme .real-icon-btn:hover {
  background: #f1f5f9;
  color: #0f172a;
}

.real-phone-frame.light-theme .real-balance-card {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 10px 25px -8px rgba(0, 0, 0, 0.08);
}

.real-phone-frame.light-theme .pill-addr {
  background: #f1f5f9;
  border-color: #e2e8f0;
  color: #475569;
}

.real-phone-frame.light-theme .pill-gas {
  background: rgba(0, 208, 146, 0.1);
  border-color: rgba(0, 208, 146, 0.3);
  color: #047857;
}

.real-phone-frame.light-theme .real-hero-balance .balance-val {
  color: #0f172a;
}

.real-phone-frame.light-theme .hero-circle-btn.receive {
  background: #f1f5f9;
  border-color: #e2e8f0;
  color: #0f172a;
}

.real-phone-frame.light-theme .hero-btn-label {
  color: #64748b;
}

.real-phone-frame.light-theme .section-micro-title {
  color: #0f172a;
}

.real-phone-frame.light-theme .real-asset-row {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
}

.real-phone-frame.light-theme .real-asset-row:hover {
  background: #f8fafc;
  border-color: #93c5fd;
}

.real-phone-frame.light-theme .asset-name-title {
  color: #0f172a;
}

.real-phone-frame.light-theme .asset-num-val {
  color: #0f172a;
}

.real-phone-frame.light-theme .real-activity-card {
  background: #ffffff;
  border-color: rgba(0, 208, 146, 0.4);
  box-shadow: 0 4px 12px rgba(0, 208, 146, 0.06);
}

.real-phone-frame.light-theme .activity-title {
  color: #0f172a;
}

.real-phone-frame.light-theme .real-bottom-nav {
  background: #ffffff;
  border-top-color: #e2e8f0;
}

.real-phone-frame.light-theme .real-bottom-nav .nav-item {
  color: #64748b;
}

.real-phone-frame.light-theme .real-bottom-nav .nav-item.active {
  color: #2563eb;
}

/* Light mode for Send, POS & History screens */
.real-phone-frame.light-theme .send-header-title,
.real-phone-frame.light-theme .pos-brand-name,
.real-phone-frame.light-theme .history-title {
  color: #0f172a;
}

.real-phone-frame.light-theme .send-section-box,
.real-phone-frame.light-theme .pos-keypad-amount-box,
.real-phone-frame.light-theme .h-metric-card,
.real-phone-frame.light-theme .history-item-card {
  background: #ffffff;
  border-color: #e2e8f0;
}

.real-phone-frame.light-theme .send-box-label {
  color: #0f172a;
}

.real-phone-frame.light-theme .send-input-wrap,
.real-phone-frame.light-theme .send-amount-input-wrap,
.real-phone-frame.light-theme .pos-memo-input-wrap input {
  background: #f1f5f9;
  border-color: #e2e8f0;
  color: #0f172a;
}

.real-phone-frame.light-theme .send-input-wrap input,
.real-phone-frame.light-theme .send-amount-num {
  color: #0f172a;
}

.real-phone-frame.light-theme .key-btn,
.real-phone-frame.light-theme .key-btn-action {
  background: #ffffff;
  border-color: #e2e8f0;
  color: #0f172a;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.real-phone-frame.light-theme .key-btn:hover {
  background: #f1f5f9;
}

.real-phone-frame.light-theme .pos-big-num,
.real-phone-frame.light-theme .h-metric-val.neutral,
.real-phone-frame.light-theme .h-name {
  color: #0f172a;
}

/* ==========================================================================
   VIEW 4: RECEIPT MODAL (Foto 3 - Transfer Received)
   ========================================================================== */

.receipt-modal-view {
  background: #0d1322;
  border-radius: 20px;
  border: 1px solid rgba(0, 208, 146, 0.3);
  padding: 12px;
  box-shadow: 0 0 25px rgba(0, 208, 146, 0.15);
}

.receipt-sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.receipt-pill-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
}

.receipt-mini-circle {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(0, 208, 146, 0.15);
  border: 1px solid #00d092;
  display: flex;
  align-items: center;
  justify-content: center;
}

.receipt-close-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition);
}

.receipt-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.receipt-inner-card {
  background: #111728;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 14px;
  text-align: center;
  margin-bottom: 12px;
}

.receipt-token-badge-large {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #1d4ed8;
  border: 2px solid #3b82f6;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}

.receipt-amount-hero {
  font-size: 2rem;
  font-weight: 800;
  color: #00d092;
  line-height: 1.1;
  margin-bottom: 2px;
}

.receipt-token-sub {
  font-size: 0.78rem;
  color: #94a3b8;
  margin-bottom: 8px;
}

.receipt-verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 208, 146, 0.1);
  border: 1px solid rgba(0, 208, 146, 0.4);
  color: #00d092;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}

.receipt-details-table {
  background: #111728;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 10px 12px;
  margin-bottom: 12px;
}

.receipt-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.74rem;
}

.receipt-row:last-child {
  border-bottom: none;
}

.r-label {
  color: #64748b;
}

.r-val-copy {
  display: flex;
  align-items: center;
  gap: 6px;
}

.r-link-blue {
  color: #3b82f6;
  font-weight: 700;
}

.r-mono {
  font-family: var(--font-mono);
  color: #ffffff;
}

.r-val-static {
  color: #ffffff;
  font-weight: 500;
}

.r-val-net {
  color: #ffffff;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn-r-copy {
  color: #64748b;
  padding: 2px;
  display: flex;
  align-items: center;
  transition: color var(--transition);
}

.btn-r-copy:hover {
  color: #ffffff;
}

.receipt-actions-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.btn-receipt-explorer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #00d092;
  color: #06241a;
  font-size: 0.85rem;
  font-weight: 800;
  padding: 10px;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 208, 146, 0.4);
  transition: all var(--transition);
}

.btn-receipt-explorer:hover {
  background: #05f0aa;
  transform: translateY(-1px);
}

.btn-receipt-share {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #141b2e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 8px;
  border-radius: 10px;
  transition: all var(--transition);
}

.btn-receipt-share:hover {
  background: #1e2842;
}

/* ==========================================================================
   BOTTOM NAVIGATION BAR (5 Tabs)
   ========================================================================== */

.real-bottom-nav {
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  background: rgba(8, 10, 20, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  margin: 0 -14px 0;
  padding: 8px 6px 12px;
  position: relative;
  z-index: 10;
}

.real-bottom-nav .nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: #4b5674;
  font-size: 0.63rem;
  font-weight: 700;
  flex: 1;
  transition: all 0.18s ease;
  padding: 2px 0;
  letter-spacing: 0.3px;
}

.real-bottom-nav .nav-item.active,
.real-bottom-nav .nav-item:hover {
  color: #3b82f6;
}

.real-bottom-nav .nav-item.active svg,
.real-bottom-nav .nav-item:hover svg {
  filter: drop-shadow(0 0 4px rgba(59,130,246,0.6));
}

.nav-scan-floating-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  margin-top: -20px;
  flex: 1;
}

.nav-scan-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(145deg, #2563eb, #1d4ed8);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 
    0 0 20px rgba(37, 99, 235, 0.65),
    inset 0 1px 2px rgba(255, 255, 255, 0.3);
  transition: all 0.18s ease;
  animation: scanBtnGlow 3s ease-in-out infinite;
}

@keyframes scanBtnGlow {
  0%, 100% { box-shadow: 0 0 16px rgba(37,99,235,0.5), inset 0 1px 2px rgba(255,255,255,0.3); }
  50%       { box-shadow: 0 0 32px rgba(37,99,235,0.9), 0 0 48px rgba(37,99,235,0.3), inset 0 1px 2px rgba(255,255,255,0.3); }
}

.nav-scan-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 0 32px rgba(37, 99, 235, 0.95), 0 0 60px rgba(37,99,235,0.4);
}

.scan-label {
  font-size: 0.63rem;
  font-weight: 700;
  color: #3b82f6;
  letter-spacing: 0.3px;
}

.pos-nav-icon-wrap {
  position: relative;
  display: inline-block;
}

.nav-pos-badge {
  position: absolute;
  top: -4px;
  right: -8px;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-size: 0.52rem;
  font-weight: 800;
  padding: 1px 3px;
  border-radius: 3px;
  line-height: 1;
  box-shadow: 0 1px 4px rgba(37,99,235,0.5);
}

.real-device-toast {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  background: rgba(9, 17, 40, 0.96);
  border: 1px solid rgba(0, 208, 146, 0.6);
  color: #ffffff;
  border-radius: 10px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.7), 0 0 12px rgba(0,208,146,0.15);
  transform: translateY(-70px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 50;
  backdrop-filter: blur(8px);
}

.real-device-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   SHOWCASE SECTION STYLES
   ========================================================================== */

.showcase-section {
  padding: 70px 0;
  background: linear-gradient(180deg, rgba(9, 10, 15, 0) 0%, rgba(16, 22, 38, 0.4) 50%, rgba(9, 10, 15, 0) 100%);
}

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

.showcase-feature-card {
  background: #0f1524;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

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

.showcase-feature-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.7);
}

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

.showcase-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.showcase-badge-pill {
  font-size: 0.72rem;
  font-weight: 800;
  color: #3b82f6;
  background: rgba(37, 99, 235, 0.12);
  border: 1px solid rgba(37, 99, 235, 0.3);
  padding: 3px 8px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.showcase-badge-pill.blue {
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border-color: rgba(56, 189, 248, 0.3);
}

.showcase-badge-pill.green {
  color: #00d092;
  background: rgba(0, 208, 146, 0.12);
  border-color: rgba(0, 208, 146, 0.3);
}

.showcase-pill-sub {
  font-size: 0.75rem;
  color: #64748b;
  font-weight: 600;
}

.showcase-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}

.showcase-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.showcase-token-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.s-pill {
  font-size: 0.72rem;
  font-weight: 600;
  color: #cbd5e1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 3px 8px;
  border-radius: 6px;
}

.s-pill.react {
  color: #3b82f6;
  border-color: rgba(59, 130, 246, 0.3);
}

.s-pill.usdt {
  color: #00d092;
  border-color: rgba(0, 208, 146, 0.3);
}

.s-pill.xpl {
  color: #38bdf8;
  border-color: rgba(56, 189, 248, 0.3);
}

.s-pill.green {
  color: #00d092;
  border-color: rgba(0, 208, 146, 0.3);
}

.showcase-action-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #3b82f6;
  transition: gap var(--transition);
}

.showcase-feature-card:hover .showcase-action-link {
  gap: 10px;
  color: #60a5fa;
}

/* ==========================================================================
   METRICS SECTION
   ========================================================================== */

.metrics-section {
  padding: 40px 0 60px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.metric-box {
  padding: 16px;
  border-left: 2px solid var(--blue);
}

.metric-number {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
}

.metric-desc {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* ==========================================================================
   SECTION TITLE WRAPPER
   ========================================================================== */

.section-title-wrap {
  margin-bottom: 44px;
}

.section-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--blue-light);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
  display: block;
}

.section-heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
}

/* ==========================================================================
   FEATURES SECTION
   ========================================================================== */

.features-section {
  padding: 80px 0;
}

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

.feature-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
}

.feature-card:hover {
  border-color: var(--border-hover);
  background: var(--bg-surface-hover);
}

.feature-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-soft);
  color: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   POS TERMINAL SECTION
   ========================================================================== */

.pos-section {
  padding: 80px 0;
}

.pos-card-container {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.pos-headline {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.pos-subtext {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.pos-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.pos-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #ffffff;
}

.pos-cta-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid var(--border);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--border-hover);
}

/* POS Receipt Card */
.pos-receipt-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
}

.receipt-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.receipt-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dim);
}

.receipt-status {
  font-size: 0.75rem;
  font-weight: 700;
  color: #10b981;
}

.receipt-amount-row {
  text-align: center;
  margin-bottom: 18px;
}

.receipt-amount-val {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
}

.receipt-fiat-val {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.receipt-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.85rem;
}

.receipt-item {
  display: flex;
  justify-content: space-between;
  color: var(--text-muted);
}

.receipt-item strong, .receipt-item span:last-child {
  color: #ffffff;
}

.text-blue {
  color: var(--blue-light) !important;
}

.receipt-hash {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--text-dim);
}

/* ==========================================================================
   TECHNICAL SPECS SECTION
   ========================================================================== */

.specs-section {
  padding: 80px 0;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.spec-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.spec-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.spec-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.spec-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.88rem;
}

.spec-key {
  color: var(--text-muted);
}

.spec-val {
  font-weight: 600;
  color: #ffffff;
}

.spec-val-copy {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-copy-small {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue-light);
  background: var(--blue-soft);
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  transition: all var(--transition);
}

.btn-copy-small:hover {
  background: var(--blue);
  color: #ffffff;
}

.spec-link {
  color: var(--blue-light);
  text-decoration: underline;
}

.contract-box {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
  margin-bottom: 16px;
}

.contract-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}

.contract-val-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.contract-val-wrap code {
  font-size: 0.8rem;
  word-break: break-all;
  background: transparent;
  border: none;
  padding: 0;
  color: #ffffff;
}

.btn-copy-contract {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--blue-soft);
  color: var(--blue-light);
  border: 1px solid rgba(37, 99, 235, 0.3);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  flex-shrink: 0;
  transition: all var(--transition);
}

.btn-copy-contract:hover {
  background: var(--blue);
  color: #ffffff;
}

.contract-meta-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.meta-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.meta-item strong {
  display: block;
  color: #ffffff;
  margin-top: 2px;
}

.btn-explorer-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #ffffff;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.btn-explorer-link:hover {
  border-color: var(--blue);
  color: var(--blue-light);
}

/* ==========================================================================
   DEVELOPERS SECTION
   ========================================================================== */

.dev-section {
  padding: 80px 0;
}

.dev-card {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
}

.dev-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.dev-heading {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 4px;
}

.dev-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.btn-github-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #ffffff;
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.btn-github-link:hover {
  background: #ffffff;
  color: #000000;
}

.terminal-box {
  background: #000000;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 20px;
}

.terminal-header {
  background: #0d0f14;
  padding: 8px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.term-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
}

.term-copy {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--blue-light);
}

.terminal-code {
  padding: 16px;
  font-family: var(--font-mono);
  font-size: 0.88rem;
  line-height: 1.7;
  color: #ffffff;
  overflow-x: auto;
}

.c-dim { color: var(--text-dim); font-style: italic; }
.c-blue { color: var(--blue-light); font-weight: 700; }

.tech-pills-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 999px;
}

/* ==========================================================================
   FAQ SECTION
   ========================================================================== */

.faq-section {
  padding: 80px 0;
}

.faq-accordion {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-btn {
  width: 100%;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  text-align: left;
}

.faq-icon {
  font-size: 1.2rem;
  color: var(--blue-light);
  transition: transform var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease, padding 0.25s ease;
  padding: 0 20px;
}

.faq-item.open .faq-body {
  max-height: 180px;
  padding: 0 20px 18px 20px;
}

.faq-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-body a {
  color: var(--blue-light);
  text-decoration: underline;
}

/* ==========================================================================
   BOTTOM CTA SECTION
   ========================================================================== */

.bottom-cta-section {
  padding: 60px 0 80px;
}

.cta-box {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  text-align: center;
}

.cta-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.cta-desc {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  border-top: 1px solid var(--border);
  background: #050608;
  padding: 60px 0 20px;
}

.footer-layout {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.footer-logo-img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: contain;
}

.footer-brand strong {
  color: var(--blue-light);
}

.footer-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 280px;
  margin-bottom: 12px;
}

.footer-dev {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-dev a {
  color: var(--blue-light);
}

.footer-col h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  font-size: 0.8rem;
  color: var(--text-dim);
}

.btn-top {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
}

.btn-top:hover {
  color: #ffffff;
}

/* ==========================================================================
   MODAL & TOAST
   ========================================================================== */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  width: 100%;
  max-width: 460px;
  background: var(--bg-surface);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.4rem;
  color: var(--text-muted);
  line-height: 1;
}

.modal-close:hover {
  color: #ffffff;
}

.modal-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.modal-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.modal-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-opt {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px;
  transition: all var(--transition);
}

.modal-opt:hover {
  border-color: var(--blue);
  background: var(--bg-surface-hover);
}

.opt-icon {
  width: 36px;
  height: 36px;
  background: var(--blue-soft);
  color: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.opt-info {
  display: flex;
  flex-direction: column;
}

.opt-info strong {
  font-size: 0.9rem;
  color: #ffffff;
}

.opt-info span {
  font-size: 0.78rem;
  color: var(--text-dim);
}

/* Toast */
.toast-popup {
  position: fixed;
  bottom: 28px;
  right: 24px;
  background: rgba(10, 15, 30, 0.92);
  color: #e2e8f0;
  font-size: 0.84rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid rgba(59, 130, 246, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.7), 0 0 16px rgba(37,99,235,0.15);
  z-index: 2000;
  opacity: 0;
  transform: translateY(12px) scale(0.97);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  backdrop-filter: blur(12px);
  max-width: 360px;
}

.toast-popup.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ==========================================================================
   ANIMATIONS & RESPONSIVE
   ========================================================================== */

.fade-in-up {
  opacity: 0;
  transform: translateY(16px);
  animation: fadeInUp 0.6s ease forwards;
}

.hero-mockup-col.fade-in-up {
  animation-delay: 0.15s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   APP SHOWCASE SECTION STYLES
   ========================================================================== */

.showcase-section {
  padding: 80px 0;
  background: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.showcase-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.showcase-feature-card {
  background: #0d1322;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 24px 20px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.showcase-feature-card:hover {
  background: #121a30;
  border-color: rgba(37, 99, 235, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(37, 99, 235, 0.15);
}

.showcase-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.showcase-badge-pill {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  color: #38bdf8;
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  padding: 3px 8px;
  border-radius: 6px;
}

.showcase-badge-pill.blue {
  color: #60a5fa;
  background: rgba(37, 99, 235, 0.15);
  border-color: rgba(37, 99, 235, 0.4);
}

.showcase-badge-pill.green {
  color: #00d092;
  background: rgba(0, 208, 146, 0.15);
  border-color: rgba(0, 208, 146, 0.4);
}

.showcase-pill-sub {
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 600;
}

.showcase-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 8px;
}

.showcase-card-desc {
  font-size: 0.84rem;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 16px;
  flex-grow: 1;
}

.showcase-token-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.s-pill {
  font-size: 0.7rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  padding: 3px 8px;
  border-radius: 6px;
}

.s-pill.react {
  color: #3b82f6;
  border-color: rgba(37, 99, 235, 0.3);
  background: rgba(37, 99, 235, 0.1);
}

.s-pill.usdt {
  color: #00d092;
  border-color: rgba(0, 208, 146, 0.3);
  background: rgba(0, 208, 146, 0.1);
}

.s-pill.xpl {
  color: #38bdf8;
  border-color: rgba(56, 189, 248, 0.3);
  background: rgba(56, 189, 248, 0.1);
}

.s-pill.green {
  color: #00d092;
  border-color: rgba(0, 208, 146, 0.3);
  background: rgba(0, 208, 146, 0.1);
}

.showcase-action-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #3b82f6;
  transition: gap var(--transition);
}

.showcase-feature-card:hover .showcase-action-link {
  gap: 10px;
  color: #60a5fa;
}

@media (max-width: 1024px) {
  .showcase-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .showcase-cards-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-text-col {
    align-items: center;
    text-align: center;
  }
  .hero-lead {
    margin: 0 auto 30px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-specs-inline {
    justify-content: center;
  }
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pos-card-container {
    grid-template-columns: 1fr;
    padding: 32px;
  }
  .specs-grid {
    grid-template-columns: 1fr;
  }
  .footer-layout {
    grid-template-columns: 1fr 1fr;
  }
  .metrics-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .nav-links {
    display: none;
  }
  .hero-headline {
    font-size: 2.2rem;
  }
  .features-grid {
    grid-template-columns: 1fr;
  }
  .metrics-grid {
    grid-template-columns: 1fr;
  }
  .footer-layout {
    grid-template-columns: 1fr;
  }
  .dev-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .btn-nav-github span {
    display: none;
  }
  .btn-nav-github {
    padding: 7px 9px;
  }
  .nav-cta-group {
    gap: 8px;
  }
  .btn-primary {
    padding: 7px 12px;
    font-size: 0.82rem;
  }
}
