/*
 * Fluent Scrobbler for Windows
 * Copyright (c) 2026 SnowMint
 * Licensed under the GNU General Public License v3.0 (GPL-3.0)
 * You should have received a copy of the GNU General Public License along with this program.
 * If not, see <https://www.gnu.org/licenses/>.
 */

:root {
  --color-bg: #ffffff;
  --color-surface: #ffffff;
  --color-surface-soft: #ffffff;
  --color-primary: #0f6cbd;
  --color-primary-hover: #115ea3;
  --color-text-main: #000000;
  --color-text-muted: #616161;
  --color-border: #e0e0e0;
  --shadow-card: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.04), 0 0 0.125rem rgba(0, 0, 0, 0.06);
  --shadow-float: 0 0.5rem 1rem rgba(0, 0, 0, 0.14);
  --radius-card: 0.5rem;
  --radius-button: 0.25rem;
  --font-stack: "Segoe UI Variable", "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
}

:root[data-theme="dark"] {
  --color-bg: #0b0c0f;
  --color-surface: #11131a;
  --color-surface-soft: rgba(17, 19, 26, 0.82);
  --color-primary: #3796ff;
  --color-primary-hover: #2a7dd6;
  --color-text-main: #f3f4f6;
  --color-text-muted: #b6b9c3;
  --color-border: #2a2d36;
  --shadow-card: 0 0.375rem 1rem rgba(0, 0, 0, 0.35);
  --shadow-float: 0 0.625rem 1.5rem rgba(0, 0, 0, 0.45);
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
  view-transition-name: root;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

body {
  font-family: var(--font-stack);
  background-color: var(--color-bg);
  color: var(--color-text-main);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 75rem !important;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
  box-sizing: border-box;
  align-items: center;
}

.section {
  max-width: 60rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.navbar {
  background-color: transparent;
  padding: 24px;
}

.navbar .container {
  max-width: 100% !important;
  margin: 0;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  width: 100%;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  color: #707070;
  text-decoration: none;
}

.logo span {
  color: #707070;
}

[data-theme="dark"] .logo span {
  color: #a0a0a0;
}

.logo-mark {
  width: 30px !important;
  height: 30px !important;
  object-fit: contain;
}

.nav-divider {
  width: 1px;
  height: 16px;
  background-color: #b2b2b2;
  flex-shrink: 0;
}

[data-theme="dark"] .nav-divider {
  background-color: #555555;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-links a {
  text-decoration: none;
  color: #000000;
  font-size: 16px;
  transition: color 0.2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  padding: 0.375rem 0;
}

[data-theme="dark"] .nav-links a {
  color: #ffffff;
}

.nav-links a:hover {
  color: var(--color-primary);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--color-text-main);
  border-radius: 6px;
  transition: background-color 0.2s;
}

.mobile-menu-toggle:hover {
  background-color: var(--color-surface);
}

.hero,
.download-hero {
  background: radial-gradient(112.37% 96.84% at 50% 3.16%, #ffffff 55%, #f4fafd 81.63%);
  padding: 5rem 0;
  text-align: center;
}

[data-theme="dark"] .hero,
[data-theme="dark"] .download-hero {
  background: radial-gradient(112.37% 96.84% at 50% 3.16%, #0b0c0f 55%, #0f1724 81.63%);
}

.hero-content {
  max-width: 60rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.title {
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.subtitle {
  font-size: 18px;
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  text-align: center;
}

.gradient-text {
  background: linear-gradient(135deg, #0a77d3, #8562c5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.main-download-btn {
  background-color: #0f6cbd;
  color: #ffffff;
  border: none;
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 20px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 1rem;
  text-decoration: none;
  transition: background-color 0.2s;
}

.main-download-btn:hover {
  background-color: #115ea3;
}

.hero-visual-container {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 0.5rem;
  border: none;
  box-shadow: none;
  overflow: hidden;
  background-color: transparent;
  position: relative;
}

.fluent-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.5s ease-out;
}

.hidden {
  opacity: 0;
  pointer-events: none;
}

.visible {
  opacity: 1;
}

.hero-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-button);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition:
    background-color 0.2s,
    transform 0.1s;
}

.btn-primary {
  background-color: #0078d4;
  color: #ffffff;
  border: none;
  box-shadow: none;
}

.btn-primary:hover {
  background-color: var(--color-primary-hover);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-secondary {
  background-color: #f3f3f3;
  color: #242424;
  border: 1px solid #e0e0e0;
  box-shadow: none;
}

.btn-secondary:hover {
  background-color: #e5e5e5;
  color: #000000;
  border-color: #d1d1d1;
}

.feature-showcase-section {
  padding: 5rem 0;
}

.feature-showcase-section.alt-bg {
  background-color: #f4fafd;
}

[data-theme="dark"] .feature-showcase-section.alt-bg {
  background-color: transparent;
}

.showcase-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  width: 100%;
}

.showcase-row.row-reverse {
  flex-direction: row-reverse;
}

.showcase-image-wrapper {
  width: 52%;
  max-width: 580px;
  aspect-ratio: 2731 / 1536;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.showcase-content {
  width: 48%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.showcase-title {
  font-size: 38px;
  font-weight: 600;
  color: var(--color-text-main);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.showcase-desc {
  font-size: 18px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.feature-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  border: none;
  padding: 0;
  margin-top: 0.5rem;
  cursor: pointer;
  text-decoration: none;
}

.cta-icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background-color: #0078d4;
  border-radius: 7px;
  flex-shrink: 0;
  transition: background-color 0.2s ease;
}

.cta-icon-box svg {
  width: 20px;
  height: 20px;
}

.cta-text {
  color: #0078d4;
  font-size: 16px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.feature-cta-btn:hover .cta-icon-box {
  background-color: #005a9e;
}

.feature-cta-btn:hover .cta-text {
  color: #005a9e;
}

.download-disclaimer {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: 0.4rem;
  margin-bottom: 2.5rem;
  text-align: center;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.beta-disclaimer {
  font-size: 13px;
  color: var(--color-text-muted);
  margin-top: -0.5rem;
  margin-bottom: 1rem;
  text-align: center;
}

.beta-disclaimer strong {
  color: var(--color-text-main);
}

.beta-disclaimer-box {
  max-width: 54rem;
  margin: 0 auto 2rem;
  padding: 0.85rem 1.25rem;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.45;
}

.beta-disclaimer-box svg {
 width: 35px;
 height: 35px;
}

.beta-disclaimer-box strong {
  color: var(--color-text-main);
}

.download-disclaimer a {
  color: #0f6cbd;
  text-decoration: underline;
}

.download-disclaimer a:hover {
  color: #0b4e88;
}

.download-section-logo {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: block;
}

.download-section {
  padding: 3.5rem 0;
  text-align: center;
}

.download-section .hero-visual-container {
  margin: 2rem auto 0 auto;
}

.download-section .section-title {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.download-section .download-subtitle {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.download-section .hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.site-footer {
  background-color: var(--color-surface);
  border-top: 0.0625rem solid var(--color-border);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}

.footer-brand {
  flex: 1 1 15rem;
  max-width: 20rem;
}

.footer-description {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 1rem;
}

.footer-nav {
  flex: 3 1 40rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: 2rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-column h4 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-text-main);
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 400;
  transition: color 0.2s ease;
  width: fit-content;
}

.footer-column a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 0.0625rem solid var(--color-border);
  padding-top: 2rem;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.footer-bottom a {
  color: var(--color-text-muted);
  text-decoration: underline;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: var(--color-primary);
}

@media (max-width: 48rem) {
  .footer-grid {
    gap: 2rem;
    flex-direction: column;
  }

  .footer-brand {
    max-width: 100%;
    text-align: left;
  }

  .footer-nav {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
}

@media (max-width: 30rem) {
  .footer-nav {
    grid-template-columns: 1fr;
  }
}

.theme-switch {
  background: transparent;
  border: none;
  padding: 0.5rem;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--color-text-main);
  transition: background-color 0.2s;
  box-sizing: border-box;
}

.theme-switch:hover {
  background-color: rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .theme-switch:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.theme-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-main);
}

.theme-switch .dark-icon {
  display: none;
}

.theme-switch .light-icon {
  display: flex;
}

[data-theme="dark"] .theme-switch .light-icon {
  display: none;
}

[data-theme="dark"] .theme-switch .dark-icon {
  display: flex;
}

::view-transition-old(root),
::view-transition-new(root) {
  animation: none;
  mix-blend-mode: normal;
}

@media (prefers-reduced-motion: reduce) {
  html {
    view-transition-name: none;
  }
}

.fluent-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s cubic-bezier(0.1, 0.9, 0.2, 1);
}

.fluent-modal.active {
  opacity: 1;
  pointer-events: auto;
}

.fluent-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}

.solid-dialog {
  position: relative;
  width: 90%;
  max-width: 32.5rem;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.14);
  transform: scale(0.95) translateY(0.625rem);
  transition: transform 0.2s cubic-bezier(0.1, 0.9, 0.2, 1);
}

.fluent-modal.active .solid-dialog {
  transform: scale(1) translateY(0);
}

[data-theme="dark"] .solid-dialog {
  background: #2b2b2b;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.4);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
}

.modal-close {
  background: transparent;
  border: none;
  color: inherit;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.1s ease;
}

.modal-close svg {
  width: 1.25rem;
  height: 1.25rem;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.05);
}

[data-theme="dark"] .modal-close:hover {
  background: rgba(255, 255, 255, 0.08);
}

.browser-row {
  display: flex;
  flex-direction: row;
  gap: 0.75rem;
  justify-content: space-between;
}

.browser-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1rem 0.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  color: inherit;
  background: transparent;
  border: 1px solid transparent;
  transition: all 0.15s ease;
}

.browser-card:hover:not(.disabled) {
  background: rgba(0, 0, 0, 0.04);
}

[data-theme="dark"] .browser-card:hover:not(.disabled) {
  background: rgba(255, 255, 255, 0.06);
}

.browser-card.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  filter: grayscale(100%);
}

.browser-icon {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: contain;
  margin-bottom: 0.25rem;
}

.browser-name {
  font-weight: 500;
  font-size: 0.875rem;
}

.status-badge {
  font-size: 0.6875rem;
  padding: 0.125rem 0.375rem;
  border-radius: 0.25rem;
  font-weight: 600;
  min-height: 1rem;
}

.static-badge {
  background: rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .static-badge {
  background: rgba(255, 255, 255, 0.1);
}

.browser-card.highlighted {
  background: rgba(15, 108, 189, 0.05);
  border: 1px solid rgba(15, 108, 189, 0.4);
}

[data-theme="dark"] .browser-card.highlighted {
  background: rgba(15, 108, 189, 0.15);
  border: 1px solid rgba(15, 108, 189, 0.6);
}

.browser-card.highlighted .dynamic-badge {
  background: var(--theme-color, #0f6cbd);
  color: #ffffff;
}

.dynamic-badge:empty {
  display: none;
}

.mobile-warning-dialog {
  max-width: 28.75rem;
}

.mobile-warning-message {
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--color-text-muted);
  margin: 0;
}

[data-theme="dark"] .mobile-warning-message {
  color: #d1d5db;
}

.mobile-warning-actions {
  margin-top: 1.25rem;
  display: flex;
  justify-content: flex-end;
}

.mobile-blocked-action {
  cursor: not-allowed;
}

.featured-section {
  padding: 2.5rem 0;
  text-align: center;
  background-color: var(--color-bg);
  overflow: hidden;
}

.featured-text {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
  font-weight: 600;
  margin-bottom: 2rem;
}

.scroller {
  max-width: 56.25rem;
  margin: 0 auto;
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, white 15%, white 85%, transparent);
  mask: linear-gradient(90deg, transparent, white 15%, white 85%, transparent);
}

.scroller-track {
  display: flex;
  align-items: center;
  gap: 5rem;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.scroller-track:hover {
  animation-play-state: paused;
}

.featured-logo {
  max-height: 1.875rem;
  width: auto;
  filter: grayscale(100%) opacity(50%);
  transition:
    filter 0.3s ease,
    transform 0.2s ease;
  display: block;
}

[data-theme="dark"] .featured-logo {
  filter: grayscale(100%) invert(1) brightness(2) opacity(50%);
}

.featured-logo:hover {
  filter: grayscale(0%) opacity(100%);
  transform: scale(1.05);
}

[data-theme="dark"] .featured-logo:hover {
  filter: grayscale(0%) invert(1) brightness(2) opacity(100%);
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 2.5rem));
  }
}

