/* Big Catch Hub — Big Catch slots portal (SITE_FINGERPRINT: catalog-first / ocean) */

:root {
  --bg: #02161f;
  --bg-2: #032029;
  --surface: #0a2c38;
  --surface-2: #0e3848;
  --text: #e8f4f2;
  --muted: #9bb8b4;
  --accent: #f0b429;
  --accent-2: #2ec4b6;
  --line: rgba(232, 244, 242, 0.12);
  --danger: #e85d5d;
  --ok: #3dd68c;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Sora", system-ui, sans-serif;
  --radius: 14px;
  --max: 1120px;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(46, 196, 182, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 45% at 90% 0%, rgba(240, 180, 41, 0.12), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 40%, #031a22 100%);
  min-height: 100vh;
  line-height: 1.65;
  font-size: 1rem;
}

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

a {
  color: var(--accent-2);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--accent);
  color: #111;
  padding: 0.6rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background: rgba(2, 22, 31, 0.82);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo img {
  width: 168px;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.92rem;
}

.nav a {
  color: var(--text);
  text-decoration: none;
  opacity: 0.88;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--accent);
  opacity: 1;
}

.header-cta {
  display: none;
}

@media (min-width: 900px) {
  .header-cta {
    display: inline-flex;
  }
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--text);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font: inherit;
  cursor: pointer;
}

@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }
}

@media (max-width: 899px) {
  .nav-wrap {
    display: none;
    width: 100%;
  }

  .site-header.is-open .nav-wrap {
    display: block;
    padding-bottom: 1rem;
  }

  .header-row {
    flex-wrap: wrap;
  }

  .nav {
    flex-direction: column;
    gap: 0.65rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.78rem 1.25rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), #d99512);
  color: #1a1200;
}

.btn-primary:hover {
  color: #1a1200;
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover {
  color: var(--accent);
  border-color: rgba(240, 180, 41, 0.45);
}

/* Hero */
.hero {
  position: relative;
  padding: 3.5rem 0 2.5rem;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(2, 22, 31, 0.55), rgba(2, 22, 31, 0.82)),
    url("/assets/img/BigCatchTropicalFishingcasino.webp") center / cover no-repeat;
  opacity: 0.95;
  z-index: -1;
}

.hero-kicker {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 0.85rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.12;
  font-weight: 700;
  max-width: 16ch;
  margin: 0 0 1rem;
}

.hero-lead {
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0 0 1.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Typography */
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  font-weight: 700;
}

h2 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  margin: 1.25rem 0 0.65rem;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.15rem;
  margin: 1rem 0 0.5rem;
}

p {
  margin: 0 0 1rem;
  color: var(--text);
}

.muted {
  color: var(--muted);
}

/* Sections */
.section {
  padding: 1.5rem 0;
}

.section-head {
  margin-bottom: 1.5rem;
}

.section-head p {
  color: var(--muted);
  max-width: 42rem;
}

.panel {
  background: linear-gradient(180deg, rgba(14, 56, 72, 0.85), rgba(10, 44, 56, 0.95));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow);
}

/* Specs */
.specs {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.95rem;
}

.specs th,
.specs td {
  text-align: left;
  padding: 0.7rem 0.8rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.specs th {
  width: 38%;
  color: var(--muted);
  font-weight: 500;
}

.specs-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1rem 0 1.4rem;
}

@media (min-width: 700px) {
  .specs-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.chip {
  background: rgba(46, 196, 182, 0.1);
  border: 1px solid rgba(46, 196, 182, 0.28);
  border-radius: 12px;
  padding: 0.7rem 0.8rem;
}

.chip strong {
  display: block;
  color: var(--accent);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.chip span {
  font-size: 0.95rem;
}

/* Game grid */
.game-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 760px) {
  .game-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1000px) {
  .game-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.game-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.game-card:hover {
  border-color: rgba(240, 180, 41, 0.45);
  transform: translateY(-2px);
}

.game-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #021018;
}

.game-card-body {
  padding: 0.9rem 0.95rem 1.05rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}

.game-card h3 {
  font-size: 1.02rem;
  margin: 0;
}

.game-card h3 a {
  color: var(--text);
  text-decoration: none;
}

.game-card h3 a:hover {
  color: var(--accent);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.meta-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
}

.game-card p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
  flex: 1;
}

