/* ============================================================
   $1 Deposit Online Casino — Neubrutalist Theme
   Primary: #ffeb3b | Secondary: #ff5252 | Ink: #000
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Newsreader:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

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

html {
  font-size: 17px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: #000;
  background: #fff;
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
}

h1 { font-size: clamp(1.9rem, 5vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3.5vw, 2rem); margin-top: 2rem; margin-bottom: .5rem; }
h3 { font-size: 1.2rem; margin-top: 1.5rem; margin-bottom: .4rem; }
p  { margin-bottom: 1rem; }
a  { color: #000; text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: #ff5252; }

ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: .35rem; }

hr {
  border: none;
  border-top: 3px solid #000;
  margin: .6rem 0 1.2rem;
}

/* ── Site Wrapper ── */
.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ── Header ── */
.site-header {
  border-bottom: 3px solid #000;
  background: #ffeb3b;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 0 #000;
}

.header-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .55rem 1.25rem;
  border-bottom: 2px solid #000;
}

.brand-block {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.logo-mark {
  border: 2px solid #000;
  box-shadow: 2px 2px 0 #000;
}

.brand-name {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  color: #000;
  letter-spacing: -.01em;
}

.header-contact a.contact-link {
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
  padding: .25rem .65rem;
  border: 2px solid #000;
  box-shadow: 2px 2px 0 #000;
  background: #fff;
  transition: box-shadow .1s, transform .1s;
}
.header-contact a.contact-link:hover {
  box-shadow: 4px 4px 0 #000;
  transform: translate(-1px, -1px);
}

.header-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .4rem 1.25rem;
  flex-wrap: wrap;
  gap: .5rem;
}

/* ── Nav (inside aside) ── */
.main-nav-aside {
  flex: 1 1 auto;
  min-width: 0;
}

.main-nav-aside nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: .1rem;
}

.main-nav-aside nav ul li a {
  display: block;
  padding: .55rem .75rem;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  color: #000;
  border: 2px solid transparent;
  min-height: 40px;
  display: flex;
  align-items: center;
  transition: border-color .12s, background .12s;
}

.main-nav-aside nav ul li a:hover {
  border-color: #000;
  background: #fff;
  box-shadow: 3px 3px 0 #000;
}

/* ── Header CTA buttons ── */
.header-ctas {
  display: flex;
  gap: .5rem;
  flex-shrink: 0;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: .875rem;
  text-decoration: none;
  padding: .55rem 1.1rem;
  min-height: 40px;
  border: 3px solid #000;
  cursor: pointer;
  transition: box-shadow .1s, transform .1s;
}

.cta-signup {
  background: #ff5252;
  color: #000;
  box-shadow: 4px 4px 0 #000;
}
.cta-signup:hover {
  box-shadow: 6px 6px 0 #000;
  transform: translate(-1px, -1px);
  color: #000;
}

.cta-login {
  background: transparent;
  color: #000;
  box-shadow: 4px 4px 0 #000;
}
.cta-login:hover {
  background: #ffeb3b;
  box-shadow: 6px 6px 0 #000;
  transform: translate(-1px, -1px);
}

/* ── Hero (Home) ── */
.hero-section {
  display: flex;
  align-items: stretch;
  min-height: 100vh;
  border-bottom: 3px solid #000;
  overflow: hidden;
}

.hero-copy {
  flex: 1 1 50%;
  padding: 4rem 3rem 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  background: #ffeb3b;
  border-right: 3px solid #000;
}

.hero-copy h1 {
  font-size: clamp(2rem, 5.5vw, 3.4rem);
}

.hero-desc {
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 0;
}

.hero-cta {
  align-self: flex-start;
  font-size: 1rem;
  padding: .75rem 1.75rem;
  box-shadow: 5px 5px 0 #000;
}

.hero-media {
  flex: 1 1 50%;
  background: #000;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: #ff5252;
  color: #000;
  font-weight: 700;
  font-size: .9rem;
  padding: .5rem 1rem;
  border: 3px solid #000;
  box-shadow: 4px 4px 0 #000;
  transform: rotate(3deg);
}

/* ── Inner Hero (non-home) ── */
.inner-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 2rem;
  background: #ffeb3b;
  border-bottom: 3px solid #000;
  gap: 2rem;
  flex-wrap: wrap;
}

.inner-hero-copy {
  flex: 1 1 55%;
  max-width: 700px;
}

.inner-hero-copy h1 {
  margin-top: .5rem;
}

.inner-hero-media {
  flex: 0 1 35%;
}

.about-hero-img {
  width: 100%;
  height: auto;
  border: 3px solid #000;
  box-shadow: 6px 6px 0 #000;
  display: block;
}

