/* ========================================
   BULK AUTH TOOL - Global Stylesheet
   Dynamic dark theme with dynamic Bulk accents
   ======================================== */

/* === CSS Variables === */
:root {
  --bg: #050914;
  --bg-card: rgba(9, 14, 28, 0.78);
  --bg-card-hover: rgba(14, 22, 42, 0.92);
  --bg-secondary: rgba(20, 29, 52, 0.72);
  --primary: #ff8a1f;
  --primary-hover: #ff6a00;
  --primary-10: rgba(255, 122, 26, 0.1);
  --primary-20: rgba(255, 122, 26, 0.2);
  --primary-30: rgba(255, 122, 26, 0.3);
  --tiger: #ff7a1a;
  --tiger-deep: #ff4d00;
  --tiger-glow: #ffa54d;
  --text: #f7f9ff;
  --text-muted: #a8b3c8;
  --border: rgba(118, 154, 216, 0.16);
  --border-hover: rgba(255, 138, 31, 0.48);
  --destructive: #ef4444;
  --green: #22c55e;
  --orange: #f97316;
  --radius: 8px;
  --radius-sm: 8px;
  --radius-lg: 8px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'Consolas', monospace;
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; background-color: var(--bg); }

body {
  font-family: var(--font);
  background: transparent;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  position: relative;
}

/* === Tiger-stripe animated backdrop === */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(180deg, #070c1b 0%, #080d1d 48%, #050914 100%),
    repeating-linear-gradient(116deg, transparent 0 52px, rgba(255, 138, 31, 0.045) 52px 54px, transparent 54px 118px),
    repeating-linear-gradient(64deg, transparent 0 78px, rgba(75, 145, 255, 0.035) 78px 80px, transparent 80px 160px);
  background-blend-mode: normal, screen, screen;
}

@keyframes tigerDrift {
  0%   { background-position: 0 0, 0 0, 0 0, 0 0; }
  100% { background-position: 0 0, 0 0, 520px 0, -360px 0; }
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* === Container === */
.xst-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* === Typography === */
.xst-primary { color: var(--primary); }
.xst-muted { color: var(--text-muted); }
.xst-green { color: var(--green); }
.xst-red { color: var(--destructive); }
.xst-orange { color: var(--orange); }

h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; }

/* ========================================
   HEADER / NAVBAR
   ======================================== */
.xst-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid var(--border);
  background: rgba(4, 8, 18, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.xst-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.xst-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.xst-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ffbb5f 0%, #ff7a00 55%, #a53100 100%);
  border: 1px solid rgba(255, 190, 104, 0.5);
  color: #120700;
  transition: background var(--transition);
}

.xst-logo:hover .xst-logo-icon {
  background: var(--primary-20);
}

.xst-logo-text {
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0;
}

.xst-nav {
  display: none;
  align-items: center;
  gap: 4px;
}

.xst-nav-link {
  position: relative;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}

.xst-nav-link:hover {
  color: var(--text);
  background: var(--bg-secondary);
}

.xst-nav-link.active {
  color: var(--text);
  background: rgba(255, 138, 31, 0.16);
  border: 1px solid rgba(255, 138, 31, 0.26);
}

.xst-auth-buttons {
  display: none;
  align-items: center;
  gap: 12px;
}

.xst-mobile-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 8px;
}

.xst-mobile-toggle:hover { color: var(--text); }

.xst-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}

.xst-mobile-menu.open { display: flex; }

.xst-mobile-link {
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}

.xst-mobile-link:hover, .xst-mobile-link.active {
  color: var(--primary);
  background: var(--primary-10);
}

.xst-mobile-auth {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

@media (min-width: 768px) {
  .xst-nav { display: flex; }
  .xst-auth-buttons { display: flex; }
  .xst-mobile-toggle { display: none; }
}

/* ========================================
   BUTTONS
   ======================================== */
.xst-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.xst-btn-primary {
  background: linear-gradient(180deg, #ffb258 0%, #ff7a00 54%, #b43a00 100%);
  color: #180a00;
  border: 1px solid rgba(255, 211, 135, 0.72);
  box-shadow: 0 0 0 1px rgba(255, 103, 0, 0.28), 0 12px 30px rgba(255, 99, 0, 0.2);
}

.xst-btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 0 20px rgba(255, 122, 26, 0.3);
}

.xst-btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.xst-btn-outline:hover {
  border-color: var(--primary-30);
  background: var(--primary-10);
}

.xst-btn-ghost {
  background: transparent;
  color: var(--text-muted);
}

.xst-btn-ghost:hover {
  color: var(--text);
  background: var(--bg-secondary);
}

.xst-btn-secondary {
  background: var(--bg-secondary);
  color: var(--text);
  border: 1px solid var(--border);
}

.xst-btn-secondary:hover {
  border-color: var(--border-hover);
}

.xst-btn-lg {
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: var(--radius);
}

.xst-btn-block { width: 100%; }

.xst-btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.xst-btn-whatsapp:hover {
  background: #20b858;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

/* ========================================
   CARDS
   ======================================== */
.xst-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  overflow: hidden;
}

.xst-card:hover {
  border-color: var(--border-hover);
}

.xst-card-content { padding: 24px; }

.xst-card-header {
  padding: 24px 24px 0;
}

.glass-panel {
  background: rgba(17, 24, 39, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--primary-20);
  border-radius: var(--radius-lg);
}

/* ========================================
   INPUTS
   ======================================== */
.xst-input-group { position: relative; }

.xst-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.xst-input {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  padding-left: 42px;
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--text);
  transition: all var(--transition);
  outline: none;
}

