/* Kelcommerce by Akretio */
/* Theme CSS - Dark Soft Gradient */

/* ============================================
   CSS Variables
   ============================================ */
:root {
  --color-primary: #6366f1;
  --color-primary-light: #818cf8;
  --color-primary-dark: #4338ca;
  --color-accent: #f59e0b;
  --color-accent-hover: #f97316;
  --color-text: #f1f0ff;
  --color-text-secondary: #a5a3c7;
  --color-text-muted: #6b6990;
  --color-bg: #0c0b14;
  --color-bg-card: #16152a;
  --color-bg-elevated: #1e1d3a;
  --color-white: #ffffff;
  --color-border: rgba(139, 92, 246, 0.1);
  --color-border-light: rgba(139, 92, 246, 0.06);
  --color-success: #34d399;
  --color-danger: #ef4444;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.25);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.3);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.35);
  --shadow-violet: 0 8px 32px rgba(139, 92, 246, 0.1);
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-width: 1200px;
}

body {
  margin: 0;
  padding: 0;
  background: var(--color-bg);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { border: none; }

a, a:visited, a:active {
  color: var(--color-primary-light);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-white);
}

/* ============================================
   Container
   ============================================ */
#container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  min-height: 100vh;
}

/* ============================================
   Header
   ============================================ */
#header {
  height: auto;
  min-height: 64px;
  background: rgba(12, 11, 20, 0.92);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 max(24px, calc((100% - 1200px) / 2 + 24px));
  border-bottom: 1px solid rgba(139, 92, 246, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

#header.core_home {
  background: rgba(12, 11, 20, 0.92);
  height: auto;
  width: 100%;
  border-bottom: 1px solid rgba(139, 92, 246, 0.08);
}

#header div.logo {
  background: transparent;
  width: auto;
  height: auto;
  margin-top: 0;
  padding-left: 0;
  float: none;
  display: flex;
  align-items: center;
}

#header div.logo img {
  height: 32px;
  width: auto;
}

#header div.menu {
  margin-top: 0;
  background: transparent;
  float: none;
  display: flex;
  align-items: center;
  flex: 1;
  gap: 0;
}

div.menu a,
div.menu a:hover,
div.menu a:active,
div.menu a:visited {
  font-family: var(--font-sans);
  color: var(--color-text-secondary);
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
}

div.menu a:hover {
  color: var(--color-white);
  text-decoration: none;
}

div.menu ul {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
}

div.menu ul li {
  list-style: none;
  display: inline-flex !important;
  align-items: center;
  padding: 6px 14px;
  background: none;
  border-radius: 50px;
  transition: background var(--transition);
}

div.menu ul li:hover {
  background: rgba(139, 92, 246, 0.08);
}

div.menu ul li.home {
  background: none;
}

div.menu ul li.home:hover {
  background: rgba(139, 92, 246, 0.08);
}

div.menu div.lang {
  margin-top: 0;
  background: transparent;
  float: none;
  padding: 0;
  display: inline-flex;
  align-items: center;
  margin-left: auto;
  position: relative;
  cursor: pointer;
  height: auto;
  overflow: visible;
}

div.lang .lang-flag {
  width: 20px;
  height: 14px;
  border-radius: 3px;
  vertical-align: middle;
  margin-right: 8px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.12);
}

div.lang div.lang-current {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: #a5a3c7;
  padding: 7px 14px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: all var(--transition);
  background: rgba(139, 92, 246, 0.06);
  border: 1px solid rgba(139, 92, 246, 0.12);
  height: auto;
  overflow: visible;
}

div.lang div.lang-current::after {
  content: '';
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 4px solid rgba(165, 163, 199, 0.5);
  margin-left: 8px;
  transition: transform var(--transition), border-color var(--transition);
}

div.lang:hover div.lang-current {
  background: rgba(139, 92, 246, 0.12);
  border-color: rgba(139, 92, 246, 0.25);
  color: #fff;
}

div.lang:hover div.lang-current::after {
  transform: rotate(180deg);
  border-top-color: rgba(255,255,255,0.5);
}

div.lang div.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: var(--color-bg-card);
  border: 1px solid rgba(139, 92, 246, 0.15);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(139,92,246,0.05);
  padding: 6px;
  padding-top: 12px;
  z-index: 100;
  min-width: 180px;
  overflow: visible;
  height: auto;
}

div.lang:hover div.lang-dropdown {
  display: block;
}

div.lang div.lang-dropdown a,
div.lang div.lang-dropdown a:hover,
div.lang div.lang-dropdown a:active,
div.lang div.lang-dropdown a:visited {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  color: #a5a3c7;
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: all var(--transition);
}

div.lang div.lang-dropdown a:hover {
  background: rgba(139, 92, 246, 0.08);
  color: #fff;
}

/* ============================================
   Splash / Hero
   ============================================ */