@media (max-width: 62rem) {
  .showcase-row,
  .showcase-row.row-reverse {
    flex-direction: column;
    margin-bottom: 4rem;
    gap: 2rem;
  }

  .showcase-image-wrapper,
  .showcase-content {
    width: 100%;
    max-width: 100%;
  }

  .mobile-blocked-action {
    opacity: 0.95;
  }
}

@media (max-width: 48rem) {
  .nav-content {
    height: auto;
    padding: 0.75rem 0;
    flex-wrap: wrap;
    row-gap: 0.5rem;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 0.625rem;
    justify-content: flex-end;
  }

  .download-section .section-title {
    font-size: 2rem;
  }

  .download-section .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 18.75rem;
    margin: 0 auto;
  }

  .download-section .btn-primary,
  .download-section .btn-secondary {
    width: 100%;
  }

  .nav-links a {
    margin-left: 0;
    font-size: 0.85rem;
  }

  .logo {
    font-size: 1rem;
  }

  .title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1rem;
  }

  .theme-switch {
    margin-left: 0;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    max-width: 26.25rem;
  }

  .review-value {
    font-size: 1.8rem;
  }

  .scroller-track {
    gap: 3rem;
  }

  @keyframes scroll {
    to {
      transform: translate(calc(-50% - 1.5rem));
    }
  }
}

