:root {
  --color-bg: #eaf6fa;
  --color-bg-gradient: linear-gradient(120deg, rgba(36, 174, 196, 0.09) 0%, rgba(36, 174, 196, 0.03) 100%);
  --color-bg-section: #f5fbfd;
  --color-bg-card: #ffffffcc;
  --color-accent: #ff7c2b;
  --color-accent-hover: #ff9452;
  --color-text: #1b2a3a;
  --color-text-muted: #5d6e7c;
  --color-border: #2ab2c7;
  --color-shadow: rgba(36, 174, 196, 0.08);
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-card: 0 4px 20px var(--color-shadow);
  --shadow-hover: 0 6px 28px rgba(36, 174, 196, 0.13);
  --max-width: 1240px;
  --transition: 0.22s cubic-bezier(.4,0,.2,1);
  --font-main: 'Inter', 'Segoe UI', Arial, sans-serif;
  --font-size: 14px;
  --font-size-sm: 13px;
  --font-size-lg: 18px;
  --font-weight-bold: 600;
  --gap-section: 60px;
  --gap-card: 32px;
  --gap-grid: 36px;
  --gap-sm: 16px;
  --gap-xs: 8px;
}

html, body {
  margin: 0;
  padding: 0;
  font-family: var(--font-main);
  font-size: var(--font-size);
  color: var(--color-text);
  background: var(--color-bg);
  background-image: var(--color-bg-gradient);
  min-height: 100vh;
  scroll-behavior: smooth;
}

.fishdash-body {
  min-height: 100vh;
  background: var(--color-bg);
  background-image: var(--color-bg-gradient);
}

.fishdash-header {
  width: 100%;
  background: #fafdff;
  background-image: linear-gradient(90deg, rgba(36,174,196,0.07) 0%, rgba(255,255,255,0.9) 100%);
  box-shadow: 0 2px 16px rgba(36,174,196,0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}

.fishdash-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
  gap: var(--gap-sm);
}

.fishdash-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 14px;
}

.fishdash-brand__logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(36,174,196,0.09);
  background: #fff;
  object-fit: cover;
}

.fishdash-brand__title {
  font-size: 1.3rem;
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.5px;
  color: var(--color-text);
}

.fishdash-nav__list {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.fishdash-nav__link {
  color: var(--color-text-muted);
  text-decoration: none;
  font-weight: 500;
  padding: 7px 0;
  border-bottom: 1px solid transparent;
  transition: color var(--transition), border-bottom var(--transition);
  font-size: 1em;
}

.fishdash-nav__link:hover,
.fishdash-nav__link:focus {
  color: var(--color-accent);
  border-bottom: 1px solid var(--color-accent);
}

.fishdash-main {
  width: 100%;
  min-height: 100vh;
  background: none;
}

.fishdash-section__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.fishdash-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: var(--gap-card);
  background: var(--color-bg-section);
  background-image: var(--color-bg-gradient);
  border-radius: var(--radius-lg);
  margin: 32px auto var(--gap-section);
  max-width: var(--max-width);
  box-shadow: var(--shadow-card);
  min-height: 380px;
  overflow: hidden;
}

.fishdash-hero__media {
  flex: 1 1 380px;
  min-width: 320px;
  max-width: 540px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, rgba(36,174,196,0.07) 0%, rgba(255,255,255,0.14) 100%);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  overflow: hidden;
}

.fishdash-hero__video {
  width: 100%;
  height: 100%;
  min-height: 320px;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  box-shadow: 0 6px 24px rgba(36,174,196,0.08);
}

.fishdash-hero__decor {
  position: absolute;
  width: 70px;
  height: 70px;
  opacity: 0.65;
  z-index: 2;
  pointer-events: none;
  filter: drop-shadow(0 4px 12px rgba(36,174,196,0.12));
}
.fishdash-hero__decor--left { left: 18px; bottom: 22px;}
.fishdash-hero__decor--right { right: 18px; top: 22px;}

.fishdash-hero__content {
  flex: 2 1 420px;
  min-width: 320px;
  padding: 42px 36px 38px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 22px;
}

.fishdash-hero__title {
  font-size: 2.1rem;
  font-weight: var(--font-weight-bold);
  margin: 0 0 8px 0;
  color: var(--color-text);
  letter-spacing: 0.2px;
}

