.guide-layout-full {
  grid-template-columns: minmax(0, 1fr);
}

.guide-layout-full .guide-copy {
  width: 100%;
  max-width: none;
  justify-self: stretch;
}

.fishing-explore {
  position: relative;
  overflow: hidden;
  background: #080808;
}

.fishing-explore-card {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
  overflow: hidden;
  padding: 42px 46px;
  border: 1px solid rgba(99, 220, 255, .2);
  border-radius: 26px;
  background:
    radial-gradient(circle at 8% 18%, rgba(67, 213, 255, .11), transparent 31%),
    linear-gradient(120deg, rgba(255,255,255,.045), rgba(15,15,15,.96) 48%, rgba(212,175,55,.045));
  box-shadow: inset 0 1px rgba(255,255,255,.05), 0 22px 55px rgba(0,0,0,.24);
}

.fishing-explore-card::before,
.fishing-explore-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  pointer-events: none;
}

.fishing-explore-card::before {
  top: -82px;
  right: 14%;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(101, 220, 255, .12);
}

.fishing-explore-card::after {
  right: -110px;
  bottom: -150px;
  width: 310px;
  height: 310px;
  background: radial-gradient(circle, rgba(212,175,55,.09), transparent 67%);
}

.fishing-explore-copy {
  min-width: 0;
}

.fishing-explore-kicker {
  display: block;
  margin-bottom: 10px;
  color: #65dcff;
  font-size: .7rem;
  font-weight: 900;
  letter-spacing: .18em;
}

.fishing-explore h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.85rem, 3vw, 2.75rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.fishing-explore p {
  max-width: 760px;
  margin: 15px 0 0;
  color: #bfc0c3;
  font-size: .97rem;
  line-height: 1.72;
}

.fishing-explore .fishing-explore-action {
  display: inline-flex;
  min-width: 140px;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 28px;
  border: 1px solid #f6d252;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, #f9df68 0%, #e8bd35 54%, #c89011 100%);
  box-shadow: inset 0 1px rgba(255,255,255,.5), 0 0 0 1px rgba(145,99,8,.28), 0 10px 28px rgba(212,175,55,.3);
  text-shadow: 0 1px 1px rgba(70,43,0,.46);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .06em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease;
}

.fishing-explore-action:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px rgba(255,255,255,.5), 0 0 0 1px rgba(145,99,8,.35), 0 11px 29px rgba(212,175,55,.43);
}

.fishing-explore-action span {
  font-size: 1.25rem;
  line-height: 1;
}

@media (max-width: 760px) {
  .fishing-explore-card {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 32px 28px;
    border-radius: 22px;
  }

  .fishing-explore-action {
    width: auto;
    justify-self: start;
  }
}

@media (max-width: 520px) {
  .fishing-explore-card {
    padding: 27px 22px;
  }

  .fishing-explore h2 {
    font-size: 1.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fishing-explore-action {
    transition: none;
  }
}

/* Fishing-page final CTA: underwater motion and scoped steady-beat action. */
.fishing-explore-card {
  gap: 54px;
  background:
    radial-gradient(circle at 8% 18%, rgba(67,213,255,.16), transparent 34%),
    radial-gradient(circle at 78% 90%, rgba(0,128,190,.12), transparent 35%),
    linear-gradient(120deg, rgba(255,255,255,.045), rgba(7,17,23,.98) 48%, rgba(212,175,55,.07));
}

.fishing-explore-copy {
  position: relative;
  z-index: 2;
}

.fishing-explore p {
  max-width: 680px;
}

.fishing-explore-action {
  position: relative;
  z-index: 4;
  transform-origin: center;
  animation: fishing-play-steady-beat 1.6s ease-in-out infinite;
  will-change: transform, box-shadow;
}

.fishing-explore-action:hover,
.fishing-explore-action:focus-visible {
  animation-play-state: paused;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 18px 38px rgba(212,175,55,.28);
}

@keyframes fishing-play-steady-beat {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 12px 30px rgba(212,175,55,.2), 0 0 0 0 rgba(253,202,51,0);
  }
  50% {
    transform: scale(1.055);
    box-shadow: 0 16px 36px rgba(212,175,55,.4), 0 0 0 8px rgba(253,202,51,.08);
  }
}

.fishing-motion {
  position: absolute;
  z-index: 1;
  inset: 0 150px 0 45%;
  overflow: hidden;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 18%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 88%, transparent);
}

.fishing-motion::before,
.fishing-motion::after {
  content: "";
  position: absolute;
  left: -15%;
  width: 130%;
  height: 42px;
  border: 1px solid rgba(101,220,255,.13);
  border-radius: 50%;
  animation: fishing-current 4.8s ease-in-out infinite;
}

.fishing-motion::before { bottom: 24px; }
.fishing-motion::after { bottom: 8px; animation-delay: -2.4s; opacity: .55; }

