/* ============================================================
   artscapeyoungplace.ca — No Verification Casinos Canada
   CLEAN FLAT DESIGN — Inspired by editorial casino sites
   Palette: Charcoal header / Light gray bg / White cards / Orange CTA
   Fonts: Inter
   ============================================================ */

:root {
  /* Core palette */
  --color-bg: #f0f0f0;
  --color-bg-white: #ffffff;
  --color-bg-alt: #f7f8f9;
  --color-header: #1a1a2e;
  --color-text: #222222;
  --color-text-secondary: #575760;
  --color-text-muted: #8e8e9a;
  --color-border: #dcdce0;
  --color-accent: #e8192c;
  --color-cta: #d44500;
  --color-cta-hover: #b83a00;
  --color-star: #f5a623;
  --color-success: #2d8a4e;
  --color-danger: #c0392b;

  /* Typography */
  --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Sizing */
  --container: 1100px;
  --radius: 6px;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { color: var(--color-cta); }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-main);
  font-weight: 700;
  line-height: 1.25;
  color: var(--color-text);
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   HEADER — Dark charcoal bar
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-header);
  border-bottom: 3px solid var(--color-accent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-text {
  font-family: var(--font-main);
  font-size: 1.2rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.logo-accent { color: var(--color-accent); }

.logo-sub {
  display: block;
  font-size: 0.6rem;
  font-weight: 500;
  color: #8e8e9a;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 2px;
}

/* Header CTA button */
.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.2rem;
  background: var(--color-cta);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius);
  transition: background 0.15s ease;
}
.header-cta:hover {
  background: var(--color-cta-hover);
  color: #ffffff;
}

/* ============================================================
   HERO — Simple centered intro
   ============================================================ */
.hero {
  padding: 2.5rem 0 1rem;
  text-align: center;
  background: var(--color-bg-white);
}

.hero h1 {
  font-size: 1.75rem;
  line-height: 1.2;
  margin-bottom: 0.75rem;
  color: var(--color-text);
}

.hero .highlight { color: var(--color-accent); }

.hero-intro {
  font-size: 1rem;
  color: var(--color-text-secondary);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.65;
}

/* ============================================================
   AUTHOR BYLINE — photo left, stacked text right
   ============================================================ */
.author-byline-block {
  padding: 0.75rem 0 1rem;
  background: var(--color-bg-white);
  border-bottom: 1px solid var(--color-border);
}

.author-byline-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.author-byline-inner img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.byline-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.byline-label {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.byline-name {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-text);
}

.byline-date {
  font-size: 0.72rem;
  color: var(--color-text-muted);
  margin-top: 0.15rem;
}

/* ============================================================
   SECTIONS — General
   ============================================================ */
.section {
  padding: 2.5rem 0;
}

.section-alt {
  background: var(--color-bg-white);
}

.section-title {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.section-title .accent { color: var(--color-accent); }

.section-subtitle {
  text-align: center;
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

/* ============================================================
   TOPLIST — Vertical card grid
   ============================================================ */
#toplist {
  padding-top: 2rem;
}

.toplist {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Casino card — tight vertical stack */
.casino-card {
  background: var(--color-bg-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.casino-card[data-rank="1"] {
  border: 2px solid var(--color-cta);
  background: #fff8f5;
}

/* Rank */
.casino-rank {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--color-text-muted);
}

/* Logo */
.casino-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  width: 100%;
}

.casino-logo-wrap {
  width: 100px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.casino-logo-wrap img {
  max-width: 100px;
  max-height: 40px;
  object-fit: contain;
}

/* Name then stars below */
.casino-details {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.casino-name {
  font-size: 0.85rem;
  font-weight: 700;
}

.casino-rating {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.stars { display: flex; gap: 1px; }
.star { font-size: 0.65rem; color: #d0d0d0; }
.star.filled { color: var(--color-star); }

.rating-value {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--color-text-muted);
}

/* Bonus — BIG, the whole point */
.casino-bonus {
  text-align: center;
  margin: 0.15rem 0;
}

.bonus-label { display: none; }

.bonus-value {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-accent);
  line-height: 1.2;
}

/* CTA */
.casino-action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-main);
  font-weight: 700;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease;
}

.btn-cta {
  padding: 0.5rem 2rem;
  background: var(--color-cta);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: var(--radius);
}
.btn-cta:hover {
  background: var(--color-cta-hover);
  color: #ffffff;
}

.tc-link {
  font-size: 0.55rem;
  color: var(--color-text-muted);
}

/* ============================================================
   CONTENT BLOCKS — Articles, reviews, info sections
   ============================================================ */
.content-block {
  max-width: 780px;
  margin: 0 auto;
}

.content-block h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.content-block h3 {
  font-size: 1.05rem;
  margin: 1.75rem 0 0.5rem;
  color: var(--color-text);
}

.content-block h3:first-of-type { margin-top: 0; }

.content-block p {
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  line-height: 1.75;
}

.content-block ul, .content-block ol {
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

.content-block ul li, .content-block ol li {
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1rem;
}

.content-block ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
}

.content-block ol { counter-reset: ol-counter; }
.content-block ol li { counter-increment: ol-counter; }
.content-block ol li::before {
  content: counter(ol-counter) '.';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--color-accent);
}

/* ============================================================
   PAYMENT TABLE
   ============================================================ */
.methods-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.85rem;
}

