/* ============================================
   BetNigeriaSlots.ng - Main Stylesheet
   Minimalist, Mobile-First, Fast
   ============================================ */

/* --- CSS Variables --- */
:root {
  --bg-primary: #0a0e17;
  --bg-secondary: #111827;
  --bg-card: #1a2235;
  --bg-card-hover: #1f2a40;
  --bg-accent: #162032;
  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --gold: #f59e0b;
  --gold-light: #fbbf24;
  --gold-dark: #d97706;
  --green: #10b981;
  --green-dark: #059669;
  --red: #ef4444;
  --blue: #3b82f6;
  --border: #1e293b;
  --border-light: #334155;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.4);
  --transition: 0.2s ease;
  --max-width: 1100px;
  --header-height: 60px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

/* --- Typography --- */
h1, h2, h3, h4 { line-height: 1.3; font-weight: 700; color: var(--text-primary); }
h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.4rem, 3vw, 1.875rem); margin: 2.5rem 0 1rem; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.375rem); margin: 2rem 0 0.75rem; }
h4 { font-size: 1.1rem; margin: 1.5rem 0 0.5rem; }
p { margin-bottom: 1rem; color: var(--text-secondary); }
ul, ol { margin: 0 0 1rem 1.25rem; color: var(--text-secondary); }
li { margin-bottom: 0.4rem; }
strong { color: var(--text-primary); }

/* --- Layout --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1rem; }

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 23, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: var(--header-height);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.logo-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.logo span { color: var(--gold); }

/* Nav */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle i {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

.main-nav {
  display: none;
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 0;
  box-shadow: var(--shadow);
}

.main-nav.active { display: block; }

.main-nav a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active { color: var(--gold); background: var(--bg-accent); }

.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .nav-toggle { display: none; }

  .main-nav {
    display: flex;
    position: static;
    background: none;
    border: none;
    padding: 0;
    box-shadow: none;
    gap: 0.25rem;
    align-items: center;
  }

  .main-nav a {
    padding: 0.4rem 0.6rem;
    font-size: 0.8rem;
    border-radius: var(--radius-sm);
    white-space: nowrap;
  }

  .header-cta {
    display: inline-flex;
  }
}

/* --- Hero --- */
.hero {
  padding: 3rem 0 2.5rem;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
}

.hero h1 {
  max-width: 700px;
  margin: 0 auto 1rem;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  white-space: nowrap;
}

.badge-gold { border-color: var(--gold-dark); color: var(--gold); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(245, 158, 11, 0.4);
  color: #000;
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background: var(--bg-card-hover);
  border-color: var(--gold-dark);
  color: var(--gold);
}

.btn-green {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}

.btn-green:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(16, 185, 129, 0.4);
  color: #fff;
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.8rem; }
.btn-lg { padding: 0.85rem 2rem; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }

/* --- Cards --- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  transition: var(--transition);
}

.card:hover {
  border-color: var(--border-light);
  box-shadow: var(--shadow-sm);
}

/* --- Casino Rating Card (mobile-first, no scroll) --- */
.casino-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin-bottom: 1rem;
  transition: var(--transition);
}

.casino-card:hover {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 1px var(--gold-dark), var(--shadow);
}

.casino-card-rank {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-weight: 800;
  font-size: 0.8rem;
  border-radius: 50%;
  margin-bottom: 0.75rem;
}

.casino-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.casino-card-logo {
  width: 64px;
  height: 40px;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
}

.casino-card-info { flex: 1; min-width: 0; }

.casino-card-name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
  color: var(--text-primary);
}

.casino-card-bonus {
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 600;
}

/* Star Rating */
.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold);
  font-size: 0.85rem;
}

.stars-value {
  margin-left: 0.4rem;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 600;
}

/* Rating Bars */
.rating-bars {
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0;
}

.rating-bar-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
}

.rating-bar-label {
  width: 75px;
  flex-shrink: 0;
  color: var(--text-muted);
}

.rating-bar {
  flex: 1;
  height: 6px;
  background: var(--bg-primary);
  border-radius: 3px;
  overflow: hidden;
}

.rating-bar-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold));
  transition: width 0.6s ease;
}

.rating-bar-val {
  width: 30px;
  text-align: right;
  color: var(--text-secondary);
  font-weight: 600;
  flex-shrink: 0;
}

/* Casino card features */
.casino-card-features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.75rem 0;
}

.feature-tag {
  padding: 0.25rem 0.6rem;
  background: var(--bg-accent);
  border-radius: 20px;
  font-size: 0.75rem;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.casino-card-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.casino-card-actions .btn { width: 100%; justify-content: center; }

@media (min-width: 640px) {
  .casino-card-actions {
    flex-direction: row;
  }
  .casino-card-actions .btn { flex: 1; }
}

/* Top Pick highlight */
.casino-card.top-pick {
  border-color: var(--gold-dark);
  position: relative;
}

.top-pick-label {
  position: absolute;
  top: -10px;
  left: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Tables (mobile card transform) --- */
.table-wrap { margin: 1.5rem 0; }

/* Desktop table */
.data-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

.data-table th {
  background: var(--bg-accent);
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid var(--border);
}

.data-table td {
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--bg-card-hover); }

/* Mobile: hide table, show cards */
.table-cards { display: none; }

@media (max-width: 639px) {
  .data-table { display: none; }
  .table-cards { display: block; }

  .table-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-bottom: 0.75rem;
  }

  .table-card-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border);
  }

  .table-card-row:last-child { border-bottom: none; }

  .table-card-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
  }

  .table-card-value {
    font-size: 0.85rem;
    color: var(--text-primary);
    font-weight: 600;
    text-align: right;
  }
}