.fishdash-hero__tagline {
  color: var(--color-text-muted);
  font-size: 1.08em;
  margin: 0 0 10px 0;
}

.fishdash-hero__panels {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.fishdash-hero__panel {
  background: var(--color-bg-card);
  box-shadow: 0 2px 10px rgba(36,174,196,0.05);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  min-width: 140px;
  flex: 1 1 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow var(--transition), transform var(--transition);
}

.fishdash-hero__panel:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.025);
}

.fishdash-hero__panel-title {
  font-size: 1em;
  font-weight: var(--font-weight-bold);
  margin: 0 0 2px 0;
  color: var(--color-accent);
  letter-spacing: 0.1px;
}

.fishdash-hero__panel-body {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  margin: 0;
}

.fishdash-hero__actions {
  display: flex;
  gap: 18px;
  margin-top: 8px;
}

.fishdash-cta {
  display: inline-block;
  font-weight: var(--font-weight-bold);
  font-size: 1em;
  padding: 12px 30px;
  border-radius: var(--radius-md);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  box-shadow: 0 2px 10px rgba(36,174,196,0.04);
  letter-spacing: 0.1px;
}

.fishdash-cta--primary {
  background: var(--color-accent);
  color: #fff;
  box-shadow: 0 2px 14px rgba(255,124,43,0.09);
}

.fishdash-cta--primary:hover,
.fishdash-cta--primary:focus {
  background: var(--color-accent-hover);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 20px rgba(255,124,43,0.13);
}

.fishdash-cta--secondary {
  background: #fff;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

.fishdash-cta--secondary:hover,
.fishdash-cta--secondary:focus {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent-hover);
  transform: translateY(-2px) scale(1.03);
}

.fishdash-section__title {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  margin: 0 0 18px 0;
  color: var(--color-text);
  letter-spacing: 0.1px;
}

.fishdash-section__intro {
  color: var(--color-text-muted);
  margin-bottom: 28px;
  font-size: 1em;
}

.fishdash-screenshots {
  margin: 0 auto var(--gap-section);
  background: var(--color-bg-section);
  background-image: var(--color-bg-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 36px 0 32px 0;
}

.fishdash-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.fishdash-gallery__item {
  background: var(--color-bg-card);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px rgba(36,174,196,0.04);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

.fishdash-gallery__item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.025);
}

.fishdash-gallery__img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  background: #eaf6fa;
  display: block;
}

.fishdash-gallery__caption {
  padding: 10px 12px 12px 12px;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  text-align: center;
}

.fishdash-gameplay {
  margin: 0 auto var(--gap-section);
  background: var(--color-bg-section);
  background-image: var(--color-bg-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 44px 0 38px 0;
}

.fishdash-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-grid);
  margin-bottom: 28px;
}

.fishdash-grid__col {
  background: var(--color-bg-card);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(36,174,196,0.04);
  padding: 22px 20px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.fishdash-subtitle {
  font-size: 1.07em;
  font-weight: var(--font-weight-bold);
  margin-bottom: 8px;
  color: var(--color-accent);
}

.fishdash-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.fishdash-list__item {
  position: relative;
  padding-left: 22px;
  margin-bottom: 7px;
  color: var(--color-text);
  font-size: 1em;
}

.fishdash-list:not(.fishdash-list--numbered) .fishdash-list__item::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  opacity: 0.22;
}

.fishdash-list--numbered {
  counter-reset: fishdash-num;
}

.fishdash-list--numbered .fishdash-list__item {
  padding-left: 26px;
}

.fishdash-list--numbered .fishdash-list__item::before {
  counter-increment: fishdash-num;
  content: counter(fishdash-num) ".";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-accent);
  font-weight: var(--font-weight-bold);
  opacity: 0.7;
  font-size: 1em;
}

.fishdash-feature-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(36,174,196,0.06);
  padding: 20px 26px 18px 26px;
  margin-top: 10px;
  margin-bottom: 0;
}

.fishdash-feature-card__title {
  font-size: 1.07em;
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: 8px;
}