.xst-input::placeholder { color: #475569; }

.xst-input:focus {
  border-color: var(--primary-30);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 0 3px var(--primary-10);
}

.xst-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  padding-left: 2px;
}

/* ========================================
   HERO SECTION
   ======================================== */
.xst-hero {
  position: relative;
  min-height: 650px;
  padding: 72px 0 104px;
  overflow: hidden;
  background: url("../img/bulk/hero-bg.jpg") center center / cover no-repeat;
  isolation: isolate;
}

.xst-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(3, 7, 17, 0.94) 0%, rgba(3, 7, 17, 0.74) 35%, rgba(3, 7, 17, 0.28) 68%, rgba(3, 7, 17, 0.18) 100%),
    linear-gradient(180deg, rgba(5, 9, 20, 0.12) 0%, rgba(5, 9, 20, 0.18) 62%, #050914 100%);
}

.xst-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 138, 31, 0.08), transparent 42%),
    repeating-linear-gradient(115deg, transparent 0 72px, rgba(255, 138, 31, 0.08) 72px 73px, transparent 73px 144px);
  mix-blend-mode: screen;
  opacity: 0.72;
}

.xst-hero .xst-container { position: relative; z-index: 1; }

.xst-hero-layout {
  max-width: 1280px;
}

.xst-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--primary-30);
  background: rgba(255, 138, 31, 0.14);
  color: #ffd39a;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 32px;
  box-shadow: 0 0 24px rgba(255, 122, 26, 0.18);
}

.xst-hero h1 {
  max-width: 760px;
  font-size: 4.4rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 16px;
  line-height: 0.95;
  color: #ff9a2d;
  text-shadow:
    0 2px 0 #411400,
    0 5px 18px rgba(255, 94, 0, 0.52),
    0 16px 42px rgba(0, 0, 0, 0.72);
}

.xst-hero-subtitle {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 185, 108, 0.86);
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 20px;
}

.xst-hero-desc {
  font-size: 1.125rem;
  color: #f4f7ff;
  max-width: 610px;
  margin-bottom: 32px;
  line-height: 1.7;
  text-shadow: 0 2px 16px rgba(0,0,0,0.75);
}

.xst-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.xst-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 620px;
  overflow: hidden;
  border: 1px solid rgba(255, 159, 58, 0.44);
  border-radius: 8px;
  background: rgba(7, 12, 24, 0.82);
  box-shadow: 0 12px 34px rgba(0,0,0,0.48), 0 0 30px rgba(255, 122, 26, 0.18);
}

.xst-hero-stats > div {
  padding: 12px 16px;
  border-right: 1px solid rgba(255, 159, 58, 0.2);
}

.xst-hero-stats > div:last-child {
  border-right: 0;
}

.xst-hero-stat-value {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text);
}

.xst-hero-stat-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0;
  margin-top: 4px;
}

/* Circuit SVG pattern */
.xst-circuit-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.07;
}

/* === Gradient Fade Bottom === */
.xst-fade-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--bg));
  pointer-events: none;
}

/* ========================================
   SECTION HEADERS
   ======================================== */
.xst-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.xst-section-header svg { color: var(--primary); }

.xst-section-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
}

/* ========================================
   FEATURE / INFO CARDS GRID
   ======================================== */
.xst-grid-4 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
}

.xst-grid-3 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}

.xst-grid-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 640px) {
  .xst-grid-stats { grid-template-columns: repeat(3, 1fr); }
  .xst-hero-stats { grid-template-columns: repeat(4, 1fr); }
}

