/* fishingtimeid.com — Fishing Time BR */

:root {
  --bg: #061821;
  --bg-deep: #031018;
  --surface: #0c2834;
  --surface-2: #113445;
  --text: #eef8f9;
  --muted: #9bb8c0;
  --accent: #ffc14d;
  --accent-hot: #ff9f1c;
  --teal: #2ec4b6;
  --ice: #7ed6ff;
  --border: #1a4556;
  --ok: #3dde8c;
  --font-body: "Outfit", system-ui, sans-serif;
  --font-heading: "Fraunces", Georgia, serif;
  --max: 68rem;
  --radius: 1.05rem;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.35);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text);
  background:
    radial-gradient(900px 420px at 85% -5%, rgba(46, 196, 182, 0.18), transparent 55%),
    radial-gradient(700px 380px at 8% 12%, rgba(126, 214, 255, 0.12), transparent 50%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 38%, #07202b 100%);
}

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

a {
  color: var(--teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}
a:hover { color: var(--ice); }

.site-shell {
  width: min(100% - 1.75rem, var(--max));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(3, 16, 24, 0.88);
  backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid rgba(46, 196, 182, 0.2);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  padding: 0.85rem 0;
}

.brand {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.brand span {
  color: var(--accent);
  font-style: italic;
}

.nav-toggle {
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.6rem;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.5rem;
}
.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: #ffffff; }

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.45rem 1.35rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hot) 100%);
  color: #1a1203;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(255, 159, 28, 0.3);
  transition: transform 0.2s ease, filter 0.2s ease;
}
.header-cta:hover { filter: brightness(1.08); color: #1a1203; transform: scale(1.03); }

/* —— Hero Banner —— */
.hero-banner {
  position: relative;
  isolation: isolate;
  width: 100%;
  margin: 0 0 1.5rem;
  min-height: clamp(30rem, 70vh, 42rem);
  display: flex;
  align-items: center;
  padding: 4.5rem 0 4rem;
  overflow: hidden;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 16, 24, 0.98) 0%, rgba(3, 16, 24, 0.92) 38%, rgba(3, 16, 24, 0.45) 75%, rgba(3, 16, 24, 0.8) 100%),
    url("foto/fishing-time-hero.jpg") right 12% center / cover no-repeat;
  transform: scale(1.02);
  animation: heroDrift 20s ease-in-out infinite alternate;
}

.hero-banner::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 8rem;
  z-index: -1;
  background: linear-gradient(to top, var(--bg) 0%, rgba(6, 24, 33, 0.8) 45%, transparent 100%);
  pointer-events: none;
}

@keyframes heroDrift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.06) translate3d(-1%, 0.6%, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-banner::before { animation: none; }
}

.hero-copy {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.15rem;
  position: relative;
  z-index: 2;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}

.offer-chip {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 193, 77, 0.55);
  background: rgba(255, 193, 77, 0.15);
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 16px rgba(255, 193, 77, 0.15);
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(46, 196, 182, 0.4);
  background: rgba(46, 196, 182, 0.12);
  color: var(--ice);
  font-size: 0.82rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}

.hero-banner h1 {
  margin: 0;
  max-width: 16ch;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.7);
  text-wrap: balance;
}

.hero-banner .lead {
  margin: 0;
  max-width: 36ch;
  color: #c7e3eb;
  font-size: clamp(1.05rem, 1.7vw, 1.18rem);
  line-height: 1.6;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.4rem;
}

.btn-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 3.3rem;
  padding: 0.8rem 2.2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hot) 100%);
  color: #1a1203;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.12rem;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(255, 159, 28, 0.35);
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1), filter 0.2s ease, box-shadow 0.2s ease;
}
.btn-play:hover {
  color: #1a1203;
  filter: brightness(1.08);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 34px rgba(255, 159, 28, 0.5);
}

.btn-demo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 3.3rem;
  padding: 0.8rem 1.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.btn-demo:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.45);
  color: #ffffff;
  transform: translateY(-2px);
}

