:root {
  --bg: #f9f9f9;
  --surface: #ffffff;
  --surface2: #fff5f5;
  --border: #fecaca;
  --accent: #dc2626;
  --accent2: #d97706;
  --text: #1a0505;
  --muted: #6b3737;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(26,5,5,0.06);
  --shadow-md: 0 4px 16px rgba(26,5,5,0.08);
  --shadow-lg: 0 8px 32px rgba(26,5,5,0.1);
  --gradient-btn: linear-gradient(135deg, #dc2626, #d97706);
  --font-body: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --font-heading: 'Segoe UI', system-ui, -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  --max-w: 1140px;
  --transition: 0.25s ease;
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

a:hover {
  color: var(--accent2);
}

a:focus-visible,
button:focus-visible,
details summary:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 3px;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--text);
}

h1 {
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}

h3 {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 1rem;
}

.content-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.narrow-content {
  max-width: 820px;
}

/* ======= HEADER ======= */
.portal-hdr {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 3px solid var(--accent);
}

.hdr-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--text);
  text-decoration: none;
}

.brand-mark:hover {
  color: var(--accent);
}

.brand-mark svg {
  flex-shrink: 0;
}

.navblock ul {
  display: flex;
  gap: 0.25rem;
}

.navblock a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.925rem;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition);
}

.navblock a:hover,
.navblock a.nav-active {
  background: var(--surface2);
  color: var(--accent);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ======= BREADCRUMBS ======= */
.crumb-trail {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0.65rem 0;
}

.crumb-trail ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.crumb-trail li:not(:last-child)::after {
  content: '›';
  margin-left: 0.4rem;
  color: var(--border);
}

.crumb-trail a {
  color: var(--muted);
}

.crumb-trail a:hover {
  color: var(--accent);
}

.crumb-trail [aria-current="page"] {
  font-weight: 600;
  color: var(--accent);
}

/* ======= HERO ======= */
.hero-intro {
  background: var(--surface2);
  padding: 3rem 0 2.5rem;
  text-align: center;
}

.hero-intro h1 {
  margin-bottom: 1rem;
}

.hero-intro h1::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gradient-btn);
  border-radius: 2px;
  margin: 0.75rem auto 0;
}

.hero-lead {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ======= CASINO SHOWCASE ======= */
.showcase-zone {
  background: var(--bg);
  padding: 3rem 0;
}

.showcase-zone h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.casino-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cg-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 170px 1fr auto;
  align-items: center;
  gap: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  transition: box-shadow var(--transition), transform var(--transition);
}

.cg-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.cg-pos {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--gradient-btn);
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  border-radius: 50%;
  flex-shrink: 0;
}

.cg-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
}

.cg-logo img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
}

.cg-offer {
  min-width: 0;
}

.cg-bonus-name {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.cg-bonus-val {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.35rem;
}

.cg-bonus-txt {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
  margin: 0;
}

.cg-action {
  flex-shrink: 0;
}

.cg-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  padding: 0.75rem 1.5rem;
  background: var(--gradient-btn);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: box-shadow var(--transition), transform var(--transition);
  white-space: nowrap;
}

.cg-link:hover {
  color: #fff;
  box-shadow: 0 8px 28px rgba(220,38,38,0.4);
  transform: translateY(-2px);
}

/* ======= EVALUATION BLOCK ======= */
.eval-block {
  background: var(--surface2);
  padding: 3rem 0;
}

.eval-block p {
  max-width: 820px;
}

/* ======= REVIEWS PANEL ======= */
.review-panel {
  background: var(--bg);
  padding: 3rem 0;
}

.review-intro {
  max-width: 820px;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 1.02rem;
}

.rv-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.75rem;
}

.rv-card h3 {
  color: var(--text);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--border);
}

.rv-head {
  margin-bottom: 1rem;
}

.rv-head img {
  max-height: 50px;
  width: auto;
}

.rv-pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 1.5rem 0;
}

.merit-list,
.demerit-list {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.merit-list strong,
.demerit-list strong {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.merit-list strong {
  color: #16a34a;
}

.demerit-list strong {
  color: var(--accent);
}

.merit-list ul,
.demerit-list ul {
  font-size: 0.9rem;
  line-height: 1.6;
}

.merit-list li,
.demerit-list li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.45rem;
}

.merit-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
}

.demerit-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.rv-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2rem;
  background: var(--gradient-btn);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius);
  text-decoration: none;
  transition: box-shadow var(--transition), transform var(--transition);
}

.rv-btn:hover {
  color: #fff;
  box-shadow: 0 8px 28px rgba(220,38,38,0.4);
  transform: translateY(-2px);
}

/* ======= RANKING METHOD ======= */
.rank-method {
  background: var(--surface2);
  padding: 3rem 0;
}