@media (min-width: 768px) {
  .xst-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .xst-grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .xst-grid-4 { grid-template-columns: repeat(4, 1fr); }
  .xst-grid-3 { grid-template-columns: repeat(3, 1fr); }
  .xst-grid-stats { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 767px) {
  .xst-hero {
    min-height: 620px;
    padding: 56px 0 78px;
    background-position: 64% center;
  }

  .xst-hero h1 {
    max-width: 360px;
    font-size: 3rem;
  }

  .xst-hero-desc {
    max-width: 360px;
    font-size: 1rem;
  }

  .xst-hero-stats > div {
    border-bottom: 1px solid rgba(255, 159, 58, 0.2);
  }

  .xst-hero-stats > div:nth-child(2n) {
    border-right: 0;
  }

  .xst-hero-stats > div:nth-last-child(-n+2) {
    border-bottom: 0;
  }
}

/* Feature Card */
.xst-feature-card {
  position: relative;
  min-height: 268px;
  padding: 0;
  background: rgba(10, 16, 32, 0.68);
  background-size: cover;
  background-position: center top;
  backdrop-filter: blur(4px);
  border: 1px solid rgba(118,154,216,0.16);
  border-radius: var(--radius);
  transition: all var(--transition);
  overflow: hidden;
}

.feature-goku-1 { background-image: url("../img/bulk/feature-1.jpg"); }
.feature-goku-2 { background-image: url("../img/bulk/feature-2.jpg"); }
.feature-goku-3 { background-image: url("../img/bulk/feature-3.jpg"); }
.feature-goku-4 { background-image: url("../img/bulk/feature-4.jpg"); }

.xst-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 9, 20, 0.08) 0%, rgba(5, 9, 20, 0.30) 44%, rgba(5, 9, 20, 0.92) 100%),
    linear-gradient(90deg, rgba(255, 122, 26, 0.20), transparent 42%);
  z-index: 0;
}

.xst-feature-content {
  position: relative;
  z-index: 1;
  min-height: 268px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
}

.xst-feature-card:hover {
  border-color: var(--primary-30);
}

.xst-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(10, 19, 40, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 16px;
}

.xst-feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.8);
}

.xst-feature-card p {
  font-size: 0.875rem;
  color: #d8e1f4;
  line-height: 1.5;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
}

/* ========================================
   SERVER STATUS
   ======================================== */
.xst-status-card {
  background: rgba(17, 24, 39, 0.5);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all var(--transition);
}

.xst-status-card:hover { border-color: var(--primary-30); }

.xst-status-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #d1d5db;
}

.xst-status-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}

.xst-status-dot {
  position: relative;
  width: 12px;
  height: 12px;
}

.xst-status-dot .dot-inner {
  position: relative;
  display: inline-flex;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.xst-status-dot.online .dot-inner { background: var(--green); }
.xst-status-dot.offline .dot-inner { background: var(--destructive); }

.xst-status-dot.online .dot-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--green);
  opacity: 0.75;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes ping {
  0% { transform: scale(1); opacity: 0.75; }
  75%, 100% { transform: scale(2); opacity: 0; }
}

.xst-status-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.xst-status-label.online { color: var(--green); }
.xst-status-label.offline { color: var(--destructive); }

/* ========================================
   DOWNLOAD TOOL CARDS
   ======================================== */
.xst-tool-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  overflow: hidden;
}

.xst-tool-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.xst-tool-header {
  padding: 24px 24px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.xst-tool-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--primary-10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: transform var(--transition);
}

.xst-tool-card:hover .xst-tool-icon { transform: scale(1.1); }

.xst-tool-badge {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  background: var(--bg-secondary);
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.xst-tool-body { padding: 24px; }

.xst-tool-title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.xst-tool-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

/* ========================================
   STAT BOXES / TELEMETRY
   ======================================== */
.xst-stat-box {
  background: rgba(17, 24, 39, 0.3);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all var(--transition);
}

.xst-stat-box:hover {
  transform: scale(1.02);
  border-color: var(--border-hover);
}

.xst-stat-value {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.xst-stat-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.xst-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.xst-live-dot {
  position: relative;
  display: inline-flex;
  width: 8px;
  height: 8px;
}

.xst-live-dot .inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  position: relative;
}

.xst-live-dot .pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.75;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* ========================================
   SERVICES PAGE
   ======================================== */
.xst-page-header {
  position: relative;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 64px 0;
  text-align: center;
}

.xst-page-header h1 {
  font-size: 2.75rem;
  font-weight: 700;
  letter-spacing: 0;
  margin-bottom: 16px;
}

.xst-page-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 640px;
  margin: 0 auto;
}

.xst-page-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  background: var(--primary-10);
  border: 1px solid var(--primary-20);
  color: var(--primary);
  margin-bottom: 24px;
}

/* Filter Buttons */
.xst-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 32px;
}

.xst-filter-btn {
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.xst-filter-btn:hover {
  border-color: var(--primary-30);
}

.xst-filter-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* Service Card */
.xst-service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  overflow: hidden;
}

