/* Magazine Grid – CasinoReviewHubew.com */
:root {
  --bg: #1a1a1a;
  --surface: #252525;
  --text: #f0f0f0;
  --muted: #a0a0a0;
  --accent: #e63946;
  --border: #3a3a3a;
  --font-head: 'Georgia', 'Times New Roman', serif;
  --font-body: 'Segoe UI', system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80'%3E%3Cpath fill='rgba(230,57,70,0.04)' d='M40 0l20 20-20 20-20-20z'/%3E%3Cpath fill='rgba(230,57,70,0.03)' d='M60 40l20 20-20 20-20-20z'/%3E%3Cpath fill='none' stroke='rgba(230,57,70,0.05)' stroke-width='.4' d='M0 40h80M40 0v80'/%3E%3C/svg%3E");
  background-size: 80px 80px;
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
}
body::before {
  content: '♠ ♥ ♦ ♣';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  font-size: 12rem;
  font-weight: 700;
  color: rgba(230, 57, 70, 0.03);
  letter-spacing: 0.3em;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  white-space: pre;
}
@keyframes red-pulse {
  0%, 100% { box-shadow: 0 0 0 1px var(--accent); }
  50% { box-shadow: 0 0 20px rgba(230, 57, 70, 0.3), 0 0 0 1px var(--accent); }
}
.strip {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 0.5rem 1.5rem;
  font-size: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.strip a { color: var(--muted); text-decoration: none; }
.strip a:hover { color: var(--accent); }
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 2px solid var(--accent);
  padding: 1rem 1.5rem;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.header-nav-top .header-inner { flex-direction: column; align-items: center; }
.header-nav-top .nav { margin-bottom: 0.5rem; }
.logo {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
}
.logo:hover { color: var(--accent); }
.logo .age { color: var(--accent); font-size: 0.7em; margin-left: 0.35rem; }
.nav { display: flex; flex-wrap: wrap; gap: 0.25rem; }
.nav a {
  padding: 0.5rem 1rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.2s, background 0.2s;
}
.nav a:hover { color: var(--text); background: var(--surface); }
.main { max-width: 1100px; margin: 0 auto; padding: 2rem 1.5rem 3rem; }
.hero {
  margin-bottom: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100px;
  height: 3px;
  background: var(--accent);
  border-radius: 0 2px 0 0;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  margin-bottom: 0.5rem;
  color: var(--text);
}
.hero p { color: var(--muted); font-size: 1.05rem; max-width: 560px; }
.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.magazine-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}
/* Showcase 5: Editor's pick + score X/5 */
.magazine-grid.showcase-review .card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.5rem;
  padding-top: 2.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.magazine-grid.showcase-review .card-editor-pick {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding: 0.4rem 1rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}
.magazine-grid.showcase-review .card:not(:first-child) .card-editor-pick { display: none; }
.magazine-grid.showcase-review .card:first-child { padding-top: 3.25rem; }
.magazine-grid.showcase-review .card-score {
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent);
}
.magazine-grid.showcase-review .card-score .score-max { font-size: 0.65em; font-weight: 600; color: var(--muted); }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.card { transition: border-color 0.25s, box-shadow 0.3s, transform 0.2s; }
.card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 8px 32px rgba(230, 57, 70, 0.2);
  transform: translateY(-2px);
  animation: red-pulse 2s ease-in-out infinite;
}
.card-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.card-head img { height: 44px; width: auto; max-width: 120px; object-fit: contain; }
.card-head h2 { font-family: var(--font-head); font-size: 1.15rem; color: var(--text); }
.card-head .age { color: var(--accent); font-size: 0.7em; margin-left: 0.25rem; }
.card-meta { font-size: 0.8rem; color: var(--muted); margin-bottom: 0.75rem; }
.card p { font-size: 0.9rem; color: var(--muted); margin-bottom: 1rem; }
.card-cta {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.2s, transform 0.15s;
}
.card-cta:hover {
  background: #c42d39;
  transform: translateY(-1px);
  box-shadow: 0 4px 24px rgba(230, 57, 70, 0.5);
}
.card-cta { transition: background 0.2s, transform 0.15s, box-shadow 0.25s; }
.rg-box {
  margin-top: 2.5rem;
  padding: 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
}
.rg-box h2 { font-family: var(--font-head); font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--text); }
.rg-box p, .rg-box li { font-size: 0.95rem; color: var(--muted); }
.rg-box ul { margin-left: 1.25rem; margin-top: 0.5rem; }
.faq-block { margin-top: 2rem; }
.faq-block details {
  margin-bottom: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-block summary { padding: 1rem 1.25rem; cursor: pointer; font-weight: 600; color: var(--text); }
.faq-block summary:hover { color: var(--accent); }
.faq-block .ans { padding: 1rem 1.25rem; border-top: 1px solid var(--border); font-size: 0.9rem; color: var(--muted); }
.footer {
  margin-top: 3rem;
  padding: 2rem 1.5rem;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.footer-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.footer .regs { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin-bottom: 1rem; }
.footer .regs a { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--muted); text-decoration: none; font-size: 0.85rem; }
.footer .regs a:hover { color: var(--accent); }
.footer .regs img { height: 22px; width: auto; }
.footer .links { margin-bottom: 1rem; }
.footer .links a { color: var(--muted); text-decoration: none; font-size: 0.88rem; margin: 0 0.5rem; }
.footer .links a:hover { color: var(--accent); }
.footer .legal { font-size: 0.8rem; color: var(--muted); }
.page-content { max-width: 720px; margin: 0 auto; padding: 2rem 1.5rem 3rem; }
.page-content h1 { font-family: var(--font-head); font-size: 1.75rem; margin-bottom: 1rem; color: var(--text); }
.page-content h2 { font-family: var(--font-head); font-size: 1.2rem; margin: 1.5rem 0 0.5rem; color: var(--accent); }
.page-content p, .page-content li { margin-bottom: 0.75rem; color: var(--muted); }
.page-content ul { margin-left: 1.25rem; }
.page-content a { color: var(--accent); }
/* Disclaimer – CasinoReviewHubew: centre modal */
.disclaimer-hubew {
  position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,0.8);
  display: flex; align-items: center; justify-content: center; padding: 1.5rem; pointer-events: auto;
}
.disclaimer-hubew[hidden] { display: none !important; }
.disclaimer-hubew-modal {
  max-width: 440px; background: var(--surface); border: 2px solid var(--accent);
  padding: 2rem; text-align: center;
}
.disclaimer-hubew-lead { font-family: var(--font-head); font-size: 1.2rem; color: var(--text); margin-bottom: 0.75rem; }
.disclaimer-hubew-modal p { font-size: 0.9rem; color: var(--muted); margin-bottom: 1rem; line-height: 1.5; }
.disclaimer-hubew-actions { display: flex; flex-direction: column; gap: 0.5rem; }
.disclaimer-hubew-actions button { padding: 0.7rem 1rem; cursor: pointer; font-weight: 600; }
#disclaimer-enter { background: var(--accent); color: #fff; border: none; }
#disclaimer-leave { background: transparent; color: var(--muted); border: 1px solid var(--border); }

