/* ==========================================================================
   MMOGROW.COM - ECOSYSTEM PORTAL DESIGN SYSTEM
   THEME: VIBRANT ORANGE & WARM WHITE MESH WITH TACTILE 3D FLOATING BUTTONS
   ========================================================================== */

:root {
  /* Brand Orange & Blue Accents */
  --primary-50: #FFF7ED;
  --primary-100: #FFEDD5;
  --primary-200: #FED7AA;
  --primary-300: #FDBA74;
  --primary-400: #FB923C;
  --primary-500: #FF6B00; /* Main Vibrant Orange */
  --primary-600: #EA580C;
  --primary-700: #C2410C;
  --primary-800: #9A3412;
  --primary-900: #7C2D12;
  
  --brand-blue: #0066FF;
  --brand-blue-dark: #0044CC;
  --brand-dark: #121826;
  
  --primary-glow: rgba(255, 107, 0, 0.45);
  --primary-glow-subtle: rgba(255, 107, 0, 0.15);

  /* Background Warm White-Orange Mesh */
  --bg-main: #FFFDF9;
  --bg-subtle: #FFF5EB;
  --bg-card: #FFFFFF;
  --bg-card-hover: #FFFDFB;
  --bg-glass: rgba(255, 255, 255, 0.92);

  /* Text & Accents */
  --text-dark: #121826;
  --text-body: #475467;
  --text-muted: #667085;
  --text-light: #98A2B3;
  --text-white: #FFFFFF;

  /* Accent status colors */
  --success: #10B981;
  --success-bg: #ECFDF5;
  --warning: #F59E0B;
  --info: #0EA5E9;
  --purple: #8B5CF6;

  /* 3D Button Shadows (The Floating 3D Tactile Engine) */
  --btn-3d-primary-shadow: 0 6px 0 #C2410C, 0 12px 24px rgba(255, 107, 0, 0.35);
  --btn-3d-primary-shadow-hover: 0 8px 0 #C2410C, 0 16px 30px rgba(255, 107, 0, 0.45);
  --btn-3d-primary-shadow-active: 0 1px 0 #C2410C, 0 4px 10px rgba(255, 107, 0, 0.25);

  --btn-3d-secondary-shadow: 0 6px 0 #D1D5DB, 0 10px 20px rgba(0, 0, 0, 0.06);
  --btn-3d-secondary-shadow-hover: 0 8px 0 #9CA3AF, 0 14px 25px rgba(255, 107, 0, 0.15);
  --btn-3d-secondary-shadow-active: 0 1px 0 #9CA3AF, 0 3px 8px rgba(0, 0, 0, 0.05);

  --btn-3d-blue-shadow: 0 6px 0 #0044CC, 0 12px 24px rgba(0, 102, 255, 0.35);
  --btn-3d-blue-shadow-hover: 0 8px 0 #0044CC, 0 16px 30px rgba(0, 102, 255, 0.45);

  --btn-3d-dark-shadow: 0 6px 0 #0F172A, 0 12px 24px rgba(15, 23, 42, 0.3);

  /* Borders & Radii */
  --border-subtle: rgba(255, 107, 0, 0.12);
  --border-card: rgba(255, 107, 0, 0.18);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-bounce: all 0.22s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-smooth: all 0.3s ease;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-main);
  line-height: 1.6;
  overflow-x: hidden;
}

body {
  position: relative;
  min-height: 100vh;
  background: 
    radial-gradient(1200px 700px at 50% -5%, rgba(255, 107, 0, 0.15) 0%, transparent 65%),
    radial-gradient(1000px 700px at -10% 25%, rgba(255, 138, 0, 0.1) 0%, transparent 50%),
    radial-gradient(1100px 800px at 105% 45%, rgba(0, 102, 255, 0.08) 0%, transparent 55%),
    radial-gradient(900px 600px at 50% 85%, rgba(255, 107, 0, 0.08) 0%, transparent 55%),
    linear-gradient(180deg, #FFFDFB 0%, #FFF6EE 35%, #FFFDFB 100%);
  background-attachment: fixed;
}

/* Background animated glow orbs */
.bg-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.65;
  animation: floatSlow 12s ease-in-out infinite alternate;
}

.bg-glow-1 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.22) 0%, rgba(255, 170, 77, 0.08) 70%, transparent 100%);
  top: 2%;
  right: 8%;
}

