:root {
  --bg: #ffffff;
  --card: #f8f9fa;
  --text: #000000;
  --muted: #333333;
  --line: #e0e0e0;
  --accent: #2563eb;
  --success: #16a34a;
  --danger: #dc2626;
  --table-head: #f3f4f6;
  --table-zebra: #fbfcff;
  --table-hover: #eef2ff;
  --mint: #eafaf1;
  --lavender: #f3efff;
  --peach: #fff1e6;
  --sky: #eaf4ff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji";
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

header {
  border-bottom: none;
  background: var(--bg);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 20px;
}

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

.brand {
  font-weight: 700;
  letter-spacing: 0.2px;
}

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

main {
  padding: 28px 0 44px;
}

.card {
  background: var(--bg);
  border: none;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--sky), var(--lavender));
  opacity: 0.9;
}

.casino-card {
  background: var(--bg);
  border: none;
  border-radius: 12px;
  padding: 32px;
  margin-bottom: 32px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  position: relative;
  overflow: hidden;
}

.casino-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--mint), var(--peach));
  opacity: 0.9;
}

.casino-header {
  margin-bottom: 20px;
}

.casino-header h3 {
  margin-top: 12px;
  font-size: 22px;
}

.casino-number {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 8px;
}

.casino-rating {
  display: inline-block;
  background: #fbbf24;
  color: #000;
  padding: 6px 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  margin-top: 12px;
}

h1 {
  font-size: 36px;
  line-height: 1.2;
  margin: 0 0 16px;
  font-weight: 800;
}

h2 {
  font-size: 26px;
  margin: 36px 0 16px;
  font-weight: 700;
  color: var(--text);
}

h3 {
  font-size: 20px;
  margin: 24px 0 12px;
  color: var(--text);
  font-weight: 700;
}

h4 {
  font-size: 16px;
  margin: 16px 0 8px;
  color: var(--text);
  font-weight: 600;
}

p {
  margin: 12px 0;
  color: var(--muted);
  line-height: 1.7;
}

ul,
ol {
  margin: 12px 0 12px 0;
  color: var(--muted);
  line-height: 1.7;
  padding-left: 24px;
}

li {
  margin: 6px 0;
}

.note {
  margin-top: 16px;
  padding: 14px 18px;
  border: none;
  border-radius: 10px;
  background: var(--lavender);
  color: var(--muted);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.intro-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  margin: 16px 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 10px;
  border: none;
  background: var(--bg);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

th,
td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
  text-align: left;
}

th {
  font-size: 14px;
  font-weight: 700;
  text-transform: none;
  color: var(--text);
  background: var(--table-head);
}

td {
  color: var(--muted);
  font-size: 14px;
}

tbody tr:nth-child(odd) {
  background: var(--table-zebra);
}

tbody tr:hover {
  background: var(--table-hover);
}

tbody tr:last-child td {
  border-bottom: none;
}

.specs-table {
  width: 100%;
  margin: 20px 0;
}

.specs-table tr:nth-child(odd) td {
  background: rgba(37, 99, 235, 0.04);
}

.specs-table td {
  padding: 12px;
  border-bottom: 1px solid var(--line);
}

.specs-table td:first-child {
  font-weight: 600;
  width: 40%;
  color: var(--text);
}

.pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 24px 0;
}

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

.pros-box, .cons-box {
  padding: 20px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.pros-box {
  background: #f0fdf4;
  border-color: var(--success);
}

.cons-box {
  background: #fef2f2;
  border-color: var(--danger);
}

.pros-box h4 {
  color: var(--success);
  margin-top: 0;
}

.cons-box h4 {
  color: var(--danger);
  margin-top: 0;
}

.pros-box ul, .cons-box ul {
  margin: 12px 0;
  padding-left: 20px;
}

.btn-casino {
  display: block;
  width: 100%;
  padding: 16px 24px;
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  color: white;
  text-align: center;
  border-radius: 10px;
  font-weight: 700;
  font-size: 18px;
  text-decoration: none;
  margin: 24px 0;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.btn-casino:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.4);
  text-decoration: none;
}

.btn-secondary {
  background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.btn-secondary:hover {
  box-shadow: 0 6px 16px rgba(22, 163, 74, 0.4);
}

.table-cta {
  display: inline-block;
  padding: 8px 10px;
  background: var(--success);
  color: #fff;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.table-cta:hover {
  text-decoration: none;
  filter: brightness(0.95);
}

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

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

footer {
  border-top: none;
  padding: 24px 0;
  color: var(--muted);
  background: var(--card);
}

.footer-prevention {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-prevention strong {
  color: var(--text);
}

.small {
  font-size: 13px;
}

.note.small {
  margin-top: 14px;
}

.note.small ul {
  margin-top: 8px;
}

.pill {
  display: inline-block;
  padding: 6px 14px;
  border: none;
  border-radius: 999px;
  color: var(--text);
  font-size: 12px;
  margin-right: 8px;
  font-weight: 600;
  background: var(--sky);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.hr {
  height: 2px;
  background: var(--line);
  margin: 32px 0;
}

strong {
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 760px) {
  table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  th,
  td {
    padding: 12px 10px;
  }
}
.img-rounded-centered {
  display: block;           /* allows margin auto */
  max-width: 100%;          /* responsive, no cropping */
  height: auto;             /* keep aspect ratio */
  margin: 16px auto;        /* center horizontally */
  border-radius: 10px;      /* rounded corners */
}