#splash {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 420px;
  background: linear-gradient(180deg, #0c0b14 0%, #1a1640 50%, #0c0b14 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}


#splash::before {
  content: '';
  position: absolute;
  top: -10%;
  right: 5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, rgba(139, 92, 246, 0.05) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

#splash::after {
  content: '';
  position: absolute;
  bottom: -5%;
  left: -5%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, rgba(99, 102, 241, 0.04) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  animation: float 10s ease-in-out infinite reverse;
}

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

#splash div.splashtext {
  width: 50%;
  flex: none;
  padding: 80px 0 80px max(24px, calc((100vw - 1200px) / 2 + 24px));
  position: relative;
  z-index: 1;
}

#splash div.splashvisual {
  flex: 1;
  min-width: 0;
  position: relative;
  padding: 40px max(24px, calc((100vw - 1200px) / 2 + 24px)) 40px 0;
  z-index: 1;
  display: flex;
  justify-content: center;
}

#splash div.splashvisual img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(139, 92, 246, 0.12), 0 8px 32px rgba(0,0,0,0.3);
}

/* Glow behind dashboard SVG */
#splash div.splashvisual::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 40px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, rgba(245, 158, 11, 0.04) 40%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: -1;
}

/* Hero badge */
div.splashbadge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(52, 211, 153, 0.08);
  color: #34d399;
  font: 600 13px/1 var(--font-sans);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  border: 1px solid rgba(52, 211, 153, 0.15);
}

div.splashbadge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: #34d399;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* Hero CTA button */
div.splashcta {
  margin-top: 32px;
}

a.btn-hero,
a.btn-hero:visited,
a.btn-hero:active {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff !important;
  font: 700 16px/1 var(--font-sans);
  padding: 16px 36px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 28px rgba(245, 158, 11, 0.3);
}

a.btn-hero:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 36px rgba(245, 158, 11, 0.45);
  color: #fff !important;
}

/* Ghost / secondary button */
a.btn-ghost,
a.btn-ghost:visited,
a.btn-ghost:active {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--color-primary-light) !important;
  font: 600 15px/1 var(--font-sans);
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid rgba(139, 92, 246, 0.3);
  transition: all 0.2s;
  margin-left: 12px;
}

a.btn-ghost:hover {
  border-color: rgba(139, 92, 246, 0.6);
  background: rgba(139, 92, 246, 0.06);
  color: #a78bfa !important;
}

/* Nav CTA button */
a.nav-cta,
a.nav-cta:visited,
a.nav-cta:active {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #f59e0b, #f97316);
  color: #fff !important;
  font: 600 13px/1 var(--font-sans);
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 2px 16px rgba(245, 158, 11, 0.25);
  margin-left: 16px;
  white-space: nowrap;
}

a.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(245, 158, 11, 0.4);
  color: #fff !important;
}

/* Legacy dashboard classes (unused, kept for cleanup) */
.dashboard-mock {
  width: 100%;
  max-width: 480px;
  background: #16152a;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(139, 92, 246, 0.1), 0 8px 32px rgba(0,0,0,0.3);
  overflow: hidden;
}