/* —— Games rail —— */
.games-rail {
  width: min(100% - 1.75rem, var(--max));
  margin: 2.75rem auto 0;
}

.games-rail h2 {
  margin: 0 0 1.15rem;
  font-family: var(--font-heading);
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  letter-spacing: -0.02em;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(190px, 1fr));
  gap: 1rem 0.9rem;
}

.game-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: calc(var(--radius) - 0.15rem);
  background: linear-gradient(180deg, var(--surface-2), var(--surface));
  border: 1px solid var(--border);
  text-decoration: none;
  color: var(--text);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.game-card:hover {
  transform: translateY(-4px);
  border-color: rgba(46, 196, 182, 0.55);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}
.game-card > a {
  display: contents;
  color: inherit;
  text-decoration: none;
}
.game-card img {
  width: 100%;
  aspect-ratio: 226 / 338;
  object-fit: cover;
  background: #0a1d27;
}
.game-card .meta { padding: 0.75rem 0.8rem 0.95rem; overflow-wrap: anywhere; hyphens: auto; }
.game-card h3, .game-card p { overflow-wrap: anywhere; hyphens: auto; }
.game-card h3 {
  margin: 0 0 0.3rem;
  font-family: var(--font-heading);
  font-size: 0.98rem;
  font-weight: 700;
}
.game-card p {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--muted);
}

/* —— Content —— */
main section:not(.hero-banner) {
  width: min(100% - 1.75rem, var(--max));
  margin: 2.6rem auto;
}

main h2 {
  margin: 0 0 0.9rem;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.8vw, 1.95rem);
  letter-spacing: -0.02em;
}

main h3 {
  margin: 1.35rem 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.12rem;
}

.surface-panel {
  background: linear-gradient(160deg, rgba(17, 52, 69, 0.92), rgba(12, 40, 52, 0.96));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.45rem 1.35rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}

.prose p { margin: 0 0 1rem; color: #c5dde3; }
.prose ul,
.prose ol {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: #c5dde3;
}

.table-scroll {
  overflow-x: auto;
  margin: 1rem 0 1.35rem;
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) - 0.2rem);
  background: rgba(3, 16, 24, 0.35);
}

table {
  width: 100%;
  min-width: 32rem;
  border-collapse: collapse;
  font-size: 0.95rem;
}
th,
td {
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
}
th {
  background: rgba(46, 196, 182, 0.1);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ice);
}
tr:last-child td { border-bottom: 0; }

.steps {
  list-style: none;
  margin: 1rem 0 1.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14.5rem, 1fr));
  gap: 0.95rem;
  counter-reset: step;
}
.steps li {
  position: relative;
  padding: 1.1rem 1rem 1.1rem 3.1rem;
  border-radius: calc(var(--radius) - 0.2rem);
  background: var(--surface);
  border: 1px solid var(--border);
  counter-increment: step;
  color: #c5dde3;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0.85rem;
  top: 1.05rem;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--teal), #1a9e94);
  color: #031018;
  font-weight: 800;
  font-size: 0.85rem;
}

.faq details {
  margin: 0 0 0.7rem;
  padding: 0.95rem 1.05rem;
  border-radius: calc(var(--radius) - 0.2rem);
  background: var(--surface);
  border: 1px solid var(--border);
}
.faq summary {
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
}
.faq details[open] summary { color: var(--accent); }
.faq h3 {
  margin: 1.1rem 0 0.35rem;
  font-size: 1.05rem;
}

.cta-band {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
  padding: 1.45rem 1.5rem;
  border-radius: calc(var(--radius) + 0.15rem);
  border: 1px solid rgba(255, 193, 77, 0.35);
  background:
    linear-gradient(120deg, rgba(255, 193, 77, 0.14), rgba(46, 196, 182, 0.1)),
    var(--surface);
}
.cta-band p {
  margin: 0;
  max-width: 36rem;
  color: #d5ecef;
  font-weight: 500;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 1rem 0;
}
.trust-row span {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.8rem;
}

