/* RAGSASUK ARENA Theme & Styles */
:root {
  --bg-body: #0a0d18;
  --bg-card: #121829;
  --bg-card-alt: #1a2238;
  --bg-input: #182035;
  --border-color: #273454;
  
  --gradient-main: linear-gradient(135deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
  --gradient-btn: linear-gradient(135deg, #f09433 0%, #dc2743 50%, #bc1888 100%);
  --gradient-green: linear-gradient(135deg, #00c300 0%, #009900 100%);
  --gradient-kbank: linear-gradient(135deg, #006b2b 0%, #004d1f 100%);
  
  --primary-color: #dc2743;
  --primary-glow: rgba(220, 39, 67, 0.3);
  --accent-gold: #f59e0b;
  --accent-green: #10b981;
  --accent-cyan: #06b6d4;
  
  --text-main: #ffffff;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  
  --font-family: 'Kanit', sans-serif;
}

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

body {
  background-color: var(--bg-body);
  color: var(--text-main);
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(240, 148, 51, 0.08) 0%, transparent 45%),
    radial-gradient(circle at 90% 80%, rgba(188, 24, 136, 0.08) 0%, transparent 45%);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navbar */
.navbar {
  background: rgba(18, 24, 41, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.brand-logo-img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f09433;
  box-shadow: 0 0 12px rgba(240, 148, 51, 0.5);
}

.hero-logo-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #f09433;
  box-shadow: 0 0 25px rgba(240, 148, 51, 0.6);
  margin-bottom: 16px;
}

.form-logo-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f09433;
  margin-bottom: 12px;
}

.footer-logo-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f09433;
  margin-bottom: 10px;
}

.flex-center-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.brand {
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.subbrand {
  font-size: 11px;
  font-weight: 600;
  color: var(--accent-cyan);
  display: block;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 8px;
}

.nav-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-muted);
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-btn:hover {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.06);
}

.nav-btn.active {
  background: var(--gradient-btn);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
}

.admin-btn {
  border: 1px dashed rgba(245, 158, 11, 0.4);
  color: var(--accent-gold);
}

.admin-btn:hover {
  background: rgba(245, 158, 11, 0.15);
}

/* Rain Maintenance Alert Banner */
.rain-alert-banner {
  background: linear-gradient(135deg, rgba(220, 39, 67, 0.25) 0%, rgba(240, 148, 51, 0.25) 100%);
  border: 2px solid #ef4444;
  border-radius: var(--radius-md);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.alert-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.alert-content strong {
  font-size: 16px;
  color: #ef4444;
  display: block;
  margin-bottom: 4px;
}

.alert-content p {
  font-size: 14px;
  color: var(--text-main);
  margin: 0;
}

.badge-turf-only {
  background: rgba(16, 185, 129, 0.25);
  border: 1px solid #10b981;
  color: #10b981;
  font-size: 12px;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 12px;
  margin-left: 6px;
}

/* Hero Section */
.hero-section {
  padding: 40px 0 30px;
  text-align: center;
}

.arena-tag {
  display: inline-block;
  background: rgba(240, 148, 51, 0.15);
  border: 1px solid rgba(240, 148, 51, 0.3);
  color: #f09433;
  font-size: 13px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.hero-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}

.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 24px;
}

/* 4-Step Workflow Timeline Box */
.workflow-timeline-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.workflow-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.wf-step {
  background: var(--bg-card-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.wf-num {
  background: var(--gradient-btn);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wf-text strong {
  display: block;
  font-size: 13px;
  color: var(--text-main);
  margin-bottom: 2px;
}

.wf-text small {
  font-size: 11px;
  color: var(--text-muted);
  line-height: 1.3;
  display: block;
}

/* Clean 50/50 Equal Split Layout Container */
.split-50-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 24px;
  align-items: start;
}

.split-column {
  background: var(--bg-card-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.column-header-badge {
  padding: 12px 18px;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.red-gradient-badge {
  background: linear-gradient(135deg, #ef4444 0%, #dc2743 100%);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.green-gradient-badge {
  background: var(--gradient-green);
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.announcement-subcard {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.badge-tag {
  font-size: 13px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 14px;
  align-self: flex-start;
}

.red-tag {
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
  border: 1px solid #ef4444;
}

.blue-tag {
  background: rgba(6, 182, 212, 0.15);
  color: var(--accent-cyan);
  border: 1px solid var(--accent-cyan);
}

.poster-img-50 {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
  border: 2px solid #ef4444;
  box-shadow: 0 6px 16px rgba(239, 68, 68, 0.3);
}

.poster-title-red {
  color: #ef4444;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.poster-desc-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

.turf-active-banner {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid #10b981;
  color: #10b981;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 8px;
  text-align: center;
}

.rules-list-50 {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rule-item-50 {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-card);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border-left: 3px solid #10b981;
  font-size: 13px;
}

.rule-num-50 {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  font-weight: 800;
  font-size: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.rules-warning-box-50 {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-size: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  margin-top: 10px;
}

/* Image Slider Carousel */
.slider-wrapper {
  position: relative;
  max-width: 800px;
  height: 340px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-color);
}

.slides {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, transparent 100%);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  color: #fff;
  border: none;
  font-size: 20px;
  padding: 12px 16px;
  cursor: pointer;
  border-radius: 50%;
  transition: all 0.2s ease;
  z-index: 10;
}

.slider-btn:hover {
  background: var(--primary-color);
}

.slider-btn.prev { left: 16px; }
.slider-btn.next { right: 16px; }

/* Main Section */
.main-container {
  padding: 30px 20px 80px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

/* Schedule Matrix Box */
.matrix-box {
  margin-bottom: 30px;
}

.matrix-filter-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.filter-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.filter-item label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
}

/* High Contrast Bright Date Picker */
input[type="date"], .bright-date-picker {
  color-scheme: dark;
  background: #1c2744 !important;
  border: 2px solid #f09433 !important;
  color: #ffffff !important;
  font-weight: 600 !important;
  box-shadow: 0 0 10px rgba(240, 148, 51, 0.2);
}

input[type="date"]::-webkit-calendar-picker-indicator,
.bright-date-picker::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(1.8) sepia(1) hue-rotate(350deg);
  cursor: pointer;
  opacity: 1;
  font-size: 18px;
  padding: 4px;
  background-color: rgba(240, 148, 51, 0.2);
  border-radius: 6px;
}

.legend-bar {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  font-size: 13px;
  background: var(--bg-card-alt);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
}

.legend-tags {
  display: flex;
  gap: 16px;
  align-items: center;
}

.legend-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

.multi-slots-badge {
  background: rgba(240, 148, 51, 0.2);
  border: 1px solid rgba(240, 148, 51, 0.5);
  color: #f09433;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

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

.legend-tag.available .badge-dot { background: var(--accent-green); box-shadow: 0 0 8px var(--accent-green); }
.legend-tag.selected .badge-dot { background: var(--accent-gold); box-shadow: 0 0 8px var(--accent-gold); }
.legend-tag.booked .badge-dot { background: var(--primary-color); }

/* Vertical Days Schedule Table */
.schedule-matrix-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 13px;
}

.schedule-matrix-table th, .schedule-matrix-table td {
  padding: 12px 10px;
  border: 1px solid var(--border-color);
}

.schedule-matrix-table th {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-muted);
  font-weight: 600;
}

.sticky-col {
  position: sticky;
  left: 0;
  background: var(--bg-card) !important;
  z-index: 5;
  text-align: left !important;
  font-weight: 700;
  min-width: 170px;
}

.day-title-box {
  display: flex;
  flex-direction: column;
}

.day-title-main {
  font-size: 14px;
  color: var(--text-main);
  font-weight: 700;
}

.day-title-sub {
  font-size: 11px;
  color: var(--accent-gold);
}

.matrix-slot-btn {
  width: 100%;
  padding: 8px 6px;
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: 12px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.matrix-slot-btn.available {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.4);
  color: #10b981;
}

.matrix-slot-btn.available:hover {
  background: var(--gradient-green);
  color: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
}

.matrix-slot-btn.booked {
  background: rgba(220, 39, 67, 0.12);
  border-color: rgba(220, 39, 67, 0.25);
  color: #ef4444;
  cursor: not-allowed;
  opacity: 0.7;
}

.matrix-slot-btn.selected {
  background: var(--gradient-main);
  color: #ffffff;
  box-shadow: 0 0 14px rgba(240, 148, 51, 0.8);
}

/* Multi Time Slots Selection Checkboxes in Form */
.time-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  gap: 10px;
  margin-top: 8px;
}

.time-slot-chip {
  position: relative;
}

.time-slot-chip input[type="checkbox"] {
  display: none;
}

.time-slot-chip label {
  display: block;
  padding: 10px;
  background: var(--bg-input);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  margin: 0;
}

.time-slot-chip input[type="checkbox"]:checked + label {
  background: var(--gradient-btn);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(220, 39, 67, 0.4);
}

.time-slot-chip input[type="checkbox"]:disabled + label {
  background: rgba(220, 39, 67, 0.1);
  border-color: rgba(220, 39, 67, 0.2);
  color: #ef4444;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Card Boxes & Forms */
.form-card, .card-box {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  max-width: 680px;
  margin: 0 auto;
}

.card-box {
  max-width: 100%;
}

.card-header {
  margin-bottom: 28px;
}

.card-header h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 6px;
}

.card-header p {
  color: var(--text-muted);
  font-size: 14px;
}

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

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text-main);
}

.form-group label span {
  color: var(--primary-color);
}

.form-input {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-input);
  border: 2px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-main);
  font-family: var(--font-family);
  font-size: 15px;
  outline: none;
  transition: all 0.3s ease;
}

.form-input:focus {
  border-color: #dc2743;
  box-shadow: 0 0 0 4px var(--primary-glow);
}

.form-input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Price Box */
.price-summary-box {
  background: rgba(220, 39, 67, 0.12);
  border: 1px solid var(--primary-color);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.price-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
}

.price-value {
  font-size: 26px;
  font-weight: 800;
  color: #f09433;
}

/* Kasikorn Bank Card Theme */
.qr-card.kbank-theme {
  background: #ffffff;
  color: #1a1a1a;
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.5);
  border: 2px solid #006b2b;
}

.bank-header {
  font-size: 16px;
  color: #006b2b;
  border-bottom: 1px dashed #ddd;
  padding-bottom: 10px;
}

.account-num-highlight {
  font-size: 20px;
  color: #006b2b;
  font-weight: 800;
  letter-spacing: 1px;
}

.bank-row {
  margin-bottom: 8px;
  font-size: 14px;
}

.bank-label {
  color: #666;
  font-size: 12px;
  display: block;
}

.text-left { text-align: left; }

/* LINE Group QR Code Box */
.line-qr-card {
  background: rgba(0, 195, 0, 0.1);
  border: 1.5px solid rgba(0, 195, 0, 0.4);
  border-radius: var(--radius-md);
  padding: 16px 20px;
}

.line-qr-header {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #00c300;
  font-size: 15px;
}

/* Buttons */
.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--gradient-btn);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(220, 39, 67, 0.4);
}