.xst-service-card:hover { border-color: var(--border-hover); }

.xst-service-top {
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.xst-service-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
}

.xst-service-icon.enterprise {
  background: var(--primary-20);
  color: var(--primary);
  border: 1px solid var(--primary-30);
}

.xst-service-price {
  text-align: right;
}

.xst-service-price-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
}

.xst-chipset-badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: var(--radius-sm);
  border: 1px solid;
  margin-top: 4px;
}

.xst-chipset-qcom {
  background: rgba(255, 122, 26, 0.1);
  color: #ffa54d;
  border-color: rgba(255, 122, 26, 0.2);
}

.xst-chipset-mtk {
  background: rgba(249, 115, 22, 0.1);
  color: #fb923c;
  border-color: rgba(249, 115, 22, 0.2);
}

.xst-chipset-all {
  background: rgba(168, 85, 247, 0.1);
  color: #c084fc;
  border-color: rgba(168, 85, 247, 0.2);
}

.xst-service-body {
  padding: 0 24px 24px;
  flex: 1;
}

.xst-service-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.xst-service-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
  line-height: 1.5;
}

.xst-ready-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background: rgba(34, 197, 94, 0.1);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.xst-ready-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.xst-service-action {
  padding: 0 24px 24px;
  margin-top: auto;
}

/* ========================================
   RESELLER PAGE
   ======================================== */
.xst-reseller-card {
  background: rgba(17, 24, 39, 0.6);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
}

@media (min-width: 640px) {
  .xst-reseller-card {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.xst-reseller-card:hover { border-color: var(--primary-30); }

.xst-reseller-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.xst-reseller-avatar {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-muted);
  flex-shrink: 0;
}

.xst-reseller-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.xst-reseller-location {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.xst-reseller-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ========================================
   STATS PAGE
   ======================================== */
.xst-summary-card {
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.xst-summary-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.xst-summary-value {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 4px;
}

.xst-summary-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ========================================
   LOGIN / REGISTER PAGES
   ======================================== */
.xst-auth-page {
  min-height: calc(100vh - 160px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.xst-auth-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle at center, rgba(255, 122, 26, 0.15) 0%, rgba(255, 122, 26, 0.05) 40%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}

.xst-auth-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 440px;
}

.xst-auth-card-lg { max-width: 520px; }

.xst-auth-topline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.xst-auth-header {
  text-align: center;
  padding: 40px 24px 32px;
}

.xst-auth-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  background: var(--bg-secondary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 2px rgba(0,0,0,0.2);
  color: var(--primary);
}

.xst-auth-title {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: 0;
}

.xst-auth-subtitle {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 8px;
}

.xst-auth-body { padding: 0 24px 24px; }

.xst-auth-form { display: flex; flex-direction: column; gap: 20px; }

.xst-auth-form .xst-form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 480px) {
  .xst-auth-form .xst-form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.xst-checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 2px;
}

.xst-checkbox {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.3);
  accent-color: var(--primary);
  cursor: pointer;
}

.xst-checkbox-label {
  font-size: 0.875rem;
  color: var(--text-muted);
  cursor: pointer;
}

.xst-auth-footer {
  text-align: center;
  padding: 0 24px 24px;
  margin-top: 8px;
}

.xst-auth-footer p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.xst-auth-footer a {
  color: var(--primary);
  font-weight: 600;
}

.xst-auth-footer a:hover { text-decoration: underline; }

.xst-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.xst-label-row a {
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
}

.xst-label-row a:hover { text-decoration: underline; }

/* Alert */
.xst-alert {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #f87171;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.875rem;
}

.xst-alert-success {
  background: rgba(34, 197, 94, 0.1);
  border-color: rgba(34, 197, 94, 0.3);
  color: var(--green);
}

/* ========================================
   FOOTER
   ======================================== */
.xst-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 0;
  background: rgba(8, 13, 26, 0.95);
}

.xst-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .xst-footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
  }
}

.xst-footer-links h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}

.xst-footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.xst-footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition);
}

.xst-footer-links a:hover { color: var(--primary); }

.xst-social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.xst-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-secondary);
  color: var(--text-muted);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.xst-social-btn:hover {
  border-color: var(--primary-30);
  color: var(--primary);
}

.xst-footer-bottom {
  text-align: center;
  padding: 24px 0;
  margin-top: 40px;
  border-top: 1px solid var(--border);
}

.xst-footer-bottom p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ========================================
   FLOATING SOCIAL
   ======================================== */
.xst-floating-social {
  position: fixed;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
}

.xst-float-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all var(--transition);
}

.xst-float-btn:hover { transform: scale(1.1); }