.dash-topbar {
  background: linear-gradient(135deg, #1e1d3a, #252448);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(139, 92, 246, 0.08);
}

.dash-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dash-dot:nth-child(1) { background: #ff5f57; }
.dash-dot:nth-child(2) { background: #ffbd2e; }
.dash-dot:nth-child(3) { background: #28c840; }

.dash-topbar-text {
  color: rgba(165, 163, 199, 0.6);
  font-size: 11px;
  margin-left: 8px;
  font-weight: 500;
}

.dash-body {
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.dash-stat {
  background: #1e1d3a;
  border-radius: 10px;
  padding: 10px;
}

.dash-stat-label {
  font-size: 9px;
  color: #a5a3c7;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.dash-stat-value {
  font-size: 18px;
  font-weight: 800;
  color: #f1f0ff;
}

.dash-stat-change {
  font-size: 9px;
  font-weight: 600;
  color: #34d399;
}

.dash-chart {
  grid-column: 1 / -1;
  background: #1e1d3a;
  border-radius: 10px;
  padding: 10px;
  height: 80px;
  overflow: hidden;
}

.dash-chart-label {
  font-size: 9px;
  color: #a5a3c7;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dash-chart-bars {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 48px;
  margin-top: 6px;
}

.dash-bar {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, rgba(129,140,248,0.4), rgba(99,102,241,0.25));
}

.dash-bar.h {
  background: linear-gradient(180deg, #818cf8, #6366f1);
}

.dash-bar.a {
  background: linear-gradient(180deg, #fbbf24, #f59e0b);
}

/* Floating badges */
.float-badge {
  position: absolute;
  border-radius: 12px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
  animation: float 3s ease-in-out infinite;
  background: #1e1d3a;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.float-badge.sales {
  top: 50px;
  right: 20px;
  color: #34d399;
  border: 1px solid rgba(52, 211, 153, 0.2);
}

.float-badge.orders {
  bottom: 60px;
  left: 0;
  color: #818cf8;
  border: 1px solid rgba(139, 92, 246, 0.2);
  animation-delay: 1.5s;
}

.fb-icon {
  font-size: 14px;
}

div.splashh1 {
  padding: 0 0 24px 0;
  margin: 0;
  font: 900 42px/1.12 var(--font-sans) !important;
  color: var(--color-white);
  letter-spacing: -1.5px;
}

div.splashh3 {
  padding: 0;
  margin: 0;
  font: normal 18px/1.7 var(--font-sans);
  color: var(--color-text-secondary);
  max-width: 560px;
}

/* ============================================
   Body Blocks (Features)
   ============================================ */
#body {
  position: relative;
  background: var(--color-bg);
  padding: 80px max(24px, calc((100% - 1200px) / 2 + 24px)) 60px;
  min-height: 1px;
}

#body div.body-blocs {
  height: auto;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

#body div.body-block {
  width: auto;
  height: auto;
  float: none;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-light);
  border-radius: 20px;
  padding: 32px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

#body div.body-block:hover {
  border-color: var(--color-border);
  box-shadow: 0 12px 48px rgba(99, 102, 241, 0.15);
  transform: translateY(-4px);
}

div.body-image {
  width: 56px;
  min-width: 56px;
  height: 56px;
  float: none;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #818cf8, #6366f1);
}

div.body-image img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

/* Individual icon colors per card */
#body div.body-blocs:first-child div.body-block:nth-child(1) div.body-image { background: linear-gradient(135deg, #818cf8, #6366f1); }
#body div.body-blocs:first-child div.body-block:nth-child(2) div.body-image { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
#body div.body-blocs:first-child div.body-block:nth-child(3) div.body-image { background: linear-gradient(135deg, #34d399, #10b981); }
#body div.body-blocs:last-child div.body-block:nth-child(1) div.body-image { background: linear-gradient(135deg, #a78bfa, #8b5cf6); }
#body div.body-blocs:last-child div.body-block:nth-child(2) div.body-image { background: linear-gradient(135deg, #22d3ee, #06b6d4); }
#body div.body-blocs:last-child div.body-block:nth-child(3) div.body-image { background: linear-gradient(135deg, #f472b6, #ec4899); }

/* Individual hover glow per card */
#body div.body-blocs:first-child div.body-block:nth-child(1):hover { box-shadow: 0 12px 48px rgba(99, 102, 241, 0.15); }
#body div.body-blocs:first-child div.body-block:nth-child(2):hover { box-shadow: 0 12px 48px rgba(245, 158, 11, 0.15); }
#body div.body-blocs:first-child div.body-block:nth-child(3):hover { box-shadow: 0 12px 48px rgba(16, 185, 129, 0.15); }
#body div.body-blocs:last-child div.body-block:nth-child(1):hover { box-shadow: 0 12px 48px rgba(139, 92, 246, 0.15); }
#body div.body-blocs:last-child div.body-block:nth-child(2):hover { box-shadow: 0 12px 48px rgba(6, 182, 212, 0.15); }
#body div.body-blocs:last-child div.body-block:nth-child(3):hover { box-shadow: 0 12px 48px rgba(236, 72, 153, 0.15); }

div.body-text {
  width: auto;
  height: auto;
  float: none;
  font: normal 14px/1.6 var(--font-sans);
  color: var(--color-text-secondary);
  padding-right: 0;
}

div.body-text b {
  font: bold 16px/1.4 var(--font-sans);
  color: var(--color-primary-light);
  letter-spacing: -0.2px;
  display: block;
  margin-bottom: 6px;
}

div.body-text-full {
  width: 100%;
  height: auto;
  font: normal 15px/1.6 var(--font-sans);
  color: var(--color-text);
  padding-right: 0;
}

div.body-text-full b {
  font: bold 18px/1.4 var(--font-sans);
  color: var(--color-primary-light);
  letter-spacing: -0.2px;
}

div.body-text-full ol {
  margin-left: 24px;
}

div.compare table {
  width: 100%;
  max-width: 800px;
}

div.compare td {
  text-align: center !important;
}

div.compare ol {
  margin-top: 2px;
  margin-bottom: 2px;
}

div.compare li {
  font-size: 16px;
  text-align: left !important;
}

/* ============================================
   Page Content
   ============================================ */
#pagex {
  position: relative;
  background: var(--color-bg);
  padding: 40px max(24px, calc((100% - 1200px) / 2 + 24px)) 48px;
  min-height: 1px;
}

#pagex ul li {
  display: list;
  list-style: disc;
}

#pagex .leftpaneltitle {
  font: bold 28px/1.3 var(--font-sans);
  color: var(--color-white);
  letter-spacing: -0.5px;
  margin-left: 0;
  padding-left: 0;
  width: auto;
}

#pagex h2 {
  font: normal 20px/1.4 var(--font-sans);
  color: var(--color-text-secondary);
  letter-spacing: -0.2px;
}

#pagex .leftpanel {
  font: normal 15px/1.7 var(--font-sans);
  color: var(--color-text);
  text-align: justify;
  width: 100%;
}

.page_core_home {
  padding: 0 !important;
}

#pagex .leftpaneltitle {
  width: auto;
  margin-left: 0;
  padding-left: 0;
}