@media (max-width: 30rem) {
  .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    justify-content: center;
    width: 100%;
  }

  .nav-links a {
    margin-left: 0;
    font-size: 0.8rem;
  }

  .nav-content {
    justify-content: center;
  }

  .logo {
    justify-content: center;
    width: 100%;
  }
}
.feature-card,
.minor-card,
.support-card {
  position: relative;
  overflow: hidden;
}

.feature-card::after,
.minor-card::after,
.support-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(600px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(15, 108, 189, 0.08), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 0;
}

[data-theme="dark"] .feature-card::after,
[data-theme="dark"] .minor-card::after,
[data-theme="dark"] .support-card::after {
  background: radial-gradient(600px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255, 255, 255, 0.06), transparent 40%);
}

.feature-card:hover::after,
.minor-card:hover::after,
.support-card:hover::after {
  opacity: 1;
}

.feature-card > *,
.minor-card > *,
.support-card > * {
  position: relative;
  z-index: 1;
}
@keyframes fluentSlideUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero .title {
  animation: fluentSlideUp 0.6s cubic-bezier(0.1, 0.9, 0.2, 1) forwards;
}

.hero .subtitle {
  opacity: 0;
  animation: fluentSlideUp 0.6s cubic-bezier(0.1, 0.9, 0.2, 1) 0.1s forwards;
}