.rank-points {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.rk-point {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.rk-num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  background: var(--gradient-btn);
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.rk-point strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.rk-point p {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

/* ======= GUIDE STEPS ======= */
.guide-steps {
  background: var(--bg);
  padding: 3rem 0;
}

.steps-flow {
  counter-reset: step-counter;
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.steps-flow li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  padding-left: 1.5rem;
}

.step-marker {
  display: inline-block;
  background: var(--gradient-btn);
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.steps-flow strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

.steps-flow p {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

/* ======= BONUS GRID ======= */
.bonus-grid {
  background: var(--surface2);
  padding: 3rem 0;
}

.bonus-types {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0 2rem;
}

.bt-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.bt-item strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.bt-item p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

/* ======= TABLES ======= */
.tbl-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 1rem;
}

.compare-tbl {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  font-size: 0.9rem;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}

.compare-tbl thead {
  background: var(--gradient-btn);
  color: #fff;
}

.compare-tbl th {
  padding: 0.85rem 1rem;
  text-align: left;
  font-weight: 700;
  white-space: nowrap;
}

.compare-tbl td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
}

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

.compare-tbl tbody tr:nth-child(even) {
  background: var(--surface2);
}

.compare-tbl tbody tr:hover {
  background: #fef2f2;
}

/* ======= PAYMENT METHODS ======= */
.pay-methods {
  background: var(--bg);
  padding: 3rem 0;
}

.pay-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.pay-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.pay-icon {
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px;
  text-align: center;
}

.pay-item strong {
  display: block;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.pay-item p {
  font-size: 0.92rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

/* ======= VERDICT ======= */
.verdict-wrap {
  background: var(--surface2);
  padding: 3rem 0;
}

.verdict-wrap h2 {
  margin-bottom: 1rem;
}

.verdict-wrap p {
  max-width: 820px;
}

.verdict-wrap p:last-child {
  margin-bottom: 0;
}

/* ======= FAQ ======= */
.faq-block {
  background: var(--bg);
  padding: 3rem 0;
}

.faq-block h2 {
  margin-bottom: 1.5rem;
}

.faq-list {
  max-width: 820px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  color: var(--text);
  list-style: none;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-body {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
  animation: fadeSlide 0.3s ease;
}

.faq-body p:last-child {
  margin-bottom: 0;
}

@keyframes fadeSlide {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ======= FOOTER ======= */
.site-footer {
  background: #1a0505;
  color: #e8c4c4;
  padding: 3rem 0 1.5rem;
}

.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2rem;
}

.ft-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  text-decoration: none;
  margin-bottom: 0.75rem;
}

.ft-about p {
  font-size: 0.88rem;
  line-height: 1.65;
  color: #c9a0a0;
}

.ft-links strong {
  display: block;
  color: #fff;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.ft-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.ft-links a {
  color: #c9a0a0;
  font-size: 0.88rem;
  transition: color var(--transition);
}

.ft-links a:hover {
  color: #fff;
}

.ft-bottom {
  border-top: 1px solid #3d1a1a;
  padding-top: 1.5rem;
}

.ft-18 {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.ft-disclaimer {
  font-size: 0.78rem;
  color: #9c6b6b;
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.ft-copy {
  font-size: 0.78rem;
  color: #6b4545;
  margin: 0;
}

/* ======= BACK TO TOP ======= */
.back-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--gradient-btn);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition), box-shadow var(--transition);
  z-index: 50;
  box-shadow: var(--shadow-md);
}

.back-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(220,38,38,0.4);
}

/* ======= SUBPAGE CONTENT ======= */
.page-content {
  background: var(--surface);
  padding: 2.5rem 0 3rem;
}

.page-intro {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.page-content h2 {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.page-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.page-content h3 {
  margin-top: 1.5rem;
}

.page-content ul,
.page-content ol {
  margin: 0.75rem 0 1.25rem 1.5rem;
}

.page-content ul {
  list-style: disc;
}

.page-content ol {
  list-style: decimal;
}

.page-content li {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  line-height: 1.65;
}

.values-list {
  list-style: none !important;
  margin-left: 0 !important;
}

.values-list li {
  background: var(--surface2);
  border-left: 4px solid var(--accent);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 0.75rem;
}

.resp-tips {
  list-style: none !important;
  margin-left: 0 !important;
}

.resp-tips li {
  background: var(--surface2);
  border-left: 4px solid var(--accent2);
  padding: 0.85rem 1.1rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 0.6rem;
}

.resp-reminder {
  background: var(--surface2);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
  margin-top: 1.5rem;
}

/* ======= AUTHOR PROFILE ======= */
.author-profile {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid var(--border);
}

.author-avatar img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 4px solid var(--border);
  object-fit: cover;
}

.author-role {
  font-size: 1rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: 0.25rem;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 960px) {
  .cg-item {
    grid-template-columns: auto 130px 1fr;
    grid-template-rows: auto auto;
  }

  .cg-action {
    grid-column: 1 / -1;
    text-align: center;
  }

  .cg-link {
    width: 100%;
  }

  .ft-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ft-about {
    grid-column: 1 / -1;
  }
}

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

  .navblock {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 3px solid var(--accent);
    padding: 1rem 1.25rem;
    display: none;
    box-shadow: var(--shadow-lg);
  }

  .navblock.open {
    display: block;
  }

  .navblock ul {
    flex-direction: column;
    gap: 0.25rem;
  }

  .navblock a {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: var(--radius);
  }

  .cg-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1.25rem 1.25rem;
    position: relative;
  }

  .cg-pos {
    position: absolute;
    top: -12px;
    left: 16px;
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
    box-shadow: var(--shadow-sm);
  }

  .cg-logo {
    margin-bottom: 0.25rem;
  }

  .cg-bonus-txt {
    text-align: center;
  }

  .cg-action {
    width: 100%;
  }

  .cg-link {
    width: 100%;
  }

  .rv-pros-cons {
    grid-template-columns: 1fr;
  }

  .rk-point {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .pay-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .ft-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .author-profile {
    flex-direction: column;
    text-align: center;
  }

  .author-avatar img {
    width: 120px;
    height: 120px;
  }

  .hero-intro {
    padding: 2rem 0 2rem;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.55rem;
  }

  .rv-card {
    padding: 1.25rem;
  }

  .rk-point,
  .pay-item,
  .steps-flow li {
    padding: 1.15rem;
  }

  .bonus-types {
    grid-template-columns: 1fr;
  }

  .compare-tbl {
    font-size: 0.82rem;
  }
}

/* ======= PRINT ======= */
@media print {
  .portal-hdr,
  .nav-toggle,
  .back-top,
  .cg-link,
  .rv-btn,
  .site-footer {
    display: none !important;
  }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
}