/* ============================================
   Pricing
   ============================================ */
#prices {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: 100%;
  padding: 80px max(24px, calc((100% - 1000px) / 2 + 24px)) 80px;
  display: block;
  clear: both;
  background: #0e0d1a;
}

#prices div.top {
  text-align: center;
  margin-bottom: 48px;
  color: var(--color-white);
  line-height: 1.5;
}

#prices div.content {
  min-height: auto;
  background: none;
  width: 100%;
  padding: 0;
  display: flex;
  gap: 24px;
  justify-content: center;
}

#prices div.bottom {
  display: none;
}

#prices div.column {
  width: auto;
  flex: 1;
  max-width: 300px;
  min-height: 1px;
  float: none;
  padding: 36px 32px;
  padding-top: 42px;
  background: var(--color-bg-card);
  border: 1px solid rgba(139, 92, 246, 0.08);
  border-radius: var(--radius-xl);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Gradient top bar on pricing cards */
#prices div.column::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

#prices div.column:nth-child(1)::after {
  background: linear-gradient(90deg, #4338ca, #6366f1);
}

#prices div.column:nth-child(2)::after {
  background: linear-gradient(90deg, #d97706, #f59e0b);
}

#prices div.column:nth-child(3)::after {
  background: linear-gradient(90deg, #5b21b6, #7c3aed);
}

#prices div.column:nth-child(2) {
  border-color: rgba(245, 158, 11, 0.25);
  box-shadow: 0 8px 48px rgba(245, 158, 11, 0.1), 0 0 60px rgba(245, 158, 11, 0.05);
  transform: scale(1.03);
  z-index: 1;
}

#prices div.column:nth-child(2)::before {
  content: 'Most popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(52, 211, 153, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--color-success);
  font: 700 11px/1 var(--font-sans);
  padding: 6px 20px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border: 1px solid rgba(52, 211, 153, 0.2);
}

#prices div.column:hover {
  box-shadow: 0 8px 48px rgba(139, 92, 246, 0.1);
  transform: translateY(-6px);
}

#prices div.column:nth-child(2):hover {
  transform: scale(1.05) translateY(-6px);
  box-shadow: 0 12px 56px rgba(245, 158, 11, 0.15), 0 0 80px rgba(245, 158, 11, 0.08);
}

#prices div.column img {
  display: none;
}

#prices div.column ol {
  text-align: left;
  padding-left: 20px;
  margin: 16px 0;
}

#prices div.column ol li {
  list-style: none;
  list-style-image: none;
  display: list;
  font: normal 14px/1.8 var(--font-sans);
  color: var(--color-text-secondary);
  position: relative;
  padding-left: 24px;
}

#prices div.column ol li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
}

#prices a.order,
#order a.order {
  position: relative;
  color: var(--color-white);
  text-decoration: none;
  font: 600 14px/1 var(--font-sans);
  letter-spacing: 0.3px;
  left: 0;
  top: 0;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  display: inline-block;
  float: none;
  padding: 14px 32px;
  width: auto;
  height: auto;
  text-align: center;
  border-radius: 50px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 16px;
  box-shadow: 0 4px 24px rgba(99, 102, 241, 0.25);
}

#prices div.column:nth-child(2) a.order {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-hover));
  box-shadow: 0 4px 24px rgba(245, 158, 11, 0.25);
}

#prices a.order:hover,
#order a.order:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 32px rgba(99, 102, 241, 0.4);
}

#prices div.column:nth-child(2) a.order:hover {
  box-shadow: 0 6px 32px rgba(245, 158, 11, 0.4);
}

#order {
  overflow: hidden;
  text-align: center;
  height: auto;
  margin-left: 0;
  padding: 24px 0;
}

/* ============================================
   Partners
   ============================================ */
#partners {
  text-align: center;
  margin: 0 auto 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  width: 90%;
  max-width: 800px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--color-bg-card);
}

#partners img {
  margin: 4px 8px;
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: grayscale(80%) brightness(0.7);
  opacity: 0.5;
  transition: all var(--transition);
}

#partners img:hover {
  filter: grayscale(0%) brightness(1);
  opacity: 1;
}

/* ============================================
   Footer
   ============================================ */
#footer {
  position: relative;
  height: auto;
  width: 100%;
  box-sizing: border-box;
  padding: 32px 24px;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-bg-card) 100%);
  font: normal 13px/1.6 var(--font-sans);
  color: #a5a3c7;
  text-align: center;
  border-top: 1px solid rgba(139, 92, 246, 0.06);
}

#footer b {
  color: #f1f0ff;
  font-weight: 600;
}

#footer a,
#footer a:active,
#footer a:visited {
  font-size: 13px;
  color: #a5a3c7;
  font-weight: 400;
  text-decoration: none;
  transition: color var(--transition);
}

#footer a:hover {
  color: #fff;
}

#footer div {
  display: none;
}

#footer img {
  display: none;
}

/* ============================================
   Panels / Cards
   ============================================ */
.leftpanel {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 16px;
}

.leftpanel textarea {
  padding: 0 !important;
}