.btn-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(220, 39, 67, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 13px;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
}

/* Payment Grid & Line Group Button */
.payment-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: start;
}

.line-instructions-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.line-official-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px;
  background: var(--gradient-green);
  color: #ffffff;
  font-size: 17px;
  font-weight: 700;
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 195, 0, 0.4);
  transition: all 0.3s ease;
  margin-top: 10px;
}

.line-official-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 195, 0, 0.6);
}

.line-icon {
  font-size: 24px;
}

/* Tables */
.table-responsive {
  overflow-x: auto;
  margin-top: 10px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 14px;
}

.data-table th, .data-table td {
  padding: 16px;
  border-bottom: 1px solid var(--border-color);
}

.data-table th {
  color: var(--text-muted);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.02);
}

.data-table tbody tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* Badges */
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.badge-approved {
  background: rgba(16, 185, 129, 0.2);
  color: #10b981;
  border: 1px solid #10b981;
}

.badge-pending {
  background: rgba(245, 158, 11, 0.2);
  color: #f59e0b;
  border: 1px solid #f59e0b;
}

/* Admin Dashboard Stats */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.stat-box {
  background: var(--bg-card-alt);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon {
  font-size: 30px;
}

.stat-num {
  font-size: 22px;
  font-weight: 700;
}

.stat-desc {
  font-size: 13px;
  color: var(--text-muted);
}

.stat-box.gold .stat-num { color: var(--accent-gold); }
.stat-box.blue .stat-num { color: var(--accent-cyan); }
.stat-box.orange .stat-num { color: #f09433; }

/* Toast */
.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--bg-card-alt);
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-md);
  font-size: 15px;
  z-index: 1000;
}

.hidden {
  display: none !important;
}

.text-center { text-align: center; }

.footer {
  border-top: 1px solid var(--border-color);
  padding: 30px 0;
  color: var(--text-muted);
  font-size: 14px;
  background: var(--bg-card);
}

@media (max-width: 768px) {
  .split-50-container { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .payment-grid { grid-template-columns: 1fr; }
  .workflow-steps { grid-template-columns: 1fr 1fr; }
  .payment-steps-vertical { grid-template-columns: 1fr; }
  .slider-wrapper { height: 220px; }
  .nav-container { flex-direction: column; height: auto; padding: 16px; gap: 10px; }
  .matrix-filter-group { flex-direction: column; align-items: flex-start; }
}
