/* GreatNorthDaily.com - editorial casino redesign */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #07140f;
  --surface: rgba(17, 40, 28, 0.84);
  --surface-strong: rgba(15, 34, 24, 0.96);
  --border: rgba(255, 212, 122, 0.18);
  --text: #f6edd8;
  --muted: #cbbf9a;
  --muted-strong: #a0b293;
  --gold: #f3c86b;
  --gold-strong: #ffda84;
  --green: #9df07b;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.22);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Manrope', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(108, 255, 123, 0.10), transparent 28%),
    radial-gradient(circle at top right, rgba(255, 209, 102, 0.16), transparent 24%),
    linear-gradient(180deg, #0a2017 0%, #07140f 42%, #08110d 100%);
  line-height: 1.7;
}
body::before,
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
body::before {
  opacity: 0.22;
  background:
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), rgba(255, 255, 255, 0.03) calc(100% - 1px)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 28%);
  background-size: 36px 36px, 100% 100%;
}
body::after {
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.03), transparent 58%);
}

a { color: inherit; }
img { max-width: 100%; display: block; }
strong { color: var(--gold-strong); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(6, 20, 14, 0.78);
  border-bottom: 1px solid rgba(255, 212, 122, 0.10);
}
.site-header .inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.95rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}
.site-header .brand,
.site-header .logo-link { display: flex; align-items: center; }
.site-header .logo {
  height: 62px;
  width: auto;
  filter: drop-shadow(0 20px 35px rgba(0, 0, 0, 0.35));
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.site-header nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.2s ease;
}
.site-header nav a:hover {
  color: var(--text);
  border-color: rgba(255, 212, 122, 0.26);
  background: rgba(255, 255, 255, 0.04);
}
.site-header nav a.nav-btn {
  color: #0f120e;
  background: linear-gradient(135deg, #ffde95, #f3b43d);
  box-shadow: 0 10px 28px rgba(243, 180, 61, 0.32);
}

.landing-shell {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem 1.5rem 4rem;
}
.landing-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 2rem;
  align-items: stretch;
  padding: 2rem;
  border-radius: var(--radius-xl);
  background: linear-gradient(140deg, rgba(11, 29, 21, 0.92), rgba(10, 23, 17, 0.88));
  border: 1px solid rgba(255, 212, 122, 0.16);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.eyebrow,
.section-kicker,
.panel-kicker,
.table-kicker,
.note-kicker,
.summary-kicker,
.faq-block-label,
.site-footer .footer-col h4,
.contact-scope h4 {
  display: inline-block;
  margin: 0 0 0.8rem;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow {
  width: fit-content;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 212, 122, 0.20);
  background: rgba(255, 255, 255, 0.04);
  margin-bottom: 1rem;
}
.hero-title,
.home-title,
h1,
h2,
h3,
.faq-block-title,
.about-card h3,
.contact-card h3,
.about-hero h1,
.contact-hero h1 {
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.03em;
}
.hero-title {
  font-size: clamp(3rem, 6vw, 5.6rem);
  line-height: 0.94;
  margin: 0 0 1rem;
}
.hero-title span { display: block; color: var(--gold-strong); }
.hero-dek {
  max-width: 640px;
  margin: 0 0 1.4rem;
  font-size: 1.05rem;
  color: #efe4c5;
}
.hero-actions,
.hero-meta,
.quick-links-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.hero-actions { margin-bottom: 1.5rem; }
.hero-link,
.quick-links-strip a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.2s ease;
}
.hero-link.primary {
  color: #102014;
  background: linear-gradient(135deg, #ffde95, #f1b643);
  box-shadow: 0 14px 34px rgba(241, 182, 67, 0.30);
}
.hero-link.secondary,
.quick-links-strip a {
  border: 1px solid rgba(255, 212, 122, 0.18);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}
.hero-link:hover,
.quick-links-strip a:hover,
.about-card:hover,
.contact-card:hover { transform: translateY(-2px); }
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 212, 122, 0.15);
  color: var(--muted);
  font-size: 0.86rem;
}
.hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(157, 240, 123, 0.16);
}
.hero-image-wrap {
  position: relative;
  min-height: 100%;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 212, 122, 0.16);
  background: rgba(0, 0, 0, 0.22);
}
.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 20, 14, 0.04), rgba(6, 20, 14, 0.34));
}
.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}
.hero-stats,
.signal-grid,
.feature-matrix,
.about-grid,
.contact-cards,
.faq {
  display: grid;
  gap: 1rem;
}
.hero-stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.2rem;
}
.signal-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); margin-bottom: 1.45rem; }
.feature-matrix { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.about-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.contact-cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.faq { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.stat-card,
.signal-card,
.topic-panel,
.faq p {
  padding: 1.2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 212, 122, 0.12);
  box-shadow: var(--shadow-soft);
}
.stat-value {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--gold-strong);
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: 2rem;
  line-height: 1;
}
.stat-label {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.10em;
}

.editorial-grid,
.summary-board {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.8fr);
  gap: 1.4rem;
  margin: 1.45rem 0;
}
.story-card,
.note-panel,
.quote-panel,
.content-slab,
.table-stage,
.page-text,
.faq-block,
.wrap,
.wrap-wide,
.about-card,
.contact-card,
.contact-scope,
.about-disclaimer,
.about-help,
.contact-help,
.cp-note,
.help-box {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(18, 41, 29, 0.92), rgba(12, 29, 20, 0.94));
  border: 1px solid rgba(255, 212, 122, 0.12);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.story-card p,