.leftpaneltitle {
  border: 0;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--color-white);
  font-size: 18px;
}

/* ============================================
   Forum overrides
   ============================================ */
.forummessagefooter {
  font-weight: 600;
  font-size: 14px;
  margin-top: 8px;
  margin-bottom: 8px;
}

.forumfirstmessage .forummessage {
  border: 0;
}

.bbquote {
  border: 1px solid var(--color-border);
  padding: 20px !important;
  background: var(--color-bg-elevated);
  border-radius: var(--radius-md);
  font-size: 14px;
  border-left: 3px solid var(--color-primary-light);
}

.bbquotetitle {
  border: 0 !important;
  clear: left;
  background: none;
  padding-left: 0;
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 12px;
  font-weight: 600;
  color: var(--color-text-muted);
  font-size: 13px;
}

.bbspoiler {
  background-color: var(--color-bg-elevated) !important;
  border: 1px solid var(--color-border) !important;
  border-radius: var(--radius-sm);
  padding: 12px;
}

.bbwhisper {
  background-color: rgba(245, 158, 11, 0.06) !important;
  border-left: 3px solid var(--color-accent) !important;
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: var(--radius-sm);
  padding: 12px;
}

.bbcodecode {
  background-color: var(--color-bg-elevated) !important;
  border-left: 3px solid var(--color-primary-light) !important;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  color: var(--color-text);
}

.forumattach {
  background-color: var(--color-bg-elevated) !important;
  border-left: 3px solid var(--color-primary-light) !important;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px;
}

.forummessagetext {
  border-left: none;
}

.forummessageutils {
  border: 0;
  background: none;
  width: 130px;
  margin-left: 20px;
  text-align: center;
  height: auto;
}

.forummessageutils img {
  margin-right: 4px;
  margin-bottom: 4px;
}

.forummessagesubject {
  border-bottom: 1px solid var(--color-border);
  background-color: var(--color-bg-elevated);
  font-weight: 600;
  font-size: 13px;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  padding: 8px 12px;
  color: var(--color-text);
}

.XForumPoll {
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-card);
  width: 100%;
  max-width: 800px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.XForumPoll th {
  border-bottom: 1px solid var(--color-border);
  padding: 10px 12px;
  background: var(--color-bg-elevated);
  color: var(--color-text);
}

.XForumPoll td {
  font-size: 13px;
  padding: 8px 12px;
  color: var(--color-text-secondary);
}

.XForumPollBar {
  background-color: var(--color-primary-light);
  border: none;
  border-radius: 3px;
  height: 8px;
}

.forumtopic {
  background-image: none;
  background: var(--color-bg-card);
  margin: 0;
  padding: 10px 16px;
  height: auto;
  border: none;
  border-bottom: 1px solid var(--color-border-light);
  width: 100%;
  padding-left: 16px;
  margin-left: 0;
  font-weight: 600;
  transition: background var(--transition);
  box-sizing: border-box;
  color: var(--color-text);
}

.forumtopic a {
  font-weight: normal;
}

.forumtopicimgread img,
.forumtopicimgunread img {
  display: none;
}

.forumtopic:hover {
  background-image: none;
  background: var(--color-bg-elevated);
  margin: 0;
  padding: 10px 16px;
  height: auto;
  border: none;
  border-bottom: 1px solid var(--color-border-light);
  width: 100%;
  padding-left: 16px;
  margin-left: 0;
  font-weight: 600;
}

.forumtopicunread {
  background-image: none;
  border-left: 3px solid var(--color-primary-light);
}

.forumtopicunread:hover {
  background-image: none;
  background: var(--color-bg-elevated);
}

.forumtopicblocked {
  background-image: none;
  opacity: 0.5;
}

.forumtopicblocked:hover {
  background-image: none;
}

.forumtopichover a {
  font-weight: normal;
  color: var(--color-primary-light);
}

.forumtopichover a:hover {
  color: var(--color-accent);
}

.forumquickreply {
  background-color: rgba(245, 158, 11, 0.04) !important;
  border: 1px solid rgba(245, 158, 11, 0.15);
  padding: 16px;
  border-radius: var(--radius-md);
  text-align: center !important;
}

.forumquickreply div {
  text-align: center !important;
}

.forumhomedateread {
  background: var(--color-primary-light) !important;
  display: inline-block;
  float: left;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  height: auto;
  width: auto;
  color: var(--color-white);
  border-radius: 3px;
  margin-right: 8px;
}

.forumhomedateunread {
  background: var(--color-accent) !important;
  display: inline-block;
  float: left;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  height: auto;
  width: auto;
  color: var(--color-white);
  border-radius: 3px;
  margin-right: 8px;
}

.forumsection {
  background: var(--color-primary) !important;
  height: auto;
  width: 100%;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-left: 0;
  margin-top: 0;
  color: var(--color-white);
  border-radius: var(--radius-sm);
  margin-bottom: 2px;
  letter-spacing: 0.5px;
  box-sizing: border-box;
}