/* —— Demo Game Embed —— */
.game-demo-wrap {
  width: 100%;
  margin: 0.5rem 0 2rem;
  padding: 2rem 0;
  background: linear-gradient(180deg, rgba(6, 24, 33, 0.0) 0%, rgba(6, 24, 33, 0.55) 100%);
}

.game-demo-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  width: min(100% - 1.75rem, var(--max));
  margin-inline: auto;
}

.game-demo-label {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.game-frame-box {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #020e14;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.game-frame-loading {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
  z-index: 2;
  background: #020e14;
}

.spinner {
  width: 2.5rem;
  height: 2.5rem;
  border: 3px solid rgba(255, 193, 77, 0.18);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.game-frame-box iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.demo-note {
  max-width: 36rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
}

figure[data-block="media"] {
  margin: 2rem auto;
  width: min(100% - 1.75rem, var(--max));
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
figure[data-block="media"] img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
}
figure[data-block="media"] figcaption {
  padding: 0.75rem 1rem;
  color: var(--muted);
  font-size: 0.88rem;
}

/* —— Footer / sticky —— */
.site-footer {
  margin-top: 3.75rem;
  padding: 2.25rem 0 5.75rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}
.site-footer .site-shell {
  display: grid;
  gap: 1.1rem;
}
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
}
.site-footer a {
  color: var(--muted);
  text-decoration: none;
}
.site-footer a:hover { color: var(--accent); }

.disclosure {
  font-size: 0.82rem;
  line-height: 1.55;
  color: #7f9aa3;
}

.sticky-cta { display: none; }

@media (max-width: 1100px) {
  .games-grid { grid-template-columns: repeat(3, minmax(190px, 1fr)); }
}

@media (max-width: 900px) {
  .hero-banner {
    min-height: auto;
    padding: 3.2rem 0 2.5rem;
  }
  .hero-banner::before {
    background:
      linear-gradient(180deg, rgba(3, 16, 24, 0.86) 0%, rgba(3, 16, 24, 0.94) 55%, var(--bg) 100%),
      url("foto/fishing-time-hero.jpg") center top / cover no-repeat;
  }
  .hero-banner h1 {
    font-size: clamp(2.2rem, 9vw, 3.2rem);
  }
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 0;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-left: auto;
  }
  .header-cta {
    display: none;
  }
  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0 0.5rem;
    gap: 0.85rem;
    border-top: 1px solid rgba(46, 196, 182, 0.15);
  }
  .site-nav.is-open { display: flex; }

  .games-grid { grid-template-columns: repeat(2, minmax(190px, 1fr)); }

  .sticky-cta {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 60;
    padding: 0.7rem 0.9rem calc(0.7rem + env(safe-area-inset-bottom));
    background: rgba(3, 16, 24, 0.94);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(12px);
  }
  .sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3.2rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hot));
    color: #1a1203;
    font-family: var(--font-heading);
    font-weight: 800;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(255, 159, 28, 0.4);
  }
}

@media (max-width: 600px) {
  .hero-banner {
    padding: 2.8rem 0 2rem;
  }
  .hero-badges {
    gap: 0.4rem;
  }
  .offer-chip, .badge-tag {
    font-size: 0.76rem;
    padding: 0.35rem 0.75rem;
  }
  .hero-actions {
    width: 100%;
    flex-direction: column;
    gap: 0.65rem;
  }
  .hero-actions .btn-play,
  .hero-actions .btn-demo {
    width: 100%;
    min-height: 3.2rem;
  }
  .games-grid {
    grid-template-columns: repeat(2, minmax(135px, 1fr));
    gap: 0.75rem 0.6rem;
  }
  .surface-panel {
    padding: 1.25rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .game-card,
  .btn-play { transition: none; }
}