.bg-glow-2 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 149, 0, 0.16) 0%, rgba(255, 200, 120, 0.05) 70%, transparent 100%);
  top: 35%;
  left: -5%;
  animation-duration: 16s;
}

.bg-glow-3 {
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.12) 0%, transparent 70%);
  top: 65%;
  right: -5%;
  animation-duration: 14s;
}

@keyframes floatSlow {
  0% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-25px) scale(1.06); }
  100% { transform: translateY(20px) scale(0.96); }
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   3D TACTILE FLOATING BUTTONS (THE HERO FEATURE)
   ========================================================================== */

.btn-3d {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  outline: none;
  user-select: none;
  white-space: nowrap;
  transition: var(--transition-bounce);
  transform: translateY(0);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.3px;
}

.btn-3d:active {
  transform: translateY(5px) !important;
}

/* 1. Primary Orange 3D Button */
.btn-3d-primary {
  background: linear-gradient(180deg, #FFA24C 0%, #FF6B00 45%, #E65100 100%);
  color: #FFFFFF;
  box-shadow: var(--btn-3d-primary-shadow);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-3d-primary:hover {
  background: linear-gradient(180deg, #FFB264 0%, #FF770E 45%, #EF5B00 100%);
  transform: translateY(-3px);
  box-shadow: var(--btn-3d-primary-shadow-hover);
  color: #FFFFFF;
}

.btn-3d-primary:active {
  box-shadow: var(--btn-3d-primary-shadow-active) !important;
}

/* 2. Secondary White-Orange 3D Button */
.btn-3d-secondary {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF6EE 100%);
  color: var(--primary-600);
  border: 1px solid rgba(255, 107, 0, 0.28);
  border-top: 1px solid #FFFFFF;
  box-shadow: var(--btn-3d-secondary-shadow);
  text-shadow: none;
}

.btn-3d-secondary:hover {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFEEDD 100%);
  border-color: var(--primary-500);
  color: var(--primary-700);
  transform: translateY(-3px);
  box-shadow: var(--btn-3d-secondary-shadow-hover);
}

.btn-3d-secondary:active {
  box-shadow: var(--btn-3d-secondary-shadow-active) !important;
}

/* 3. Blue Accent 3D Button */
.btn-3d-blue {
  background: linear-gradient(180deg, #38BDF8 0%, #0066FF 50%, #0044CC 100%);
  color: #FFFFFF;
  box-shadow: var(--btn-3d-blue-shadow);
  border-top: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-3d-blue:hover {
  background: linear-gradient(180deg, #60A5FA 0%, #1D4ED8 100%);
  transform: translateY(-3px);
  box-shadow: var(--btn-3d-blue-shadow-hover);
}

/* 4. Large Action 3D Button (Truy Cập Ngay) */
.btn-3d-cta {
  width: 100%;
  padding: 16px 24px;
  font-size: 1.15rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, #FFA24C 0%, #FF6B00 50%, #D84200 100%);
  color: #FFFFFF;
  box-shadow: 0 7px 0 #A83300, 0 14px 28px rgba(255, 107, 0, 0.4);
  border-top: 1px solid rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.btn-3d-cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 9px 0 #A83300, 0 18px 36px rgba(255, 107, 0, 0.5);
  background: linear-gradient(180deg, #FFB264 0%, #FF770E 50%, #E64A00 100%);
}

.btn-3d-cta:active {
  transform: translateY(6px) !important;
  box-shadow: 0 1px 0 #A83300, 0 4px 10px rgba(255, 107, 0, 0.3) !important;
}

.btn-3d-sm {
  padding: 9px 20px;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 0 #C2410C, 0 8px 16px rgba(255, 107, 0, 0.25);
}
.btn-3d-sm:hover {
  box-shadow: 0 6px 0 #C2410C, 0 12px 20px rgba(255, 107, 0, 0.35);
}
.btn-3d-sm:active {
  transform: translateY(3px) !important;
  box-shadow: 0 1px 0 #C2410C, 0 3px 6px rgba(255, 107, 0, 0.2) !important;
}

.btn-pill {
  border-radius: var(--radius-full);
}

/* Floating Action Button (FAB) */
.floating-dock {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  z-index: 1000;
}

.support-bubble-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.support-speech-bubble {
  position: absolute;
  right: 74px;
  background: #FFFFFF;
  border: 2px solid var(--primary-500);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  box-shadow: 
    0 10px 25px rgba(255, 107, 0, 0.25),
    0 4px 10px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-dark);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateX(15px) scale(0.9);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 1001;
  user-select: none;
}

.support-speech-bubble::after {
  content: '';
  position: absolute;
  right: -8px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 8px solid var(--primary-500);
}

.support-speech-bubble.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(0) scale(1);
}

.support-speech-bubble:hover {
  transform: translateX(-4px) scale(1.03);
  box-shadow: 0 14px 30px rgba(255, 107, 0, 0.35);
}

.bubble-wave {
  display: inline-block;
  animation: waveHand 1.8s infinite;
  transform-origin: 70% 70%;
  font-size: 1.15rem;
}

@keyframes waveHand {
  0% { transform: rotate(0deg); }
  10% { transform: rotate(14deg); }
  20% { transform: rotate(-8deg); }
  30% { transform: rotate(14deg); }
  40% { transform: rotate(-4deg); }
  50% { transform: rotate(10deg); }
  60% { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}

.bubble-text {
  color: var(--text-dark);
  letter-spacing: 0.2px;
}

.bubble-close {
  background: none;
  border: none;
  color: #98A2B3;
  font-size: 1.15rem;
  line-height: 1;
  margin-left: 4px;
  cursor: pointer;
  padding: 2px 5px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.bubble-close:hover {
  color: #DC2626;
  background: #FEE2E2;
}

.btn-fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #FF8800 0%, #FF5100 100%);
  color: #fff;
  border: 2px solid #FFF;
  box-shadow: 0 6px 0 #A83300, 0 14px 28px rgba(255, 81, 0, 0.45);
  cursor: pointer;
  transition: var(--transition-bounce);
  font-size: 1.5rem;
  position: relative;
}

.btn-fab:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 0 #A83300, 0 18px 34px rgba(255, 81, 0, 0.55);
}

.btn-fab:active {
  transform: translateY(5px) scale(0.98);
  box-shadow: 0 1px 0 #A83300, 0 4px 10px rgba(255, 81, 0, 0.3);
}

.fab-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: #10B981;
  color: white;
  font-size: 0.65rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 10px;
  border: 2px solid white;
  animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
  0% { transform: scale(1); }
  50% { transform: scale(1.18); }
  100% { transform: scale(1); }
}

.btn-scroll-top {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--primary-600);
  border: 1px solid rgba(255, 107, 0, 0.25);
  box-shadow: 0 4px 0 #D1D5DB, 0 8px 18px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-bounce);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
}

.btn-scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.btn-scroll-top:hover {
  transform: translateY(-3px);
  color: var(--primary-500);
  box-shadow: 0 6px 0 #9CA3AF, 0 12px 22px rgba(255, 107, 0, 0.2);
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */

.navbar {
  position: sticky;
  top: 14px;
  z-index: 900;
  margin: 14px auto 0;
  padding: 0 24px;
}

.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 24px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 2px solid rgba(255, 107, 0, 0.2);
  border-radius: var(--radius-xl);
  box-shadow: 
    0 12px 32px -6px rgba(255, 107, 0, 0.1),
    0 4px 12px rgba(0, 0, 0, 0.03),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: var(--transition-smooth);
}

/* MMOGROW Official Brand Logo Image */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-img-logo {
  height: 48px;
  max-width: 220px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0, 102, 255, 0.15));
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: block;
}

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