.xst-float-btn.telegram { background: linear-gradient(135deg, #0088cc, #00a8e8); }
.xst-float-btn.whatsapp { background: linear-gradient(135deg, #25D366, #128C7E); }

@media (max-width: 768px) {
  .xst-floating-social { right: 16px; bottom: 16px; top: auto; transform: none; }
  .xst-float-btn { width: 44px; height: 44px; }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

.animate-in { animation: fadeInUp 0.6s ease-out forwards; }
.animate-in-delay-1 { animation-delay: 0.1s; opacity: 0; }
.animate-in-delay-2 { animation-delay: 0.2s; opacity: 0; }
.animate-in-delay-3 { animation-delay: 0.3s; opacity: 0; }
.animate-in-delay-4 { animation-delay: 0.4s; opacity: 0; }
.animate-in-delay-5 { animation-delay: 0.5s; opacity: 0; }

/* Section spacing */
.xst-section { padding: 64px 0; }
.xst-section + .xst-section { padding-top: 0; }

/* Utility */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }
.gap-3 { gap: 12px; }

/* ========================================
   DASHBOARD LAYOUT FRAMEWORK
   ======================================== */
.xst-dashboard-wrapper {
  display: flex;
  min-height: 100vh;
  background: var(--bg);
}

.xst-sidebar {
  width: 260px;
  background: rgba(8, 13, 26, 0.95);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  transition: transform var(--transition);
}

.xst-sidebar-header {
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  border-bottom: 1px solid var(--border);
}

.xst-sidebar-nav {
  padding: 24px 16px;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.xst-sidebar-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text);
  font-weight: 500;
  font-size: 0.875rem;
  transition: all var(--transition);
  text-decoration: none;
}

.xst-sidebar-link:hover, .xst-sidebar-link.active {
  background: var(--primary-10);
  color: var(--primary);
}

.xst-sidebar-link i {
  font-size: 1.25rem;
  width: 24px;
  text-align: center;
}

.xst-main-content {
  flex: 1;
  margin-left: 260px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  transition: margin var(--transition);
}

.xst-topbar {
  height: 64px;
  background: rgba(8, 13, 26, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 90;
}

.xst-topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.xst-page-content {
  padding: 32px 24px;
  flex: 1;
}

.xst-page-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--text);
}

/* Dashboard Forms */
.xst-form-control {
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.875rem;
  transition: all var(--transition);
  color-scheme: dark;
}
.xst-form-control option {
  background-color: var(--bg-card);
  color: var(--text);
}
.xst-form-control::-webkit-calendar-picker-indicator {
    background-image: url('data:image/svg+xml;utf8,<svg fill="%23ffffff" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z"/></svg>') !important;
    opacity: 0.7;
    cursor: pointer;
}
.xst-form-control::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}
.xst-form-control:focus {
  border-color: var(--primary-30);
  outline: none;
  background: rgba(0, 0, 0, 0.4);
}
.xst-form-group {
  margin-bottom: 16px;
}

/* Dashboard Tables */
.xst-table-wrapper {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}
.xst-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.xst-table th {
  background: rgba(255, 255, 255, 0.02);
  padding: 16px;
  text-align: left;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 0.75rem;
}
.xst-table td {
  padding: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text);
}
.xst-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

/* Utilities for Dashboard */
.xst-dropdown {
  position: relative;
}
.xst-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px;
  min-width: 200px;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 4px;
}
.xst-dropdown.show .xst-dropdown-menu {
  display: flex;
}
.xst-dropdown-item {
  padding: 8px 12px;
  border-radius: 4px;
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}
.xst-dropdown-item:hover {
  background: var(--bg-secondary);
  color: var(--text);
}

#batSidebarToggle { display: none !important; }

@media (max-width: 991px) {
  #batSidebarToggle { display: inline-flex !important; }
  .xst-sidebar {
    transform: translateX(-100%);
  }
  .xst-sidebar.open {
    transform: translateX(0);
  }
  .xst-main-content {
    margin-left: 0;
  }
}