.forumtopicheader {
  background: var(--color-bg-elevated) !important;
  height: auto;
  width: 100%;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding-left: 16px;
  border: none;
  margin-left: 0;
  margin-bottom: 0;
  box-sizing: border-box;
}

.forumcategoryheader {
  background: var(--color-bg-elevated) !important;
  height: auto;
  width: 100%;
  padding: 8px 16px;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border: none;
  margin-left: 0;
  margin-bottom: 0;
  box-sizing: border-box;
}

.forumsection a {
  color: var(--color-white) !important;
}

.forumcategory {
  background: var(--color-bg-card) !important;
  height: auto;
  padding: 12px 16px;
  margin-left: 0;
  width: 100%;
  border-bottom: 1px solid var(--color-border-light);
  transition: background var(--transition);
  box-sizing: border-box;
}

.forumcategory:hover {
  background: var(--color-bg-elevated) !important;
}

.forumcatunread {
  background: var(--color-bg-card) !important;
  border-left: 3px solid var(--color-primary-light);
}

.forumcatunread:hover {
  background: var(--color-bg-elevated) !important;
}

.forumcategorydesc {
  padding-left: 0;
  margin-top: 4px;
  margin-left: 0;
  font-style: italic;
  color: var(--color-text-muted);
  font-size: 13px;
}

.forumcategoryname {
  width: auto;
}

.forumcategoryname a {
  color: var(--color-primary-light);
  font-size: 15px;
  font-weight: 600;
}

.forumcategorynameheader {
  width: auto;
}

.forumcategorylastmsg {
  color: var(--color-text-muted);
  width: auto;
  float: left;
  line-height: 1.4;
  font-size: 13px;
}

.forumstats {
  background: none;
  background-color: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  padding: 16px;
  color: var(--color-text-secondary);
  margin-top: 16px;
  width: 100%;
  box-sizing: border-box;
}

.forumloginpanel {
  background: none;
  background-color: rgba(52, 211, 153, 0.06);
  border: 1px solid rgba(52, 211, 153, 0.15);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  padding: 16px;
  color: var(--color-text-secondary);
  margin-top: 16px;
}

.forumcatunreadimg,
.forumcatreadimg {
  display: none;
}

.forumtopictools {
  float: right;
  z-index: 99999 !important;
}

.forumtopictools a {
  color: var(--color-text-muted);
}

.forumtopictoolsdata a:hover {
  color: var(--color-primary-light);
  z-index: 9999 !important;
}

.forumtopictoolstitle {
  position: absolute;
  width: 200px;
  left: 50%;
  top: 13px;
  margin-left: 200px;
  color: var(--color-text-muted);
  text-align: right;
  z-index: 300 !important;
  font-weight: 600;
}

.forumtopictoolstitle a {
  color: var(--color-text);
}

.forumtopictoolsdata {
  position: absolute;
  left: 50%;
  width: 200px;
  top: 28px;
  margin-left: 260px;
  color: var(--color-text);
  padding: 0;
  z-index: 9999 !important;
  visibility: hidden;
}

.forumtopictoolsdata img {
  vertical-align: top;
  margin-right: 5px;
}

.forumtopictoolsfooter {
  background: none;
  padding: 0;
  height: 0;
}

.forumtopictoolsdatabody {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 500;
  line-height: 24px;
  z-index: 9999 !important;
  color: var(--color-text);
}

.forumleftpanelex {
}

.forumtopictoolsdatabody input {
  font-size: 13px;
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
}

.forumtopictoolsdatabody td {
  font-size: 12px;
  color: var(--color-text-secondary);
}

.forumtopictoolsdatabody div {
  font-size: 13px;
}

.forumleftpaneltitle {
  margin-bottom: 0;
}

.forumleftpaneltitleex {
  background: var(--color-primary) !important;
  height: auto;
  font-size: 15px !important;
  color: var(--color-white) !important;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
}

.forumleftpaneltitleex a {
  color: var(--color-white) !important;
}

.forumtopicpages {
  float: right;
  margin-top: -8px;
}

.forumtopiclastmsgdate {
  text-align: left;
}

.forumtopiclastmsgdate img {
  vertical-align: top;
}

.forumtopicsecondline {
  color: var(--color-text-muted) !important;
  font-size: 12px;
}

.forumtopicname {
  width: auto;
  flex: 1;
}

.forumcategorypages {
  margin-right: 16px;
}

.forumcategorylinks img {
  vertical-align: top;
  margin-right: 6px;
}

.forummessage {
  background: var(--color-bg-elevated) !important;
  margin-bottom: 12px;
  padding: 16px;
  width: 100% !important;
  padding-bottom: 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-sizing: border-box;
}

.forummessageinfo {
  float: right;
  text-align: center;
}

.forummessagetext {
  border: 0;
  min-height: 120px;
}

.forummessagetextbody {
  border: 0;
  margin-top: 16px;
  line-height: 1.6;
  text-align: justify;
  color: var(--color-text);
}

.forummessagesubject {
  font-size: 15px;
  border: 0;
  background: none;
  color: var(--color-primary-light);
  padding: 0;
  border-radius: 0;
}