.fishdash-world {
  margin: 0 auto var(--gap-section);
  background: var(--color-bg-section);
  background-image: var(--color-bg-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 44px 0 38px 0;
}

.fishdash-world__top {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: var(--gap-card);
  align-items: center;
  margin-bottom: 28px;
}

.fishdash-world__intro {
  color: var(--color-text-muted);
  font-size: 1em;
}

.fishdash-world__img {
  width: 100%;
  max-width: 320px;
  max-height: 180px;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(36,174,196,0.05);
}

.fishdash-grid--3col {
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-grid);
}

.fishdash-grid__card {
  background: var(--color-bg-card);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(36,174,196,0.04);
  padding: 20px 18px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.fishdash-grid__card-title {
  font-size: 1em;
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: 8px;
}

.fishdash-features {
  margin: 0 auto var(--gap-section);
  background: var(--color-bg-section);
  background-image: var(--color-bg-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 44px 0 38px 0;
}

.fishdash-features__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-grid);
  margin-bottom: 30px;
}

.fishdash-feature {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(36,174,196,0.04);
  padding: 20px 22px 16px 22px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.fishdash-feature:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.02);
}

.fishdash-feature__title {
  font-size: 1.07em;
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: 8px;
}

.fishdash-feature__text {
  color: var(--color-text-muted);
  font-size: 1em;
}

.fishdash-features__img {
  display: block;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(36,174,196,0.06);
  object-fit: cover;
}

.fishdash-modes {
  margin: 0 auto var(--gap-section);
  background: var(--color-bg-section);
  background-image: var(--color-bg-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 44px 0 38px 0;
}

.fishdash-grid--2col {
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-grid);
}

.fishdash-note {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(36,174,196,0.04);
  padding: 16px 18px;
  color: var(--color-text-muted);
  font-size: 1em;
  margin-top: 28px;
}

.fishdash-rhythm {
  margin: 0 auto var(--gap-section);
  background: var(--color-bg-section);
  background-image: var(--color-bg-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 44px 0 38px 0;
}

.fishdash-steps__list {
  margin: 0 0 20px 0;
  padding: 0;
  list-style: none;
  counter-reset: fishdash-step;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--gap-xs);
}

.fishdash-steps__item {
  background: var(--color-bg-card);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(36,174,196,0.04);
  padding: 16px 12px 13px 22px;
  font-size: 1em;
  color: var(--color-text);
  position: relative;
  min-height: 56px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.fishdash-steps__item::before {
  counter-increment: fishdash-step;
  content: counter(fishdash-step);
  position: absolute;
  left: 8px;
  top: 12px;
  font-size: 1.05em;
  color: var(--color-accent);
  font-weight: var(--font-weight-bold);
  opacity: 0.7;
}

.fishdash-steps__item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.025);
}

.fishdash-rhythm__why {
  color: var(--color-text-muted);
  font-size: 1em;
  margin-top: 10px;
}

.fishdash-faq {
  margin: 0 auto var(--gap-section);
  background: var(--color-bg-section);
  background-image: var(--color-bg-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 44px 0 38px 0;
}

.fishdash-faq__item {
  background: var(--color-bg-card);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(36,174,196,0.04);
  padding: 18px 22px 14px 22px;
  margin-bottom: 14px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.fishdash-faq__item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.01);
}

.fishdash-faq__q {
  font-size: 1em;
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: 7px;
}

.fishdash-faq__a {
  color: var(--color-text-muted);
  font-size: 1em;
  margin: 0;
}

.fishdash-reviews {
  margin: 0 auto var(--gap-section);
  background: var(--color-bg-section);
  background-image: var(--color-bg-gradient);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 44px 0 38px 0;
}

.fishdash-reviews__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-card);
}

.fishdash-reviews__item {
  background: var(--color-bg-card);
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px rgba(36,174,196,0.04);
  padding: 18px 22px 14px 22px;
  color: var(--color-text);
  font-size: 1em;
  transition: box-shadow var(--transition), transform var(--transition);
}

.fishdash-reviews__item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px) scale(1.01);
}

.fishdash-download {
  margin: 0 auto 48px auto;
  background: var(--color-bg-section);
  background-image: var(--color-bg-gradient);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 40px 0 42px 0;
}

.fishdash-download__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.fishdash-download__text {
  color: var(--color-text-muted);
  font-size: 1em;
  margin-bottom: 10px;
  text-align: center;
  max-width: 500px;
}