/* Pagination Overrides */
.pagination {
  display: inline-flex;
  padding-left: 0;
  margin: 0;
  list-style: none;
  border-radius: var(--radius-sm);
}
.pagination > li {
  margin: 0 4px;
}
.pagination > li > a,
.pagination > li > span {
  display: block;
  padding: 8px 14px;
  color: var(--text-muted);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all var(--transition);
}
.pagination > li > a:hover {
  background: var(--bg-secondary);
  color: var(--text);
}
.pagination > .active > a,
.pagination > .active > span {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ========================================
   SERVICES PAGE ENHANCEMENTS
   ======================================== */
/* 1. Overall Theme Enhancements */
body {
    background: radial-gradient(circle at 50% 0%, #0a1128 0%, #050810 100%);
    background-attachment: fixed;
}
.xst-circuit-svg {
    opacity: 0.15;
    filter: drop-shadow(0 0 8px rgba(255, 122, 26, 0.3));
}
.xst-page-header {
    position: relative;
    overflow: hidden;
}
.xst-page-header::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse at top, rgba(255,122,26,0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* 2. Service Cards Enhancement */
.xst-service-card {
    background: linear-gradient(145deg, rgba(20, 25, 40, 0.8), rgba(10, 15, 25, 0.6)) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
    animation: fadeUp 0.5s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
    will-change: transform, opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.xst-service-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 122, 26, 0.2) !important;
    border-color: rgba(255, 122, 26, 0.5) !important;
}

/* Initial Staggering */
#services-grid .xst-service-card:nth-child(1) { animation-delay: 0.05s; }
#services-grid .xst-service-card:nth-child(2) { animation-delay: 0.10s; }
#services-grid .xst-service-card:nth-child(3) { animation-delay: 0.15s; }
#services-grid .xst-service-card:nth-child(4) { animation-delay: 0.20s; }
#services-grid .xst-service-card:nth-child(5) { animation-delay: 0.25s; }
#services-grid .xst-service-card:nth-child(6) { animation-delay: 0.30s; }
#services-grid .xst-service-card:nth-child(7) { animation-delay: 0.35s; }
#services-grid .xst-service-card:nth-child(8) { animation-delay: 0.40s; }
#services-grid .xst-service-card:nth-child(9) { animation-delay: 0.45s; }
#services-grid .xst-service-card:nth-child(10) { animation-delay: 0.50s; }

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* 3. Dynamic Icons */
.xst-service-icon {
    transition: all 0.3s ease;
    background: rgba(255, 122, 26, 0.1) !important;
    border-radius: 8px;
    padding: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #718096;
}
.xst-service-card:hover .xst-service-icon {
    transform: scale(1.15) rotate(5deg);
    background: rgba(255, 122, 26, 0.2) !important;
    box-shadow: 0 0 15px rgba(255, 122, 26, 0.4);
    color: #ff7a1a;
}

/* 4. Buttons Upgrade */
.xst-btn-primary {
    background: linear-gradient(135deg, #ff7a1a, #ff4d00) !important;
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.xst-btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, #ff4d00, #ff7a1a);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}
.xst-btn-primary:hover::before {
    opacity: 1;
}
.xst-btn-primary:hover {
    transform: scale(1.03);
    box-shadow: 0 5px 15px rgba(107, 74, 255, 0.4);
}
.xst-btn-primary:active {
    transform: scale(0.97);
}

/* 5. Status Indicators */
.xst-ready-badge {
    background: rgba(34, 197, 94, 0.1) !important;
    border: 1px solid rgba(34, 197, 94, 0.2) !important;
    color: #4ade80 !important;
    padding: 4px 10px !important;
    border-radius: 12px !important;
    font-size: 0.75rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 0 10px rgba(34, 197, 94, 0.05);
}
.xst-ready-dot {
    width: 8px;
    height: 8px;
    background-color: #4ade80;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 8px #4ade80;
    position: relative;
}
.xst-ready-dot::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: inherit;
    border-radius: inherit;
    animation: pulseGlow 2s infinite;
}
@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.8; }
    70% { transform: scale(2.5); opacity: 0; }
    100% { transform: scale(1); opacity: 0; }
}

/* 6. Filter Tabs */
.xst-filters {
    position: relative;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    border-radius: 30px;
    padding: 8px;
    background: rgba(0, 0, 0, 0.2);
}
.xst-filter-btn {
    background: transparent !important;
    border: 1px solid transparent !important;
    color: #a0aec0 !important;
    padding: 8px 18px !important;
    border-radius: 20px !important;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: inherit;
}
.xst-filter-btn:hover {
    color: #fff !important;
}
.xst-filter-btn.active {
    background: rgba(255, 122, 26, 0.15) !important;
    border-color: rgba(255, 122, 26, 0.3) !important;
    color: #ff7a1a !important;
    box-shadow: 0 0 15px rgba(255, 122, 26, 0.2);
}

/* Typography Enhancements */
.xst-service-name {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: #f7fafc;
    letter-spacing: 0.2px;
}
.xst-service-desc {
    color: #a0aec0;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 18px;
}
.xst-service-price-value {
    font-weight: 800;
    font-size: 1.35rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.4);
}

.xst-container {
    position: relative;
    z-index: 2;
}

/* ========================================
   HOME PAGE ENHANCEMENTS
   ======================================== */