.hero .hero-actions {
  opacity: 0;
  animation: fluentSlideUp 0.6s cubic-bezier(0.1, 0.9, 0.2, 1) 0.2s forwards;
}

.hero-visual-container {
  opacity: 0;
  animation: fluentSlideUp 0.8s cubic-bezier(0.1, 0.9, 0.2, 1) 0.3s forwards;
}
.showcase-image-wrapper,
.showcase-card {
  opacity: 0;
  transition:
    opacity 0.8s cubic-bezier(0.1, 0.9, 0.2, 1),
    transform 0.8s cubic-bezier(0.1, 0.9, 0.2, 1);
}

.showcase-row:not(.row-reverse) .showcase-image-wrapper {
  transform: translateX(-30px);
}
.showcase-row:not(.row-reverse) .showcase-card {
  transform: translateX(30px);
}

.row-reverse .showcase-image-wrapper {
  transform: translateX(30px);
}
.row-reverse .showcase-card {
  transform: translateX(-30px);
}

.in-view {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

.review-stars svg {
  opacity: 0;
  transform: scale(0.5);
}

.review-stars.animate-stars svg {
  animation: starPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.review-stars.animate-stars svg:nth-child(1) {
  animation-delay: 0.1s;
}
.review-stars.animate-stars svg:nth-child(2) {
  animation-delay: 0.2s;
}
.review-stars.animate-stars svg:nth-child(3) {
  animation-delay: 0.3s;
}
.review-stars.animate-stars svg:nth-child(4) {
  animation-delay: 0.4s;
}
.review-stars.animate-stars svg:nth-child(5) {
  animation-delay: 0.5s;
}

@keyframes starPop {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.fluent-bmc-sidebar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 2rem;
  padding: 10px 14px;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-button);
  box-shadow: var(--shadow-card);
  text-decoration: none;
  color: var(--color-text-main);
  transition:
    transform 0.2s cubic-bezier(0.1, 0.9, 0.2, 1),
    box-shadow 0.2s,
    background-color 0.2s;
}

.fluent-bmc-sidebar:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-float);
  background-color: var(--color-bg);
}