/* Info blocks – CasinoReviewHubew */
.info-hubew-ribbon { padding: 1rem 1.25rem; background: var(--surface); border-left: 4px solid var(--accent); margin-bottom: 1rem; font-size: 0.9rem; color: var(--muted); }
.info-hubew-ribbon-end { margin-top: 1.5rem; margin-bottom: 0; }
.info-hubew-disclaimer { margin-top: 0.5rem; }
.footer-company { margin-top: 1rem; font-size: 0.8rem; color: var(--muted); line-height: 1.5; }
.footer-company strong { color: var(--text); }
.info-hubew-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.info-hubew-cols div { padding: 1.25rem; background: var(--surface); border: 1px solid var(--border); }
.info-hubew-cols h3 { font-family: var(--font-head); font-size: 1rem; color: var(--accent); margin-bottom: 0.5rem; }
.info-hubew-cols p { font-size: 0.88rem; color: var(--muted); margin: 0; }
.info-hubew-note { padding: 1rem 1.25rem; margin-bottom: 1.5rem; border-top: 2px solid var(--accent); border-bottom: 2px solid var(--border); }
.info-hubew-note h3 { font-size: 0.9rem; margin-bottom: 0.5rem; color: var(--text); }
.info-hubew-note ul { margin: 0 0 0 1rem; font-size: 0.88rem; color: var(--muted); }
.info-hubew-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.info-hubew-tile { padding: 1rem; background: var(--surface); border: 1px solid var(--border); }
.info-hubew-tile h4 { font-size: 0.9rem; color: var(--accent); margin-bottom: 0.4rem; }
.info-hubew-tile p { font-size: 0.82rem; color: var(--muted); margin: 0; }
@media (max-width: 700px) { .info-hubew-cols, .info-hubew-tiles { grid-template-columns: 1fr; } }

/* Header tagline */
.header-brand-hubew { display: flex; flex-direction: column; gap: 0.2rem; }
.header-sub-hubew { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); }

/* Footer – stacked blocks */
.footer-hubew .footer-inner { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 2rem; text-align: left; }
.footer-hubew-two .footer-inner { grid-template-columns: 1fr 1fr; }
@media (max-width: 600px) { .footer-hubew .footer-inner { grid-template-columns: 1fr; text-align: center; } }
.footer-block-hubew h4, .footer-half-hubew h4 { font-size: 0.8rem; color: var(--accent); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 0.6rem; }
.footer-hubew .regs, .footer-hubew .links { display: flex; flex-direction: column; gap: 0.35rem; margin-bottom: 0; }
.footer-hubew-two .regs { margin-bottom: 0.75rem; }
.footer-hubew .legal { margin: 0; font-size: 0.8rem; }

/* Cookie – left-bottom horizontal strip */
.cookie-hubew-strip {
  left: 1rem; right: auto; bottom: 1rem; max-width: 420px;
  display: flex; flex-direction: row; flex-wrap: wrap; align-items: center; gap: 0.75rem;
}
.cookie-hubew-txt { flex: 1; min-width: 220px; font-size: 0.88rem; color: var(--muted); }
.cookie-hubew-btns { display: flex; gap: 0.5rem; }
.cookie-bar p { flex: 1; min-width: 200px; font-size: 0.9rem; color: var(--muted); }
.cookie-bar button { padding: 0.5rem 1rem; cursor: pointer; font-weight: 600; }
#accept-cookies { background: var(--accent); color: #fff; border: none; }
#decline-cookies { background: var(--bg); color: var(--muted); border: 1px solid var(--border); }