@keyframes fishing-current {
  0%, 100% { transform: translateX(-2%) scaleY(.8); }
  50% { transform: translateX(2%) scaleY(1.08); }
}

.fishing-target {
  position: absolute;
  right: 24px;
  top: 20px;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(101,220,255,.18);
  border-radius: 50%;
  box-shadow: inset 0 0 28px rgba(101,220,255,.05);
  animation: fishing-target-spin 10s linear infinite;
}

.fishing-target::before,
.fishing-target::after {
  content: "";
  position: absolute;
  background: rgba(101,220,255,.16);
}

.fishing-target::before { left: 50%; top: -13px; width: 1px; height: 138px; }
.fishing-target::after { top: 50%; left: -13px; width: 138px; height: 1px; }

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

.fishing-fish {
  position: absolute;
  width: 88px;
  color: #65dcff;
  filter: drop-shadow(0 0 11px rgba(101,220,255,.32));
  opacity: 0;
}

.fishing-fish svg { display: block; width: 100%; fill: currentColor; }
.fishing-fish circle { fill: #071117; }
.fishing-fish-one { top: 48px; right: -90px; animation: fishing-swim 7.2s linear infinite; }
.fishing-fish-two { top: 116px; right: -65px; width: 58px; color: #d4af37; animation: fishing-swim 8.8s linear -4.1s infinite; }

@keyframes fishing-swim {
  0% { transform: translate3d(70px,8px,0); opacity: 0; }
  12% { opacity: .48; }
  82% { opacity: .48; }
  100% { transform: translate3d(-360px,-12px,0); opacity: 0; }
}

.fishing-bubble {
  position: absolute;
  bottom: 24px;
  border: 1px solid rgba(101,220,255,.42);
  border-radius: 50%;
  box-shadow: inset 0 0 7px rgba(101,220,255,.12);
  opacity: 0;
  animation: fishing-bubble-rise 4.2s ease-in infinite;
}

.fishing-bubble-one { left: 32%; width: 10px; height: 10px; }
.fishing-bubble-two { left: 55%; width: 16px; height: 16px; animation-delay: -1.5s; }
.fishing-bubble-three { left: 72%; width: 7px; height: 7px; animation-delay: -2.8s; }

@keyframes fishing-bubble-rise {
  0% { transform: translate3d(0,20px,0) scale(.7); opacity: 0; }
  18% { opacity: .6; }
  100% { transform: translate3d(12px,-145px,0) scale(1.12); opacity: 0; }
}


@media (max-width: 760px) {
  .fishing-motion {
    inset: 0 0 66px 34%;
    opacity: .72;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fishing-explore-action,
  .fishing-motion::before,
  .fishing-motion::after,
  .fishing-target,
  .fishing-fish,
  .fishing-bubble { animation: none !important; }

  .fishing-explore-action { transition: none; }
  .fishing-fish-one { opacity: .28; transform: translate3d(-120px,0,0); }
  .fishing-fish-two { opacity: .24; transform: translate3d(-210px,0,0); }
}

.fishing-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.fishing-step-card {
  display: flex;
  min-width: 0;
  min-height: 318px;
  padding: 32px 30px 34px;
  flex-direction: column;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.038), rgba(17,17,17,.96));
  box-shadow: inset 0 1px rgba(255,255,255,.025), 0 18px 42px rgba(0,0,0,.15);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.fishing-step-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212,175,55,.38);
  box-shadow: inset 0 1px rgba(255,255,255,.035), 0 22px 48px rgba(0,0,0,.23);
}

.fishing-step-icon {
  display: grid;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  place-items: center;
  border: 1px solid rgba(244,199,47,.08);
  border-radius: 16px;
  color: #f6c91d;
  background: rgba(93,72,6,.34);
}

.fishing-step-icon svg {
  width: 29px;
  height: 29px;
}

.fishing-step-label {
  margin-top: 27px;
  color: #d7ad17;
  font-size: .77rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .12em;
}

.fishing-step-card h3 {
  min-height: 1.35em;
  margin: 11px 0 0;
  color: #fff;
  font-size: 1.34rem;
  font-weight: 850;
  line-height: 1.35;
  letter-spacing: -.025em;
}

.fishing-step-card p {
  margin: 11px 0 0;
  color: #d0d1d4;
  font-size: .94rem;
  line-height: 1.72;
}

@media (max-width: 960px) {
  .fishing-step-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fishing-step-card {
    min-height: 292px;
  }
}

@media (max-width: 640px) {
  .fishing-step-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .fishing-step-card {
    min-height: 0;
    padding: 27px 24px 29px;
    border-radius: 21px;
  }

  .fishing-step-label {
    margin-top: 23px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fishing-step-card {
    transition: none;
  }
}
