/* ═══════════════════════════════════════════
   SlotVerdict — Base Styles
   ═══════════════════════════════════════════ */

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

:root {
  --bg: #FAFAFA;
  --white: #FFFFFF;
  --ink-1: #1A1A1A;
  --ink-2: #4A4A4A;
  --ink-3: #7A7A7A;
  --ink-4: #B0B0B0;
  --line: #EAEAEA;
  --teal: #0D9488;
  --teal-l: #F0FDFA;
  --amber: #D97706;
  --amber-l: #FFFBEB;
  --green: #059669;
  --green-l: #ECFDF5;
  --red: #DC2626;
  --red-l: #FEF2F2;
  --blue: #2563EB;
  --blue-l: #EFF6FF;
  --font: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
}

html { overflow-x: hidden; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink-1);
  font-size: 14px;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
/* All direct body children must be full viewport width */
body > * {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  align-self: stretch;
  flex-shrink: 0;
}
/* IRONCLAD: Header & Footer always full width — never constrain */
.hd-outer, header.hd-outer {
  width: 100% !important;
  max-width: none !important;
  flex-shrink: 0 !important;
}
.ft-outer, footer.ft-outer {
  width: 100% !important;
  max-width: none !important;
  flex-shrink: 0 !important;
  margin-top: auto;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; }

/* SVG Icon System */
.icon { width: 18px; height: 18px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon svg { width: 100%; height: 100%; }
.icon-sm { width: 14px; height: 14px; }
.icon-md { width: 18px; height: 18px; }
.icon-lg { width: 22px; height: 22px; }

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font);
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all 0.15s;
  text-decoration: none;
  border: none;
}
.btn svg { width: 16px; height: 16px; }
.btn-primary { background: var(--ink-1); color: #fff; }
.btn-primary:hover { background: #374151; }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: #0F766E; }
.btn-outline { background: var(--white); color: var(--ink-2); border: 1px solid var(--line); }
.btn-outline:hover { border-color: var(--ink-4); }

/* ═══ PANELS ═══ */
.panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.panel-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}
.panel-title { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 700; }
.panel-title svg { width: 18px; height: 18px; }
.panel-link { font-size: 12px; font-weight: 600; color: var(--teal); text-decoration: none; }
.panel-link:hover { text-decoration: underline; }
.panel-bd { padding: 16px; }

/* ═══ BREADCRUMBS ═══ */
.bc { font-size: 12px; color: var(--ink-3); margin-bottom: 16px; }
.bc a { color: var(--ink-3); text-decoration: none; }
.bc a:hover { color: var(--teal); }

/* ═══ FORM ELEMENTS ═══ */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 12px; font-weight: 600; color: var(--ink-2); }
.form-input {
  width: 100%;
  padding: 12px 14px;
  font-size: 14px;
  font-family: var(--font);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  outline: none;
  transition: all 0.15s;
}
.form-input:focus { border-color: var(--teal); box-shadow: 0 0 0 3px var(--teal-l); }

/* ═══ STATUS BADGES ═══ */
.status-badge { padding: 4px 10px; font-size: 10px; font-weight: 700; border-radius: 4px; display: inline-block; }
.status-badge.approved { background: var(--green-l); color: var(--green); }
.status-badge.pending { background: var(--amber-l); color: var(--amber); }
.status-badge.rejected { background: var(--red-l); color: var(--red); }

/* ═══ STAR RATING ═══ */
.review-stars { display: flex; gap: 2px; }
.review-stars svg { width: 12px; height: 12px; }
.review-stars svg.filled { color: var(--amber); fill: var(--amber); }
.review-stars svg.empty { color: var(--line); }

/* ═══ LANGUAGE SWITCHER ═══ */
.lang-sw { display: flex; align-items: center; gap: 4px; }
.lang-sw a,
.lang-sw span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.15s;
}
.lang-sw a { color: var(--ink-3); background: var(--bg); }
.lang-sw a:hover { color: var(--ink-1); background: var(--line); }
.lang-sw span.active { color: #fff; background: var(--teal); }

/* ═══ PAGE CONTAINER ═══ */
.page { width: 100%; max-width: 1400px; margin: 0 auto; padding: 20px 28px; box-sizing: border-box; }

/* ═══ CASINO LOGO (rectangular, no crop) ═══ */
.sv-logo {
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  background: #fff;
}
.sv-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  padding: 4px;
}
.sv-logo span {
  font-weight: 800;
  color: #fff;
}

/* Sizes: all rectangular (wider than tall) */
.sv-logo-xxs { width: 40px; height: 28px; border-radius: var(--r-sm); }
.sv-logo-xxs span { font-size: 9px; }
.sv-logo-xs { width: 48px; height: 36px; border-radius: var(--r-sm); }
.sv-logo-xs span { font-size: 10px; }

.sv-logo-sm { width: 56px; height: 40px; border-radius: var(--r-sm); }
.sv-logo-sm span { font-size: 11px; }

.sv-logo-md { width: 72px; height: 48px; }
.sv-logo-md span { font-size: 14px; }

.sv-logo-lg { width: 96px; height: 56px; }
.sv-logo-lg span { font-size: 18px; }

.sv-logo-xl { width: 120px; height: 64px; border-radius: var(--r-lg); }
.sv-logo-xl span { font-size: 22px; }

/* ═══ PAYMENT TAGS WITH LOGOS ═══ */
.pay.has-logo {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  line-height: 1;
  white-space: nowrap;
  vertical-align: middle;
}
.pay.has-logo:hover { border-color: var(--ink-4); }
.pay.has-logo img {
  width: auto !important;
  height: 22px !important;
  max-width: 64px !important;
  display: block !important;
  object-fit: contain !important;
  height: 28px !important;
  max-width: 40px !important;
  max-height: 28px !important;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  border-radius: 3px;
}
.pay.has-logo span { font-size: 11px; }

/* Fix dark logo backgrounds (Google Pay etc) */
.pay.has-logo img {
}

/* Payment logo cleanup - clip edges, ensure white bg */
.pay.has-logo {
  background: #fff !important;
}
.pay.has-logo img {
  border-radius: 4px;
  background: #fff;
}

/* ═══ LOGO FRAME (global) ═══ */
.sv-logo {
  border: 2px solid var(--line);
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: all 0.2s;
}
.sv-logo:hover {
  border-color: var(--teal);
  box-shadow: 0 3px 12px rgba(13,148,136,0.1);
}

/* Payment logos with dark backgrounds: round corners to look like app icons */
.pay.has-logo img {
  border-radius: 6px !important;
  overflow: hidden;
}

/* ════════════════════════════════════════
   GLOBAL MOBILE ADAPTATION
   ════════════════════════════════════════ */
@media(max-width: 768px) {
  .page {
    padding: 14px 14px 90px !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }
  .bc {
    font-size: 12px !important;
    margin-bottom: 10px !important;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  }
  h1 { font-size: 24px !important; }
  h2 { font-size: 18px !important; }
  input, select, textarea { font-size: 16px !important; }
}