.xst-tool-card {
    background: linear-gradient(145deg, rgba(20, 25, 40, 0.8), rgba(10, 15, 25, 0.6)) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.xst-tool-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 122, 26, 0.2) !important;
    border-color: rgba(255, 122, 26, 0.5) !important;
}

.xst-tool-icon {
    transition: all 0.3s ease !important;
    background: rgba(255, 122, 26, 0.1) !important;
    color: #ff7a1a !important;
}

.xst-tool-card:hover .xst-tool-icon {
    transform: scale(1.15) rotate(5deg) !important;
    background: rgba(255, 122, 26, 0.2) !important;
    box-shadow: 0 0 15px rgba(255, 122, 26, 0.4) !important;
    color: #ff7a1a !important;
}

/* Feature cards specific colors on hover */
.xst-feature-card:hover {
    transform: translateY(-8px) !important;
}

.xst-feature-icon {
    transition: all 0.3s ease !important;
    background: rgba(255, 255, 255, 0.05) !important;
    color: #718096 !important;
}

/* Feat: Blue */
.xst-feature-card.feat-blue:hover {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 122, 26, 0.2) !important;
    border-color: rgba(255, 122, 26, 0.5) !important;
}
.xst-feature-card.feat-blue:hover .xst-feature-icon {
    transform: scale(1.15) rotate(5deg) !important;
    background: rgba(255, 122, 26, 0.2) !important;
    box-shadow: 0 0 15px rgba(255, 122, 26, 0.4) !important;
    color: #ff7a1a !important;
}
.xst-feature-card.feat-blue .xst-feature-icon {
    background: rgba(255, 122, 26, 0.1) !important;
    color: #ff7a1a !important;
}

/* Feat: Orange */
.xst-feature-card.feat-orange:hover {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(249, 115, 22, 0.2) !important;
    border-color: rgba(249, 115, 22, 0.5) !important;
}
.xst-feature-card.feat-orange:hover .xst-feature-icon {
    transform: scale(1.15) rotate(5deg) !important;
    background: rgba(249, 115, 22, 0.2) !important;
    box-shadow: 0 0 15px rgba(249, 115, 22, 0.4) !important;
    color: #f97316 !important;
}
.xst-feature-card.feat-orange .xst-feature-icon {
    background: rgba(249, 115, 22, 0.1) !important;
    color: #f97316 !important;
}

/* Feat: Purple */
.xst-feature-card.feat-purple:hover {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(168, 85, 247, 0.2) !important;
    border-color: rgba(168, 85, 247, 0.5) !important;
}
.xst-feature-card.feat-purple:hover .xst-feature-icon {
    transform: scale(1.15) rotate(5deg) !important;
    background: rgba(168, 85, 247, 0.2) !important;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.4) !important;
    color: #c084fc !important;
}
.xst-feature-card.feat-purple .xst-feature-icon {
    background: rgba(168, 85, 247, 0.1) !important;
    color: #c084fc !important;
}

/* Feat: Green */
.xst-feature-card.feat-green:hover {
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4), 0 0 15px rgba(34, 197, 94, 0.2) !important;
    border-color: rgba(34, 197, 94, 0.5) !important;
}
.xst-feature-card.feat-green:hover .xst-feature-icon {
    transform: scale(1.15) rotate(5deg) !important;
    background: rgba(34, 197, 94, 0.2) !important;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.4) !important;
    color: #22c55e !important;
}
.xst-feature-card.feat-green .xst-feature-icon {
    background: rgba(34, 197, 94, 0.1) !important;
    color: #22c55e !important;
}

/* ========================================
   GLOBAL UI ENHANCEMENTS & MICRO-INTERACTIONS
   ======================================== */
   
/* Smooth Navigation Underlines */
.xst-nav-link {
    position: relative;
}
.xst-nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    right: 50%;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border-radius: 2px;
    opacity: 0;
}
.xst-nav-link:hover::after, .xst-nav-link.active::after {
    left: 15px;
    right: 15px;
    opacity: 1;
}

/* Stat Box Hover Lifting */
.xst-stat-box {
    background: linear-gradient(145deg, rgba(20, 25, 40, 0.7), rgba(10, 15, 25, 0.5)) !important;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    border: 1px solid rgba(255,255,255,0.03) !important;
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
    transform: translateZ(0); /* Force GPU */
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.xst-stat-box:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 122, 26, 0.1) !important;
    border-color: rgba(255, 122, 26, 0.3) !important;
}

/* Pulsing effect for elements that need live feeling */
.pulsing {
    animation: slowPulse 3s infinite alternate ease-in-out;
    will-change: filter;
    transform: translateZ(0);
}
@keyframes slowPulse {
    0% { filter: brightness(1) drop-shadow(0 0 0 rgba(0,0,0,0)); }
    100% { filter: brightness(1.2) drop-shadow(0 0 8px rgba(34,197,94,0.4)); }
}