/* --- Content Image Block --- */
.content-img {
  margin: 2rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16/9;
  background: var(--bg-card);
}

.content-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.content-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.5rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* --- Expert Opinion Block --- */
.expert-block {
  background: var(--bg-card);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}

.expert-block-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.expert-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: #000;
  flex-shrink: 0;
}

.expert-name { font-weight: 600; font-size: 0.9rem; }
.expert-title { font-size: 0.8rem; color: var(--text-muted); }
.expert-block p { color: var(--text-secondary); font-style: italic; margin-bottom: 0.5rem; }
.expert-block p:last-child { margin-bottom: 0; }

/* --- FAQ --- */
.faq-list { margin: 1.5rem 0; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  background: var(--bg-card);
  border: none;
  padding: 1rem 1.25rem;
  color: var(--text-primary);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: var(--transition);
}

.faq-q:hover { background: var(--bg-card-hover); }

.faq-q::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.active .faq-q::after {
  content: '\2212';
}

.faq-a {
  display: none;
  padding: 0 1.25rem 1rem;
  background: var(--bg-card);
}

.faq-item.active .faq-a { display: block; }

.faq-a p { font-size: 0.9rem; color: var(--text-secondary); }

/* --- TOC --- */
.toc {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin: 1.5rem 0;
}

.toc-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.toc ol {
  margin: 0;
  padding-left: 1.25rem;
  counter-reset: toc-counter;
  list-style: none;
}

.toc li {
  counter-increment: toc-counter;
  margin-bottom: 0.4rem;
}

.toc li::before {
  content: counter(toc-counter) ".";
  color: var(--gold);
  font-weight: 600;
  margin-right: 0.4rem;
}

.toc a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  transition: var(--transition);
}

.toc a:hover { color: var(--gold); }

/* --- TLDR --- */
.tldr {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.08), rgba(245, 158, 11, 0.03));
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin: 1.5rem 0;
}

.tldr-label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.tldr p { color: var(--text-primary); margin-bottom: 0.5rem; }
.tldr p:last-child { margin-bottom: 0; }

/* --- CTA Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-accent));
  border: 1px solid var(--gold-dark);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  margin: 2.5rem 0;
}

.cta-banner h3 { margin-top: 0; color: var(--gold); }
.cta-banner p { max-width: 500px; margin: 0.5rem auto 1.25rem; }

/* --- Pros/Cons --- */
.pros-cons {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

@media (min-width: 640px) {
  .pros-cons { grid-template-columns: 1fr 1fr; }
}

.pros, .cons {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
}

.pros { border-top: 3px solid var(--green); }
.cons { border-top: 3px solid var(--red); }

.pros-title, .cons-title {
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.pros-title { color: var(--green); }
.cons-title { color: var(--red); }

.pros ul, .cons ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pros li, .cons li {
  padding: 0.3rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.9rem;
}

.pros li::before { content: '\2713'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.cons li::before { content: '\2717'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* --- Updated Badge --- */
.updated-date {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.updated-date strong { color: var(--text-secondary); }

/* --- Footer --- */
.site-footer {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

.footer-about p { font-size: 0.85rem; color: var(--text-muted); }

.footer-links h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.footer-links a {
  display: block;
  color: var(--text-secondary);
  font-size: 0.85rem;
  padding: 0.25rem 0;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 700px;
  margin: 0.75rem auto 0;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 1rem 0 0;
  font-size: 0.8rem;
}

.breadcrumbs a { color: var(--text-muted); }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs span { color: var(--text-muted); margin: 0 0.35rem; }
.breadcrumbs .current { color: var(--text-secondary); }

/* --- Utility --- */
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }

/* --- Section Divider --- */
.section-divider {
  border: none;
  height: 1px;
  background: var(--border);
  margin: 2.5rem 0;
}

/* --- Comparison Grid --- */
.compare-grid {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0;
}

@media (min-width: 640px) {
  .compare-grid-2 { grid-template-columns: 1fr 1fr; }
  .compare-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
}

/* --- Bonus Box --- */
.bonus-box {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.03));
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin: 1.5rem 0;
  text-align: center;
}

.bonus-box-amount {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--green);
  margin-bottom: 0.25rem;
}

.bonus-box-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

/* --- Checklist --- */
.checklist {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.checklist li {
  padding: 0.5rem 0 0.5rem 1.75rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border);
}

.checklist li:last-child { border-bottom: none; }

.checklist li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
  font-size: 1rem;
}

/* --- Internal Links Block --- */
.related-links {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  margin: 2rem 0;
}

.related-links h4 {
  margin-top: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.related-links-grid {
  display: grid;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .related-links-grid { grid-template-columns: 1fr 1fr; }
}

.related-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: var(--bg-accent);
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: 0.85rem;
  transition: var(--transition);
}

.related-link:hover {
  color: var(--gold);
  background: var(--bg-card-hover);
}

.related-link::before {
  content: '\2192';
  color: var(--gold);
  flex-shrink: 0;
}

/* --- Print / Accessibility --- */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; }
}

@media print {
  .site-header, .site-footer, .cta-banner, .btn { display: none; }
  body { background: #fff; color: #000; }
}