.fishdash-download__cta {
  margin-top: 8px;
  font-size: 1.08em;
}

.fishdash-footer {
  background: #fafdff;
  background-image: linear-gradient(90deg, rgba(36,174,196,0.07) 0%, rgba(255,255,255,0.9) 100%);
  box-shadow: 0 -2px 16px rgba(36,174,196,0.04);
  padding: 44px 0 24px 0;
}

.fishdash-footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.fishdash-footer__columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-card);
  margin-bottom: 32px;
}

.fishdash-footer__col {
  background: var(--color-bg-card);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 10px rgba(36,174,196,0.04);
  padding: 22px 18px 16px 18px;
}

.fishdash-footer__title {
  font-size: 1em;
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
  margin-bottom: 8px;
}

.fishdash-footer__text {
  color: var(--color-text-muted);
  font-size: 1em;
}

.fishdash-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fishdash-footer__links li {
  margin-bottom: 7px;
}

.fishdash-footer__links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 1em;
  transition: color var(--transition);
}

.fishdash-footer__links a:hover,
.fishdash-footer__links a:focus {
  color: var(--color-accent);
}

.fishdash-footer__bottom {
  text-align: center;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  margin-top: 18px;
}

.fishdash-footer__note {
  margin-top: 7px;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
  .fishdash-header__inner {
    padding: 14px 14px;
  }
  .fishdash-hero {
    flex-direction: column;
    min-height: unset;
    padding: 0;
  }
  .fishdash-hero__media,
  .fishdash-hero__content {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    max-width: 100%;
    min-width: 0;
    padding: 0;
  }
  .fishdash-hero__content {
    padding: 32px 22px 28px 22px;
  }
  .fishdash-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .fishdash-world__top {
    grid-template-columns: 1fr;
    gap: var(--gap-sm);
  }
  .fishdash-features__list {
    grid-template-columns: 1fr;
    gap: var(--gap-sm);
  }
  .fishdash-steps__list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--gap-xs);
  }
  .fishdash-reviews__list {
    grid-template-columns: 1fr;
    gap: var(--gap-sm);
  }
  .fishdash-footer__columns {
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-sm);
  }
  .fishdash-grid--3col {
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-sm);
  }
  .fishdash-grid,
  .fishdash-grid--2col {
    grid-template-columns: 1fr;
    gap: var(--gap-sm);
  }
}

/* Responsive: Mobile */
@media (max-width: 700px) {
  .fishdash-header__inner {
    flex-direction: column;
    gap: 10px;
    padding: 10px 6px;
  }
  .fishdash-nav__list {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .fishdash-hero {
    margin: 18px 0 var(--gap-section) 0;
    border-radius: var(--radius-md);
  }
  .fishdash-hero__media {
    min-height: 180px;
    max-height: 220px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }
  .fishdash-hero__video {
    min-height: 180px;
    max-height: 220px;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }
  .fishdash-hero__content {
    padding: 18px 8px 18px 8px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    gap: 14px;
  }
  .fishdash-hero__title {
    font-size: 1.2rem;
  }
  .fishdash-hero__panels {
    flex-direction: column;
    gap: 10px;
  }
  .fishdash-hero__panel {
    min-width: unset;
    padding: 10px 12px;
  }
  .fishdash-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .fishdash-section__title {
    font-size: 1.1rem;
  }
  .fishdash-section__inner {
    padding: 0 6px;
  }
  .fishdash-world__img {
    max-width: 100%;
    max-height: 120px;
  }
  .fishdash-features__img {
    max-width: 100%;
  }
  .fishdash-footer__columns {
    grid-template-columns: 1fr;
    gap: var(--gap-xs);
  }
  .fishdash-footer__col {
    padding: 14px 8px 10px 8px;
  }
  .fishdash-grid,
  .fishdash-grid--2col,
  .fishdash-grid--3col {
    grid-template-columns: 1fr;
    gap: var(--gap-xs);
  }
  .fishdash-steps__list {
    grid-template-columns: 1fr;
    gap: var(--gap-xs);
  }
}

/* Hide scrollbars for a cleaner look */
::-webkit-scrollbar {
  width: 8px;
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: rgba(36,174,196,0.09);
  border-radius: 4px;
}