.footer-img-logo {
  height: 52px;
  margin-bottom: 8px;
}

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

.nav-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-body);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  transition: var(--transition-smooth);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-600);
  background: var(--primary-50);
}

.nav-status-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ECFDF5;
  border: 1px solid rgba(16, 185, 129, 0.35);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 800;
  color: #065F46;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--success);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.3);
  animation: liveBlink 1.5s infinite;
}

@keyframes liveBlink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

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

.nav-toggle-btn {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-dark);
  cursor: pointer;
}

/* ==========================================================================
   FRONT-AND-CENTER ECOSYSTEM PORTAL (ABOVE-THE-FOLD SHOWCASE)
   ========================================================================== */

.portal-hero-section {
  padding: 20px 0 40px;
  position: relative;
}

.portal-hero-header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 20px;
}

.portal-brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #FFF7ED 0%, #FFEDD5 100%);
  border: 1.5px solid rgba(255, 107, 0, 0.35);
  padding: 5px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
  box-shadow: 0 4px 14px rgba(255, 107, 0, 0.1);
}

.portal-brand-badge .pill-hot {
  background: var(--primary-500);
  color: white;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 6px;
  text-transform: uppercase;
}

.portal-brand-badge .pill-txt {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-900);
}

.portal-main-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.portal-main-title .gradient-orange {
  background: linear-gradient(135deg, #FF6B00 0%, #FF3D00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.portal-main-title .blue-accent {
  color: #0066FF;
}

.portal-lead-text {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto;
}

/* Ecosystem Notice Ribbon */
.portal-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 107, 0, 0.2);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(255, 107, 0, 0.06);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.ribbon-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-dark);
}