.methods-table thead {
  background: var(--color-bg);
}

.methods-table th {
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  padding: 0.75rem;
  text-align: left;
  border-bottom: 2px solid var(--color-border);
}

.methods-table td {
  padding: 0.75rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-secondary);
}

.methods-table tr:nth-child(even) td {
  background: var(--color-bg-alt);
}

.speed-badge {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  border-radius: 3px;
  font-size: 0.7rem;
  font-weight: 600;
}

.speed-fast { background: #e6f5ec; color: var(--color-success); }
.speed-medium { background: #fef3c7; color: #b45309; }

/* ============================================================
   PROS / CONS
   ============================================================ */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.pros-box, .cons-box {
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.pros-box h3, .cons-box h3 {
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}

.pros-box h3 { color: var(--color-success); }
.cons-box h3 { color: var(--color-danger); }

.pros-box li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--color-success);
  font-weight: 700;
  background: none;
  width: auto;
  height: auto;
  border-radius: 0;
}

.cons-box li::before {
  content: '\2717';
  position: absolute;
  left: 0;
  color: var(--color-danger);
  font-weight: 700;
  background: none;
  width: auto;
  height: auto;
  border-radius: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1rem 0;
  background: transparent;
  border: none;
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}

.faq-question:hover { color: var(--color-accent); }

.faq-icon {
  flex-shrink: 0;
  font-size: 1.2rem;
  color: var(--color-text-muted);
  transition: transform 0.25s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 0 1rem;
  color: var(--color-text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ============================================================
   AUTHOR CARD — Full bio at bottom
   ============================================================ */
.author-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  max-width: 640px;
  margin: 0 auto;
  background: var(--color-bg-alt);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.author-card-photo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
}

.author-card-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.15rem;
}

.author-card-name {
  font-size: 1.05rem;
  margin-bottom: 0;
}

.author-card-title {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.author-card-bio {
  font-size: 0.82rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   FOOTER — Light gray
   ============================================================ */
.site-footer {
  background: var(--color-bg-white);
  border-top: 1px solid var(--color-border);
  padding: 2rem 0 1.25rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.footer-brand .logo-text {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: block;
  color: var(--color-text);
}

.footer-brand .logo-accent { color: var(--color-accent); }

.footer-tagline {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.footer-heading {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text);
  margin-bottom: 0.75rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.footer-links a {
  font-size: 0.82rem;
  color: var(--color-text-secondary);
}
.footer-links a:hover { color: var(--color-text); }

.footer-disclaimer {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  padding: 1rem 0;
  border-top: 1px solid var(--color-border);
}

.footer-bottom {
  text-align: center;
  font-size: 0.7rem;
  color: var(--color-text-muted);
  padding-top: 1rem;
  border-top: 1px solid var(--color-border);
}

/* ============================================================
   MOBILE STICKY BAR
   ============================================================ */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--color-header);
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.mobile-sticky-bar.visible { transform: translateY(0); }

.sticky-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

.sticky-text small {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: #8e8e9a;
}

.btn-sticky {
  padding: 0.55rem 1.2rem;
  background: var(--color-cta);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  text-decoration: none;
  white-space: nowrap;
}

/* ============================================================
   SUBPAGES
   ============================================================ */
.page-hero {
  padding: 2.5rem 0 1rem;
  text-align: center;
  background: var(--color-bg-white);
  border-bottom: 1px solid var(--color-border);
}

.page-title { font-size: 1.6rem; margin-bottom: 0.4rem; }
.page-subtitle { color: var(--color-text-secondary); font-size: 0.95rem; }

.page-content { padding: 2rem 0 3rem; }
.page-content .content-block p { margin-bottom: 1rem; }

/* Contact form */
.contact-form { max-width: 560px; margin: 0 auto; }
.form-group { margin-bottom: 1rem; }

.form-group label {
  display: block;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.25rem;
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  font-family: var(--font-main);
  font-size: 0.88rem;
}

.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--color-text-muted);
}

.form-group textarea { min-height: 120px; resize: vertical; }

.btn-submit {
  width: 100%;
  padding: 0.7rem;
  background: var(--color-cta);
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
}
.btn-submit:hover { background: var(--color-cta-hover); }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (min-width: 520px) {
  .hero h1 { font-size: 2rem; }
  .pros-cons { grid-template-columns: 1fr 1fr; }

  .author-card {
    flex-direction: row;
    text-align: left;
    align-items: flex-start;
  }
}

@media (min-width: 820px) {
  .hero h1 { font-size: 2.25rem; }
  .section-title { font-size: 1.6rem; }
  .footer-grid { grid-template-columns: 2fr 1fr; }
}

@media (min-width: 1024px) {
  .hero h1 { font-size: 2.5rem; }
  .hero-intro { font-size: 1.05rem; }
  .mobile-sticky-bar { display: none !important; }
}