.forummessagesubjectsecondline {
  background: none;
  padding-left: 0;
  color: var(--color-text-muted);
  font-size: 12px;
  font-weight: normal;
  margin-top: 4px;
}

.forummessagesubjectsecondline a {
  color: var(--color-text-secondary);
  font-weight: 600 !important;
}

.forummessageutilsright {
  display: none;
}

.forummessagetextfooter {
  background: none !important;
  height: auto;
  clear: left;
  margin-top: 8px;
  margin-left: 0;
  border-top: 1px solid var(--color-border-light);
  padding-top: 8px;
}

.forummessageinfoip {
  display: inline;
}

span.forummessagesignature {
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  display: block;
  margin-top: 12px;
  padding-top: 8px;
  font-size: 13px;
}

.forumavatar img {
  text-align: center;
  background-color: var(--color-bg-card);
  border: 2px solid var(--color-border);
  margin-bottom: 5px;
  padding: 3px;
  border-radius: var(--radius-sm);
}

.onlymoderator {
  background: rgba(245, 158, 11, 0.06) !important;
  border: 1px solid rgba(245, 158, 11, 0.15);
}

.onlymoderator .forummessagetextfooter {
  background: none !important;
}

.forummessageshort .forummessageinfo {
  float: left;
  margin-left: 0;
  padding-left: 10px;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
  margin-top: 16px;
}

.forummessageshort .forummessagetext {
  min-height: 0;
  padding-bottom: 10px;
}

.leftpaneltitlegreyex {
  background: var(--color-bg-elevated) !important;
  padding: 8px 16px;
  margin-top: 0;
  height: auto;
  color: var(--color-text-secondary) !important;
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border);
}

.leftpaneltitlegreyex .XPages a {
  color: var(--color-text-secondary) !important;
}

.leftpaneltitlegreyex .XPages {
  margin-top: 4px;
}

.forummessagepages {
  margin-right: 16px;
}

.forumunreadprivates {
  background: var(--color-accent);
  color: var(--color-white) !important;
  margin-left: 8px;
  margin-top: 4px;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
}

.messageheaderimages {
  width: 200px;
}

#pagex .leftpanelreply {
  background: var(--color-bg-elevated) !important;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
}

#pagex .leftpanelreply form div {
  text-align: center;
}

#pagex .leftpanelreply .leftpaneltitle {
  background: none;
}

/* ============================================
   Articles
   ============================================ */
.articlescategory:hover {
  opacity: 0.8;
}

.articlessimilar {
  margin-left: 0;
}

.articlesimilar {
  display: block;
  width: 100%;
  float: left;
}

.articlessimilartitle {
  padding-left: 0;
  background: none !important;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 8px;
  color: var(--color-primary-light);
  letter-spacing: 0.5px;
}

.articlessimilarcontent {
  background-color: rgba(52, 211, 153, 0.06);
  border: 1px solid rgba(52, 211, 153, 0.15);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  padding: 16px;
  color: var(--color-text-secondary);
  margin-top: 10px;
  overflow: auto;
}

.articlesummary {
  background-color: var(--color-bg-elevated);
  border-radius: var(--radius-sm);
  padding: 12px;
  color: var(--color-text-secondary);
}

.articlestitlecategory {
  background: none !important;
  color: var(--color-text-muted);
  font-size: 11px;
  padding: 2px 8px;
  background-color: var(--color-bg-elevated) !important;
  border-radius: 3px;
  display: inline-block;
}

.articlestitlecategory a {
  color: var(--color-text-muted);
}

.articlesdateother {
  background: var(--color-primary-light) !important;
  display: inline-block;
  float: left;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  height: auto;
  width: auto;
  color: var(--color-white);
  border-radius: 3px;
  margin-right: 8px;
}

.articlescommentstitle {
  font-weight: 700;
  font-size: 13px;
  padding-left: 0;
  background: none;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--color-primary-light);
  letter-spacing: 0.5px;
}

.articlescomment {
  background: none;
  background-color: var(--color-bg-elevated);
  width: 100%;
  padding: 16px;
  margin-left: 0;
  margin-bottom: 12px;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-sizing: border-box;
}

.articlescommentfooter {
  width: 100%;
  border: 0;
  background: none;
  padding-top: 12px;
  margin-left: 0;
  padding-left: 0;
  color: var(--color-text-muted);
  font-size: 12px;
  font-style: italic;
  border-top: 1px solid var(--color-border-light);
}

.articlescomment .leftpaneltitle {
  background: none;
  color: var(--color-text-secondary);
  width: auto !important;
}

.articlescommentheader {
  font-size: 12px;
  color: var(--color-text-muted);
}

.leftpanelreply {
  padding: 20px;
  margin-bottom: 16px;
  padding-top: 16px;
  background: var(--color-bg-elevated) !important;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-top: 20px;
  margin-left: auto;
  margin-right: auto;
}

.leftpanelreply .leftpaneltitle {
  color: var(--color-text);
  padding-bottom: 12px;
  background: none;
  font-size: 16px;
  margin-left: 0;
  width: auto;
}

