/* Mobile Arena UK - Clean Machine-Scannable Commercial CSS */
:root {
  --primary: #0f172a;
  --primary-accent: #2563eb;
  --primary-hover: #1d4ed8;
  --bg-light: #f8fafc;
  --card-bg: #ffffff;
  --text-main: #0f172a;
  --text-muted: #475569;
  --border-color: #cbd5e1;
  --success-bg: #ecfdf5;
  --success-text: #065f46;
  --success-border: #a7f3d0;
  --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-family);
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Notice Bar */
.top-notice-bar {
  background: #0f172a;
  color: #e2e8f0;
  font-size: 13px;
  padding: 8px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #334155;
}
.top-notice-bar strong { color: #38bdf8; }

/* Header */
header {
  background: #ffffff;
  border-bottom: 2px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #0f172a;
}
.brand-badge {
  background: linear-gradient(135deg, #1e3a8a, #2563eb);
  color: #ffffff;
  font-weight: 800;
  font-size: 18px;
  padding: 6px 12px;
  border-radius: 6px;
  letter-spacing: 0.5px;
}
.brand-text h1 {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #0f172a;
}
.brand-text span {
  font-size: 11px;
  color: #64748b;
  display: block;
  font-weight: 600;
  text-transform: uppercase;
}

/* Nav */
nav.main-nav {
  display: flex;
  gap: 18px;
}
nav.main-nav a {
  text-decoration: none;
  color: #334155;
  font-weight: 600;
  font-size: 14px;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all 0.2s;
}
nav.main-nav a:hover, nav.main-nav a.active {
  color: #2563eb;
  background: #eff6ff;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 24px auto;
  padding: 0 24px;
}

/* Hero Value Props */
.hero-box {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.hero-title-area {
  margin-bottom: 16px;
}
.hero-title-area h2 {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
}
.hero-title-area p {
  color: #475569;
  font-size: 14px;
  margin-top: 4px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.pillar-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 16px;
}
.pillar-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.pillar-card p {
  font-size: 12px;
  color: #475569;
  line-height: 1.4;
}

/* Legal & Compliance Card */
.legal-banner {
  background: #f1f5f9;
  border-left: 4px solid #2563eb;
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin-bottom: 24px;
  font-size: 13px;
}
.legal-banner h3 {
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}
.legal-banner p {
  color: #334155;
  margin-bottom: 4px;
}

/* Tables */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.section-header h2 {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}
.section-header span {
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
}

.data-table-wrapper {
  background: #ffffff;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  margin-bottom: 28px;
}
table.data-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 13px;
}
table.data-table th {
  background: #f1f5f9;
  color: #1e293b;
  font-weight: 700;
  padding: 12px 16px;
  border-bottom: 2px solid #cbd5e1;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.3px;
}
table.data-table td {
  padding: 12px 16px;
  border-bottom: 1px solid #e2e8f0;
  color: #1e293b;
  vertical-align: middle;
}
table.data-table tr:hover {
  background: #f8fafc;
}

/* Badges */
.badge-grade-a-plus {
  background: #dbeafe;
  color: #1e40af;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  display: inline-block;
}
.badge-grade-a {
  background: #ecfdf5;
  color: #065f46;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  display: inline-block;
}
.badge-stock {
  background: #fef3c7;
  color: #92400e;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  display: inline-block;
}
.badge-verified {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
  font-weight: 600;
  padding: 3px 6px;
  border-radius: 4px;
  font-size: 11px;
}

/* Footer */
footer.site-footer {
  background: #0f172a;
  color: #94a3b8;
  padding: 36px 0 20px 0;
  border-top: 1px solid #1e293b;
  margin-top: 40px;
  font-size: 13px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
}
.footer-col h3 {
  color: #f8fafc;
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 12px;
}
.footer-col p {
  line-height: 1.6;
  margin-bottom: 8px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 6px;
}
.footer-col ul li a {
  color: #94a3b8;
  text-decoration: none;
}
.footer-col ul li a:hover {
  color: #38bdf8;
}
.footer-bottom {
  max-width: 1280px;
  margin: 24px auto 0 auto;
  padding: 16px 24px 0 24px;
  border-top: 1px solid #1e293b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #64748b;
}