/* ── Stage Badge / Eyebrow ── */
.stage-badge, .eyebrow {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .2rem .65rem;
  border: 2px solid #000;
  background: #fff;
  margin-bottom: .5rem;
}

/* ── Content Layout (two columns) ── */
.content-layout {
  display: flex;
  align-items: flex-start;
  gap: 0;
  flex: 1;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 2.5rem 1.25rem;
}

main {
  flex: 1 1 0;
  min-width: 0;
  padding-right: 2rem;
}

/* ── Article / Section structure ── */
section {
  max-width: 760px;
}

/* ── Body Content ── */
.body-content {
  line-height: 1.75;
}

.body-content h2 {
  font-family: 'Newsreader', Georgia, serif;
}

.body-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  border: 3px solid #000;
}

.body-content th, .body-content td {
  padding: .6rem .85rem;
  border: 2px solid #000;
  text-align: left;
}

.body-content th {
  background: #ffeb3b;
  font-weight: 700;
}

.body-content blockquote {
  border-left: 5px solid #ff5252;
  padding: .75rem 1.25rem;
  background: #fff9e6;
  margin: 1.5rem 0;
  font-style: italic;
}

/* ── Byline ── */
.byline {
  font-size: .875rem;
  font-weight: 500;
  color: #333;
  margin-top: .5rem;
  margin-bottom: 0;
}

/* ── Child Table ── */
.child-table-section {
  margin-top: 2.5rem;
}

.child-table {
  width: 100%;
  border-collapse: collapse;
  border: 3px solid #000;
  box-shadow: 5px 5px 0 #000;
}

.child-table thead th {
  background: #000;
  color: #ffeb3b;
  padding: .7rem 1rem;
  font-weight: 700;
  text-align: left;
  font-size: .85rem;
  letter-spacing: .04em;
}

.child-table tbody tr:nth-child(even) td {
  background: #fffde7;
}

.child-table tbody tr:hover td {
  background: #fff3cd;
}

.child-table td {
  padding: .65rem 1rem;
  border: 2px solid #000;
  vertical-align: top;
  font-size: .9rem;
}

.tbl-num {
  font-weight: 700;
  width: 2.5rem;
  text-align: center;
  background: #ffeb3b;
}

.tbl-desc {
  color: #444;
  font-size: .85rem;
}

.tbl-date {
  white-space: nowrap;
  font-size: .8rem;
  color: #555;
  width: 7rem;
}

/* ── Sidebar ── */
.sidebar {
  flex: 0 0 280px;
  min-width: 220px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: 110px;
  align-self: flex-start;
}

.sidebar-block {
  border: 3px solid #000;
  box-shadow: 5px 5px 0 #000;
  padding: 1.25rem;
  background: #fff;
}

.sidebar-block h3 {
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: .2rem;
}

.sidebar-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-block ul li {
  border-bottom: 1px solid #eee;
  margin-bottom: 0;
}

.sidebar-block ul li:last-child {
  border-bottom: none;
}

.sidebar-block ul li a {
  display: block;
  padding: .45rem 0;
  font-size: .875rem;
  font-weight: 500;
  text-decoration: none;
  color: #000;
}

.sidebar-block ul li a:hover {
  color: #ff5252;
  padding-left: .4rem;
}

.sidebar-cta-block {
  background: #ffeb3b;
}

.sidebar-cta-label {
  font-weight: 700;
  font-size: .9rem;
  margin-bottom: .75rem;
}

.sidebar-trust-block {
  background: #fff9e6;
}

.author-card {
  background: #f5f5f5;
}

.author-card strong {
  display: block;
  font-size: .95rem;
  margin-bottom: .3rem;
}

.author-card p {
  font-size: .8rem;
  margin-bottom: .5rem;
  color: #444;
}

.author-card a {
  font-size: .85rem;
  font-weight: 700;
}

/* ── Author Section ── */
.author-section {
  margin-top: 2.5rem;
  padding: 1.75rem;
  border: 3px solid #000;
  box-shadow: 6px 6px 0 #000;
  background: #fffde7;
}

.author-section h2 {
  margin-top: 0;
}

.author-credentials {
  font-size: .9rem;
  margin-bottom: .75rem;
  color: #333;
}

.author-bio {
  font-size: .95rem;
  line-height: 1.7;
}

/* ── FAQ ── */
.faq-hero {
  background: #ff5252;
}

.faq-content details {
  border: 3px solid #000;
  box-shadow: 4px 4px 0 #000;
  margin-bottom: 1rem;
  background: #fff;
}

.faq-content details summary {
  padding: .9rem 1.1rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-content details summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-left: .75rem;
}

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

.faq-content details[open] {
  background: #fffde7;
}