.fluent-bmc-sidebar img {
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.1, 0.9, 0.2, 1);
}

.fluent-bmc-sidebar:hover img {
  transform: scale(1.1) rotate(5deg);
}

.fluent-bmc-text {
  display: flex;
  flex-direction: column;
}

.fluent-bmc-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
}

.fluent-bmc-subtitle {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.store-alert-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 15px;
  padding: 1.25rem 1.5rem;
  max-width: 50rem;
  margin: 2rem auto 0;
  text-align: left;
}

.store-alert-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.store-alert-icon svg {
  width: 2.5rem;
  height: 2.5rem;
}

.store-alert-content {
  flex-grow: 1;
}

.store-alert-content p {
  margin: 0;
  color: var(--color-text-main);
  font-size: 1rem;
  line-height: 1.5;
}

.store-alert-content strong {
  font-weight: 600;
}

.store-alert-action {
  flex-shrink: 0;
}

@media (max-width: 48rem) {
  .store-alert-card {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 1.25rem;
  }
}

.show-light {
  opacity: 1;
  pointer-events: auto;
}

.show-dark {
  opacity: 0;
  pointer-events: none;
}

[data-theme="dark"] .show-light {
  opacity: 0;
  pointer-events: none;
}

[data-theme="dark"] .show-dark {
  opacity: 1;
  pointer-events: auto;
}

.showcase-img.show-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (max-width: 52rem) {
  .navbar {
    position: relative;
    padding: 16px 24px;
  }

  .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }

  .nav-left {
    display: flex;
    align-items: center;
  }

  .nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
  }

  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-divider {
    display: none;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    flex-direction: column;
    padding: 1rem 1.5rem;
    gap: 0.75rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .hero-actions {
    display: flex !important;
    flex-direction: row !important;
    gap: 0.75rem !important;
    justify-content: center !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    width: 100%;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    flex: 1;
    max-width: 170px;
    text-align: center;
    padding: 0.6rem 0.5rem;
    font-size: 0.875rem;
    white-space: nowrap;
  }
}