/* Scroll Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px) translateZ(0);
    transition: all 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform, opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.scroll-animate-delay-1 { transition-delay: 0.1s; }
.scroll-animate-delay-2 { transition-delay: 0.2s; }
.scroll-animate-delay-3 { transition-delay: 0.3s; }
.scroll-animate-delay-4 { transition-delay: 0.4s; }
.scroll-animate-delay-5 { transition-delay: 0.5s; }

/* ========================================
   DYNAMIC TIGER / ORANGE ENHANCEMENTS
   ======================================== */

/* Text selection in brand orange */
::selection { background: rgba(255, 122, 26, 0.35); color: #fff; }

/* Animated orange scanline under the sticky header */
.xst-header { position: sticky; }
.xst-header::after {
  content: "";
  position: absolute;
  left: 0; bottom: -1px;
  height: 2px; width: 100%;
  background: linear-gradient(90deg, transparent, var(--tiger), var(--tiger-deep), var(--tiger), transparent);
  background-size: 200% 100%;
  opacity: 0.75;
  animation: tigerSweep 6s linear infinite;
}
@keyframes tigerSweep {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Pulsing glow on the logo mark */
.xst-logo-icon {
  animation: logoGlow 3.2s ease-in-out infinite;
}
@keyframes logoGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(255, 122, 26, 0); }
  50%      { box-shadow: 0 0 18px rgba(255, 122, 26, 0.55); }
}

/* Shimmering brand accent in the hero title */
.xst-hero h1 .xst-primary {
  background: linear-gradient(100deg, var(--tiger) 20%, var(--tiger-glow) 40%, #fff 50%, var(--tiger-glow) 60%, var(--tiger-deep) 80%);
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: brandShimmer 5s linear infinite;
}
@keyframes brandShimmer {
  0% { background-position: 150% 0; }
  100% { background-position: -150% 0; }
}

/* Sheen sweep across primary buttons on hover */
.xst-btn-primary {
  background-image:
    linear-gradient(120deg, transparent 32%, rgba(255, 255, 255, 0.28) 50%, transparent 68%),
    linear-gradient(180deg, #ffb258 0%, #ff7a00 54%, #b43a00 100%);
  background-size: 250% 100%, 100% 100%;
  background-position: 160% 0, 0 0;
  background-repeat: no-repeat;
  transition: background-position 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform var(--transition), box-shadow var(--transition);
}
.xst-btn-primary:hover {
  background-position: -60% 0, 0 0;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 122, 26, 0.35);
}

/* Floating feature icons + orange lift on card hover */
.xst-feature-icon { animation: floatY 4.5s ease-in-out infinite; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-5px); }
}
.xst-feature-card:hover {
  border-color: var(--tiger) !important;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45), 0 0 22px rgba(255, 122, 26, 0.22) !important;
}

/* Nav links get an animated orange underline */
.xst-nav-link { position: relative; }
.xst-nav-link::after {
  content: "";
  position: absolute;
  left: 12px; right: 12px; bottom: 4px;
  height: 2px;
  background: linear-gradient(90deg, var(--tiger), var(--tiger-deep));
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.xst-nav-link:hover::after,
.xst-nav-link.active::after { transform: scaleX(1); }

/* Final feature image override: keep the current page background, but show the four Goku cards clearly. */
.xst-feature-card.feature-goku {
  min-height: 300px !important;
  background-color: rgba(7, 12, 26, 0.28) !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  border-color: rgba(255, 138, 31, 0.22) !important;
}

.xst-feature-card.feature-goku-1 { background-image: url("../img/bulk/feature-1.jpg") !important; }
.xst-feature-card.feature-goku-2 { background-image: url("../img/bulk/feature-2.jpg") !important; }
.xst-feature-card.feature-goku-3 { background-image: url("../img/bulk/feature-3.jpg") !important; }
.xst-feature-card.feature-goku-4 { background-image: url("../img/bulk/feature-4.jpg") !important; }

.xst-feature-card.feature-goku::before {
  background:
    linear-gradient(180deg, rgba(5, 9, 20, 0.02) 0%, rgba(5, 9, 20, 0.08) 42%, rgba(5, 9, 20, 0.82) 100%),
    linear-gradient(90deg, rgba(255, 122, 26, 0.08), transparent 44%) !important;
}

.xst-feature-card.feature-goku .xst-feature-content {
  min-height: 300px !important;
  justify-content: flex-end;
}

@media (prefers-reduced-motion: reduce) {
  .xst-header::after, .xst-logo-icon, .xst-hero h1 .xst-primary, .xst-feature-icon { animation: none; }
}