.faq-content details > :not(summary) {
  padding: .75rem 1.1rem 1rem;
  border-top: 2px solid #000;
}

.faq-back-section {
  margin-top: 2rem;
}

.faq-back-links {
  list-style: none;
  padding: 0;
}

.faq-back-links li {
  border-bottom: 2px solid #000;
  padding: .6rem 0;
}

.faq-back-links li a {
  font-weight: 700;
  font-size: .95rem;
}

/* ── Contact ── */
.contact-hero {
  background: #000;
  color: #ffeb3b;
}

.contact-hero h1 {
  color: #ffeb3b;
}

.contact-hero .byline {
  color: #ffeb3b;
  opacity: .85;
}

.contact-address-block {
  font-style: normal;
  padding: 1.25rem;
  border: 3px solid #000;
  box-shadow: 4px 4px 0 #000;
  background: #fffde7;
}

.contact-address-block p {
  margin-bottom: .5rem;
}

/* ── Privacy ── */
.privacy-hero {
  background: #f5f5f5;
}

.privacy-content {
  max-width: 720px;
}

/* ── Footer ── */
.site-footer {
  border-top: 3px solid #000;
  margin-top: auto;
  background: #000;
  color: #fff;
}

.footer-cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem 2rem;
  background: #ff5252;
  border-bottom: 3px solid #000;
}

.footer-cta-headline {
  font-family: 'Newsreader', Georgia, serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: #000;
}

.footer-cta-band .cta-signup {
  background: #ffeb3b;
  box-shadow: 5px 5px 0 #000;
  flex-shrink: 0;
}

.footer-columns {
  display: flex;
  gap: 0;
  padding: 2.5rem 2rem;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 280px;
  padding: 0 1.5rem 1.5rem 0;
}

.footer-brand {
  font-family: 'Newsreader', Georgia, serif;
  font-size: 1.15rem;
  display: block;
  margin-bottom: .6rem;
  color: #ffeb3b;
}

.footer-blurb {
  font-size: .875rem;
  color: #ccc;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.footer-brand-col address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}

.footer-brand-col address a {
  color: #ffeb3b;
  font-size: .875rem;
  font-weight: 700;
}

.footer-links-col strong {
  display: block;
  color: #ffeb3b;
  font-size: .85rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}

.footer-links-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links-col ul li {
  border-bottom: 1px solid #333;
  margin-bottom: 0;
}

.footer-links-col ul li:last-child {
  border-bottom: none;
}

.footer-links-col ul li a {
  display: block;
  padding: .45rem 0;
  color: #ddd;
  font-size: .85rem;
  text-decoration: none;
  transition: color .12s, padding-left .12s;
}

.footer-links-col ul li a:hover {
  color: #ffeb3b;
  padding-left: .4rem;
}

.footer-bottom {
  border-top: 2px solid #333;
  padding: 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  text-align: center;
}

.rg-notice {
  font-size: .8rem;
  color: #aaa;
  font-weight: 400;
  margin: 0;
}

.copyright {
  font-size: .8rem;
  color: #666;
  margin: 0;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .45s ease, transform .45s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .content-layout {
    flex-direction: column;
    padding: 1.5rem 1rem;
  }

  main {
    padding-right: 0;
  }

  .sidebar {
    position: static;
    flex: none;
    width: 100%;
    max-width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sidebar-block {
    flex: 1 1 240px;
  }

  .hero-section {
    flex-direction: column;
    min-height: auto;
  }

  .hero-copy {
    border-right: none;
    border-bottom: 3px solid #000;
    padding: 2.5rem 1.5rem;
  }

  .hero-media {
    min-height: 280px;
  }

  .footer-cta-band {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  html { font-size: 16px; }

  .header-nav-row {
    flex-direction: column;
    align-items: flex-start;
    padding: .5rem 1rem;
    gap: .4rem;
  }

  .main-nav-aside nav ul {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: .3rem;
  }

  .main-nav-aside nav ul li a {
    white-space: nowrap;
    font-size: .78rem;
    padding: .5rem .6rem;
  }

  .header-ctas {
    width: 100%;
    justify-content: flex-start;
  }

  .cta {
    font-size: .82rem;
    padding: .5rem .9rem;
  }

  .inner-hero {
    padding: 2rem 1rem;
  }

  .footer-columns {
    padding: 1.5rem 1rem;
  }

  .child-table {
    font-size: .82rem;
  }

  .tbl-desc {
    display: none;
  }

  .footer-cta-band {
    padding: 1.5rem 1rem;
  }

  .hero-copy {
    padding: 2rem 1rem;
  }

  h1 { font-size: 1.8rem; }
}

/* ── Utility ── */
.contact-info-section {
  margin-top: 2rem;
}