.page-text p,
.table-stage p,
.topic-panel p,
.summary-copy p,
.about-card p,
.contact-card p,
.wrap p,
.wrap-wide p,
.note-panel p,
.quote-panel p,
.faq p {
  margin: 0 0 1rem;
  color: var(--text);
}
.section-title,
.table-stage h2,
.home-title,
h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 3vw, 3.6rem);
  line-height: 0.95;
}
.signal-card h3,
.topic-panel h3,
h2,
.faq-block-title,
.about-card h3,
.contact-card h3,
.about-hero h1,
.contact-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1;
}
.note-list,
.page-text ul,
.topic-panel ul,
.summary-checklist,
.contact-scope ul,
.about-card ul {
  margin: 0;
  padding-left: 1.1rem;
}
.note-list li,
.page-text li,
.topic-panel li,
.summary-checklist li,
.contact-scope li,
.about-card li {
  margin-bottom: 0.45rem;
  color: var(--muted);
}
li::marker { color: var(--gold); }
.signal-index {
  display: inline-block;
  margin-bottom: 0.85rem;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.quote-panel blockquote {
  margin: 0;
  font-family: 'Bebas Neue', Impact, sans-serif;
  font-size: clamp(1.7rem, 2.5vw, 2.6rem);
  line-height: 1.02;
  color: var(--gold-strong);
}
.summary-aside {
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 212, 122, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 212, 122, 0.14);
  box-shadow: var(--shadow-soft);
}
.page-text a,
.about-card a,
.contact-email,
.help-box a,
.about-help a,
.contact-help a {
  color: var(--gold-strong);
  text-decoration: underline;
  text-underline-offset: 0.12em;
}
.page-text a:hover,
.about-card a:hover,
.contact-email:hover,
.help-box a:hover,
.about-help a:hover,
.contact-help a:hover { color: #fff0c3; }

.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 212, 122, 0.12);
}
table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: rgba(7, 16, 12, 0.28);
}
th,
td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(255, 212, 122, 0.10);
  text-align: left;
  vertical-align: top;
}
th {
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255, 212, 122, 0.04);
}
td { color: var(--text); font-size: 0.92rem; }
tr:last-child td { border-bottom: none; }

.home-layout { display: block; padding: 0; max-width: none; }
.home-intro { display: none; }
.wrap { max-width: 820px; margin: 1.5rem auto 0; }
.wrap-wide,
.about-page .wrap-wide,
.contact-page .wrap-wide {
  max-width: 1040px;
  margin: 1.5rem auto 0;
  padding: 1.5rem;
}
.inner-page .page-text { padding: 0; background: transparent; border: none; box-shadow: none; }
.about-hero,
.contact-hero {
  text-align: left;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 212, 122, 0.12);
}
.contact-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 0.8rem;
  border-radius: 50%;
  background: rgba(255, 212, 122, 0.10);
  color: var(--gold);
  font-size: 1.1rem;
}
.contact-email { display: inline-block; margin-bottom: 0.55rem; word-break: break-word; }
.contact-scope { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }

.site-footer {
  margin-top: 3rem;
  padding: 2.5rem 0 1.75rem;
  border-top: 1px solid rgba(255, 212, 122, 0.10);
  background: linear-gradient(180deg, rgba(7, 20, 15, 0.20), rgba(7, 20, 15, 0.92));
}
.site-footer .inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 212, 122, 0.12);
}
.site-footer .footer-brand .logo {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 16px 28px rgba(0, 0, 0, 0.30));
}
.site-footer .footer-col ul { list-style: none; margin: 0; padding: 0; }
.site-footer .footer-col li { margin-bottom: 0.45rem; }
.site-footer .footer-col a { color: var(--muted); text-decoration: none; }
.site-footer .footer-col a:hover { color: var(--text); }
.site-footer .copy {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.8rem;
  text-align: center;
}

@media (max-width: 1120px) {
  .landing-hero,
  .editorial-grid,
  .summary-board,
  .feature-matrix,
  .signal-grid,
  .contact-cards,
  .hero-stats { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .site-header .inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-header nav {
    width: 100%;
    justify-content: flex-start;
  }
  .site-header .logo { height: 54px; }
  .landing-shell { padding: 1rem 1rem 3rem; }
  .landing-hero,
  .story-card,
  .note-panel,
  .quote-panel,
  .content-slab,
  .table-stage,
  .page-text,
  .faq-block,
  .about-card,
  .contact-card,
  .contact-scope,
  .about-disclaimer,
  .about-help,
  .contact-help,
  .wrap,
  .wrap-wide,
  .summary-aside,
  .stat-card,
  .signal-card,
  .topic-panel,
  .faq p { padding: 1.2rem; }
  .hero-title,
  .section-title,
  .home-title,
  h1 { font-size: 2.4rem; }
  h2,
  .faq-block-title,
  .signal-card h3,
  .topic-panel h3,
  .about-hero h1,
  .contact-hero h1,
  .about-card h3,
  .contact-card h3 { font-size: 1.6rem; }
  .faq,
  .about-grid,
  .contact-scope,
  .site-footer .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .hero-actions,
  .hero-meta,
  .quick-links-strip { flex-direction: column; }
  .hero-link,
  .quick-links-strip a,
  .site-header nav a {
    width: 100%;
    justify-content: flex-start;
  }
}