.leftpanelreply textarea {
  width: 100%;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  border-radius: var(--radius-sm);
  padding: 10px;
}

.leftpanelreplytitle {
  background: none;
  width: auto;
  height: auto;
  float: none;
}

.articlespages {
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-elevated);
  color: var(--color-text-secondary);
  font-weight: 600;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}

.articleimage {
  border: 0;
}

.articleimage a {
  background-color: transparent;
}

.articlehomedate {
  background: var(--color-primary-light) !important;
  display: inline-block;
  float: left;
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 6px;
  height: auto;
  width: auto;
  color: var(--color-white);
  border-radius: 3px;
  margin-right: 8px;
}

.articleshomeitem {
  margin-bottom: 6px;
}

.articleslinkstitle {
  padding-left: 0;
  background: none !important;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
  margin-bottom: 8px;
  color: var(--color-primary-light);
  letter-spacing: 0.5px;
}

.articleslinkscontent {
  background-color: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  padding: 16px;
  color: var(--color-text-secondary);
  margin-top: 10px;
}

.articlelink {
  font-size: 12px;
  font-style: italic;
  color: var(--color-text-muted);
}

.articlelink a {
  font-size: 14px;
  font-style: normal;
}

.articleslinks {
  margin-left: 0;
}

.articletext {
  line-height: 1.7;
  padding-right: 0;
  width: 100%;
  color: var(--color-text);
}

.articletext .leftpaneltitle img {
  border: 0;
}

.articletext .leftpaneltitle {
  background: none !important;
}

.articlesutils {
  background: none;
  height: auto;
  padding: 12px 0;
  width: 100%;
  border-top: 1px solid var(--color-border-light);
  margin-top: 12px;
}

.articlesutils a {
  color: var(--color-text-secondary);
  font-weight: 600;
  font-size: 13px;
}

.articlesutils img {
  vertical-align: middle;
  margin-right: 4px;
}

.articlewarning {
  color: var(--color-white);
  font-weight: 600;
  background: none;
  background-color: var(--color-danger) !important;
  border: none !important;
  padding: 8px 12px !important;
  border-radius: var(--radius-sm);
  font-size: 13px;
}

.XCaptcha img {
  margin-right: 8px;
  vertical-align: bottom;
}

.commentheaderimages {
  float: right;
}

/* ============================================
   Pagination
   ============================================ */
.XPages {
  font-weight: 600;
}

.XRowPages a,
.XPages a {
  border: 1px solid var(--color-border);
  background-color: var(--color-bg-card);
  padding: 4px 8px;
  font-size: 12px;
  color: var(--color-text-secondary) !important;
  margin-left: 2px;
  margin-right: 2px;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  text-decoration: none;
}

.XRowPages a:hover,
.XPages a:hover {
  border: 1px solid var(--color-primary-light);
  background-color: var(--color-primary);
  color: var(--color-white) !important;
}

.XPagesNext {
  background: none !important;
  border: 1px solid var(--color-border) !important;
  padding: 4px 12px !important;
  border-radius: var(--radius-sm) !important;
  color: var(--color-text-secondary);
}

.XPagesNext::after {
  content: ' \2192';
}

.XPagesNext:hover {
  background-color: var(--color-primary) !important;
  color: var(--color-white) !important;
}

.XPagesPrev {
  background: none !important;
  border: 1px solid var(--color-border) !important;
  padding: 4px 12px !important;
  border-radius: var(--radius-sm) !important;
  color: var(--color-text-secondary);
}

.XPagesPrev::before {
  content: '\2190 ';
}

.XPagesPrev:hover {
  background-color: var(--color-primary) !important;
  color: var(--color-white) !important;
}

.XFormularTable td div {
  text-align: left !important;
}

/* ============================================
   Tips / Callouts
   ============================================ */
.tips {
  border: 1px solid rgba(245, 158, 11, 0.15);
  background-color: rgba(245, 158, 11, 0.06);
  color: var(--color-text);
  padding: 16px 20px;
  background-image: none;
  padding-left: 20px;
  margin-bottom: 20px;
  margin-top: 20px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  text-align: justify;
  min-height: auto;
  width: auto;
  border-radius: var(--radius-md);
  line-height: 1.6;
}

.tips a {
  color: var(--color-primary-light);
  text-decoration: underline;
}

.tips a:hover {
  color: var(--color-white);
}

/* ============================================
   Form Elements - Dark Theme
   ============================================ */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="search"],
input[type="number"],
input[type="url"],
input[type="tel"],
textarea,
select {
  background: var(--color-bg-elevated);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
textarea:focus,
select:focus {
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

input[type="submit"],
input[type="button"],
button {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  color: var(--color-white);
  border: none;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 50px;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 2px 16px rgba(99, 102, 241, 0.25);
}

input[type="submit"]:hover,
input[type="button"]:hover,
button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(99, 102, 241, 0.4);
}

/* ============================================
   Table styling - Dark Theme
   ============================================ */
table {
  border-collapse: collapse;
}

td, th {
  color: var(--color-text);
}