.ribbon-item i {
  color: var(--primary-500);
  font-size: 0.95rem;
}

/* ==========================================================================
   PRIMARY ECOSYSTEM WEB CARDS (4 COLUMNS / 2x2 LUXURY CARDS)
   ========================================================================== */

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

.portal-card {
  position: relative;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(24px);
  border: 2px solid rgba(255, 107, 0, 0.22);
  border-radius: var(--radius-lg);
  padding: 22px 18px;
  box-shadow: 
    0 16px 36px -8px rgba(255, 107, 0, 0.12),
    0 4px 12px rgba(0, 0, 0, 0.02),
    inset 0 2px 0 #FFFFFF;
  transition: var(--transition-bounce);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.portal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #FF6B00, #FFA24C, #FF3D00);
  opacity: 0;
  transition: var(--transition-smooth);
}

.portal-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-500);
  box-shadow: 
    0 24px 50px -10px rgba(255, 107, 0, 0.25),
    0 8px 20px rgba(0, 0, 0, 0.05),
    inset 0 2px 0 #FFFFFF;
}

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

/* Specific Card Highlight Themes */
.card-proxy:hover { border-color: #FF6B00; }
.card-vps:hover { border-color: #0066FF; }
.card-smm:hover { border-color: #8B5CF6; }
.card-tools:hover { border-color: #10B981; }

.portal-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.portal-icon-3d {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: white;
}

.icon-orange {
  background: linear-gradient(135deg, #FFA24C 0%, #FF5100 100%);
  box-shadow: 0 5px 0 #C2410C, 0 10px 20px rgba(255, 107, 0, 0.35);
}

.icon-blue {
  background: linear-gradient(135deg, #38BDF8 0%, #0066FF 100%);
  box-shadow: 0 5px 0 #0044CC, 0 10px 20px rgba(0, 102, 255, 0.35);
}

.icon-purple {
  background: linear-gradient(135deg, #C084FC 0%, #7C3AED 100%);
  box-shadow: 0 5px 0 #6D28D9, 0 10px 20px rgba(124, 58, 237, 0.35);
}

.icon-green {
  background: linear-gradient(135deg, #34D399 0%, #059669 100%);
  box-shadow: 0 5px 0 #047857, 0 10px 20px rgba(5, 150, 105, 0.35);
}

.card-status-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.72rem;
  font-weight: 800;
  color: #059669;
  background: rgba(16, 185, 129, 0.12);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(16, 185, 129, 0.25);
}

.portal-web-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.2;
}

.portal-domain-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-600);
  background: #FFF7ED;
  border: 1px dashed rgba(255, 107, 0, 0.35);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
}

.portal-card-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.55;
  margin-bottom: 18px;
  min-height: 58px;
}

.portal-feature-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px dashed rgba(255, 107, 0, 0.2);
}

.portal-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #344054;
}

.portal-feature-item i {
  color: var(--primary-500);
  font-size: 0.85rem;
}

.portal-pricing-box {
  margin-bottom: 18px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.pricing-title {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.pricing-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--primary-600);
}

/* ==========================================================================
   UNIFIED WALLET & SYNC (ECOSYSTEM ADVANTAGES)
   ========================================================================== */

.section-padding {
  padding: 80px 0;
  position: relative;
}

.ecosystem-banner {
  background: linear-gradient(135deg, #FF6B00 0%, #EA580C 50%, #C2410C 100%);
  border-radius: var(--radius-xl);
  padding: 50px 48px;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 48px -12px rgba(234, 88, 12, 0.4);
}

.ecosystem-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.banner-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.banner-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.banner-desc {
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.92;
  margin-bottom: 28px;
}

.banner-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.banner-feat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
}

.banner-feat-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

.banner-card-visual {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.sync-flow-step {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 0.9rem;
}

.sync-flow-step:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   SERVER STATUS & PING MONITOR
   ========================================================================== */

.status-dashboard-wrap {
  background: #FFFFFF;
  border: 2px solid rgba(255, 107, 0, 0.2);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 16px 40px rgba(255, 107, 0, 0.08);
}

.status-dash-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.dash-heading h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-dark);
}