.game-card .card-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
  align-items: center;
}

.game-card .btn {
  padding: 0.5rem 0.85rem;
  font-size: 0.85rem;
}

.game-card .btn-primary {
  flex: 1.4;
  padding: 0.65rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Layout helpers */
.split {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 860px) {
  .split-2 {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
  }
}

.poster-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #021018;
}

.poster-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.breadcrumbs {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 1.25rem 0 0.5rem;
}

.breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0;
  margin: 0;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.35rem;
  opacity: 0.5;
}

.breadcrumbs a {
  color: var(--muted);
  text-decoration: none;
}

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

/* Inner pages */
.page-hero {
  padding: 1.5rem 0 1.25rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  line-height: 1.15;
  margin: 0.35rem 0 0.85rem;
}

.eyebrow {
  display: inline-block;
  color: var(--accent-2);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.25rem 0 0;
}

.answer {
  font-size: 1.05rem;
  max-width: 62ch;
}

main h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  margin: 2rem 0 0.85rem;
}

main section > p,
main .page-hero > p {
  max-width: 68ch;
}

.table-wrap {
  overflow-x: auto;
  margin: 1rem 0 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.table-wrap th,
.table-wrap td {
  padding: 0.75rem 0.9rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.table-wrap th {
  color: var(--accent);
  font-weight: 600;
}

.table-wrap tr:last-child td,
.table-wrap tr:last-child th {
  border-bottom: 0;
}

/* Lists / FAQ / steps */
.prose ol,
.prose ul,
main ol,
main ul {
  padding-left: 1.2rem;
  margin: 0 0 1.1rem;
}

.prose li {
  margin-bottom: 0.45rem;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 0.65rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
}

.faq details p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.related-list {
  display: grid;
  gap: 0.75rem;
}

.related-list a {
  display: block;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
  color: var(--text);
}

.related-list a:hover {
  border-color: rgba(46, 196, 182, 0.45);
}

.related-list small {
  display: block;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* Footer */
.site-footer {
  margin-top: 3rem;
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.25);
  padding: 2.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.site-footer h2 {
  font-size: 1rem;
  margin-bottom: 0.7rem;
}

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

.site-footer li {
  margin-bottom: 0.4rem;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-note {
  margin-top: 1.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
  color: var(--muted);
}

.rg-banner {
  background: rgba(232, 93, 93, 0.1);
  border: 1px solid rgba(232, 93, 93, 0.35);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  margin: 1.25rem 0;
  font-size: 0.92rem;
}

/* Sticky mobile CTA */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 0.65rem 1rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(2, 22, 31, 0.92);
  border-top: 1px solid var(--line);
  display: flex;
  gap: 0.6rem;
}

.mobile-cta .btn {
  flex: 1;
}

@media (min-width: 900px) {
  .mobile-cta {
    display: none;
  }
}

body {
  padding-bottom: 4.5rem;
}

@media (min-width: 900px) {
  body {
    padding-bottom: 0;
  }
}

/* Motion */
@media (prefers-reduced-motion: no-preference) {
  .hero h1 {
    animation: rise 0.7s ease both;
  }

  .hero-lead {
    animation: rise 0.7s ease 0.08s both;
  }

  .hero-actions {
    animation: rise 0.7s ease 0.16s both;
  }

  .game-card {
    animation: rise 0.55s ease both;
  }

  .game-grid .game-card:nth-child(2) {
    animation-delay: 0.05s;
  }

  .game-grid .game-card:nth-child(3) {
    animation-delay: 0.1s;
  }

  .game-grid .game-card:nth-child(4) {
    animation-delay: 0.15s;
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