.dash-heading p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.ping-servers-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.ping-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: var(--bg-main);
  border: 1px solid rgba(255, 107, 0, 0.15);
  transition: var(--transition-bounce);
}

.ping-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-500);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.12);
}

.ping-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.ping-country {
  font-size: 1.3rem;
}

.ping-val {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #059669;
}

.ping-location-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.ping-bar-track {
  width: 100%;
  height: 6px;
  background: #E5E7EB;
  border-radius: 4px;
  overflow: hidden;
  margin-top: 10px;
}

.ping-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #10B981, #34D399);
  border-radius: 4px;
  transition: width 0.5s ease;
}

/* ==========================================================================
   FAQ & REVIEWS
   ========================================================================== */

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: var(--primary-100);
  color: var(--primary-700);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.3rem;
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.6;
}

.faq-wrap {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid rgba(255, 107, 0, 0.18);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item.active {
  border-color: var(--primary-500);
  box-shadow: 0 8px 24px rgba(255, 107, 0, 0.12);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-dark);
}

.faq-question i {
  color: var(--primary-500);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease-out;
  padding: 0 24px;
}

.faq-answer p {
  padding-bottom: 20px;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
}

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

.footer {
  background: linear-gradient(180deg, #FFFFFF 0%, #FFF4E8 100%);
  border-top: 2px solid rgba(255, 107, 0, 0.2);
  padding: 60px 0 30px;
  position: relative;
  z-index: 1;
}

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

.footer-brand p {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  margin: 18px 0 24px;
}

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

.social-btn-3d {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: #FFFFFF;
  border: 1px solid rgba(255, 107, 0, 0.25);
  box-shadow: 0 4px 0 #CBD5E1, 0 6px 12px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-600);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-bounce);
}

.social-btn-3d:hover {
  transform: translateY(-3px);
  background: var(--primary-500);
  color: white;
  border-color: var(--primary-600);
  box-shadow: 0 6px 0 #C2410C, 0 10px 18px rgba(255, 107, 0, 0.3);
}

.footer-col h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 20px;
}

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

.footer-links-list a {
  font-size: 0.9rem;
  color: var(--text-body);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links-list a:hover {
  color: var(--primary-600);
  transform: translateX(4px);
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-body);
}

.contact-item i {
  color: var(--primary-500);
  font-size: 1.1rem;
}

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 107, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  gap: 12px;
}

/* Toast Notifications */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
}

.toast {
  pointer-events: auto;
  background: #FFFFFF;
  border: 2px solid var(--primary-500);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  box-shadow: 0 10px 25px rgba(255, 107, 0, 0.25);
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dark);
  animation: slideInToast 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes slideInToast {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ==========================================================================
   RESPONSIVE DESIGN (TABLETS & MOBILE)
   ========================================================================== */

@media (max-width: 1200px) {
  .ecosystem-grid-showcase {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 1024px) {
  .portal-main-title {
    font-size: 2.6rem;
  }

  .banner-grid {
    grid-template-columns: 1fr;
  }

  .ping-servers-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
    position: absolute;
    top: 70px;
    left: 16px;
    right: 16px;
    background: #FFFFFF;
    border: 1px solid rgba(255, 107, 0, 0.25);
    border-radius: var(--radius-lg);
    padding: 20px;
    flex-direction: column;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.mobile-open {
    display: flex;
  }

  .nav-toggle-btn {
    display: block;
  }

  .portal-main-title {
    font-size: 2.1rem;
  }

  .ecosystem-grid-showcase {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .ecosystem-banner {
    padding: 32px 20px;
  }

  .portal-ribbon {
    flex-direction: column;
    align-items: flex-start;
    border-radius: var(--radius-md);
    gap: 12px;
  }

  .floating-dock {
    bottom: 18px;
    right: 18px;
  }
}
