:root {
  color-scheme: light;
  --teal: #2ec4b6;
  --teal-dark: #148f87;
  --coral: #ff6b6b;
  --ice: #f8fffe;
  --slate: #1a1a2e;
  --text: #1e293b;
  --muted: #64748b;
  --line: rgba(30, 41, 59, 0.1);
  --card: rgba(255, 255, 255, 0.9);
  --shadow-teal: 0 18px 45px rgba(46, 196, 182, 0.18);
  --shadow-coral: 0 16px 34px rgba(255, 107, 107, 0.28);
  --radius-lg: 24px;
  --radius-md: 18px;
  font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Floating mobile navigation */
.floating-nav-container {
  position: fixed;
  z-index: 999;
  top: 62%;
  right: 20px;
  transform: none;
  user-select: none;
  touch-action: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.floating-donate-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 0;
  background: #e63946;
  color: #fff;
  box-shadow: 0 10px 24px rgba(230, 57, 70, 0.35), 0 4px 16px rgba(0, 0, 0, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.floating-donate-btn:active,
.floating-nav-btn:active {
  transform: scale(0.94);
}

.floating-donate-btn[hidden] {
  display: none !important;
}

.floating-nav-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 0;
  background: var(--teal, #0f9f94);
  color: #fff;
  box-shadow: 0 10px 24px rgba(15, 159, 148, 0.28), 0 4px 16px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.hamburger-line {
  width: 22px;
  height: 3px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.floating-nav-container.menu-open .hamburger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.floating-nav-container.menu-open .hamburger-line:nth-child(2) {
  opacity: 0;
}

.floating-nav-container.menu-open .hamburger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.floating-nav-menu {
  position: absolute;
  bottom: calc(100% + 12px);
  min-width: 174px;
  padding: 8px;
  border-radius: 20px;
  background: rgba(10, 18, 30, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.floating-nav-container.menu-open .floating-nav-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.floating-nav-container.side-right .floating-nav-menu {
  right: 0;
  transform-origin: bottom right;
}

.floating-nav-container.side-left .floating-nav-menu {
  left: 0;
  transform-origin: bottom left;
}

.floating-menu-item {
  width: 100%;
  border: 0;
  border-radius: 12px;
  padding: 10px 14px;
  background: transparent;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  font-weight: 800;
  cursor: pointer;
}

.floating-menu-item:active,
.floating-menu-item.floating-menu-active {
  background: rgba(46, 196, 182, 0.16);
  color: var(--teal, #2ec4b6);
}

.floating-menu-item .menu-icon {
  width: 22px;
  text-align: center;
  color: var(--teal, #2ec4b6);
}

@media (min-width: 769px) {
  .floating-nav-container {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .bottom-nav {
    display: none !important;
  }
}

[hidden],
body:not(.is-authenticated) #accountPanel {
  display: none !important;
}

body.is-authenticated #authFormsPanel,
body.is-authenticated #authStatusPanel {
  display: none !important;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--ice);
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(46, 196, 182, 0.14), transparent 30rem),
    linear-gradient(180deg, #f8fffe 0%, #ffffff 48%, #eefbf8 100%);
}

body {
  -webkit-font-smoothing: antialiased;
}

button {
  font: inherit;
}

.app-shell {
  min-height: 100vh;
  padding-bottom: calc(128px + env(safe-area-inset-bottom));
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px clamp(16px, 4vw, 40px);
  background: rgba(248, 255, 254, 0.82);
  border-bottom: 1px solid rgba(46, 196, 182, 0.12);
  backdrop-filter: blur(18px);
}

.topbar-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.desktop-nav-item {
  min-height: 40px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.desktop-nav-active,
.desktop-nav-item:hover {
  color: var(--teal-dark);
  background: rgba(46, 196, 182, 0.12);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--slate);
  text-decoration: none;
  font-weight: 800;
}

.brand-logo {
  width: 32px;
  height: 32px;
  object-fit: contain;
  border-radius: 8px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--teal), #5adfcb);
  border-radius: 15px;
  box-shadow: var(--shadow-teal);
}

.icon-button,
.secondary-button,
.primary-cta {
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.install-cta,
.install-button-strong {
  color: var(--teal-dark);
  background: white;
  border: 1px solid rgba(46, 196, 182, 0.28);
  box-shadow: var(--shadow-teal);
}

.icon-button,
.secondary-button {
  color: var(--teal-dark);
  background: white;
  border: 1px solid rgba(46, 196, 182, 0.22);
}

.icon-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
}

.admin-access {
  color: var(--slate);
}

.primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  color: white;
  background: var(--coral);
  box-shadow: var(--shadow-coral);
}

#donateButton {
  min-height: 64px;
  padding: 0 30px;
  font-size: 1.12rem;
  letter-spacing: 0;
  transform: translateZ(0);
}

#installNudgeButton {
  min-height: 50px;
  padding: 0 20px;
  font-size: 0.96rem;
  box-shadow: 0 10px 26px rgba(46, 196, 182, 0.14);
}

.primary-cta:disabled {
  cursor: wait;
  opacity: 0.62;
  box-shadow: none;
}

.secondary-button {
  padding: 0 18px;
}

main {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 18px clamp(16px, 4vw, 40px) 34px;
}

.seo-page {
  display: grid;
  gap: 18px;
  max-width: 860px;
  padding-top: 42px;
}

.seo-page h1 {
  margin: 24px 0 0;
  color: var(--slate);
  font-size: clamp(2.2rem, 8vw, 4rem);
  line-height: 1;
}

.seo-page h2 {
  margin: 14px 0 0;
  color: var(--slate);
}

.seo-page p,
.seo-page li {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.seo-page .primary-cta {
  width: fit-content;
}

.view {
  display: none;
}

.view-active {
  display: block;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(20px, 4vw, 42px);
  align-items: start;
  min-height: calc(100vh - 330px);
}

.hero-copy {
  padding-top: clamp(16px, 5vh, 52px);
}

.hero-copy h1,
.section-header h1 {
  margin: 10px 0 14px;
  color: var(--slate);
  font-size: clamp(2.35rem, 8vw, 4.35rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-copy p,
.section-header p,
.donation-panel p,
.certificate p,
.transparency-flow p {
  color: var(--muted);
  line-height: 1.65;
}

.eyebrow,
.section-kicker,
.ad-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(46, 196, 182, 0.13);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-visual {
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 660px;
  border-radius: 32px;
  background: #dff9f5;
  box-shadow: var(--shadow-teal);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.impact-strip,
.stats-grid,
.project-grid,
.transparency-flow,
.trust-band,
.audit-grid {
  display: grid;
  gap: 14px;
}

.trust-band,
.audit-grid {
  grid-template-columns: repeat(3, 1fr);
  margin: 20px 0 16px;
}

.impact-strip {
  grid-template-columns: repeat(2, 1fr);
  margin: 20px 0 16px;
}

.impact-strip-compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
  margin-inline: auto;
}

.impact-strip article,
.stat-card,
.project-card,
.donation-panel,
.certificate,
.transparency-flow article,
.trust-band article,
.audit-grid article {
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 14px 38px rgba(46, 196, 182, 0.08);
  backdrop-filter: blur(12px);
}

.impact-strip article,
.trust-band article,
.audit-grid article {
  padding: 18px;
  border-radius: 20px;
}

.impact-strip article {
  text-align: center;
}

.impact-strip-compact article {
  display: grid;
  min-height: 132px;
  align-content: center;
  text-align: center;
}

.impact-strip-compact span {
  max-width: 280px;
  margin-inline: auto;
  line-height: 1.25;
}

.impact-strip strong,
.stat-card strong {
  display: block;
  color: var(--coral);
  font-size: clamp(1.45rem, 6vw, 2.35rem);
  font-weight: 800;
}

.impact-strip span,
.stat-card span,
.impact-preview span,
.project-card p,
.timeline,
.trust-band span,
.audit-grid p,
.privacy-tools p {
  color: var(--muted);
}

.trust-band strong,
.audit-grid h3 {
  margin: 0;
  color: var(--slate);
}

.trust-band span,
.audit-grid p,
.privacy-tools p {
  line-height: 1.55;
}

.audit-section {
  margin: 28px 0;
}

.privacy-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.danger-button {
  color: #b42318;
  border-color: rgba(180, 35, 24, 0.25);
  background: #fff7f5;
}

.admin-danger-zone {
  margin: 18px 0;
  padding: 16px;
  border: 1px solid rgba(180, 35, 24, 0.18);
  border-radius: var(--radius-md);
  background: #fff7f5;
}

.admin-danger-zone p {
  margin: 6px 0 12px;
  color: var(--muted);
}

.donation-panel,
.certificate,
.install-nudge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px;
  border-radius: var(--radius-lg);
}

.featured-project {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: start;
  gap: 24px;
}

.featured-project-media {
  min-width: 0;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--teal), var(--coral));
}

.featured-project-media img,
.featured-project-media video {
  display: block;
  max-width: 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-project-content {
  display: grid;
  align-content: center;
  gap: 12px;
}

.featured-project-content h2 {
  margin-bottom: 0;
}

.featured-project-content p {
  margin: 0;
}

.project-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-highlights span {
  padding: 7px 10px;
  border: 1px solid rgba(46, 196, 182, 0.32);
  border-radius: 999px;
  background: rgba(46, 196, 182, 0.1);
  color: var(--teal-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

.project-details-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin-top: 2px;
  line-height: 1;
  text-decoration: none;
}

.donation-panel h2,
.certificate h2,
.install-nudge h2,
.transparency-flow h2 {
  margin: 8px 0 6px;
  color: var(--slate);
}

.install-nudge {
  margin: 18px 0 16px;
  border: 1px solid rgba(255, 107, 107, 0.22);
  background:
    linear-gradient(135deg, rgba(255, 107, 107, 0.11), rgba(46, 196, 182, 0.13)),
    rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 38px rgba(255, 107, 107, 0.1);
}

.install-nudge p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.install-actions,
.admin-actions,
.notification-status,
.notification-types {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.install-actions {
  justify-content: flex-end;
}

.certificate-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.certificate-actions .primary-cta,
.certificate-actions .secondary-button {
  margin: 0;
}

.compact-actions {
  align-items: center;
  justify-content: flex-end;
  min-width: 150px;
}

.compact-actions .secondary-button {
  min-height: 36px;
  padding: 0 14px;
}

.compact-fake-button {
  pointer-events: none;
}

.impact-preview {
  display: flex;
  min-width: 190px;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border-radius: 20px;
  background: rgba(255, 107, 107, 0.1);
}

.impact-icon {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: white;
  background: var(--coral);
  border-radius: 16px;
}

.section-header {
  max-width: 760px;
  padding: 18px 0 16px;
}

.section-header h1 {
  font-size: clamp(2.1rem, 8vw, 4rem);
}

.project-grid {
  grid-template-columns: repeat(3, 1fr);
}

.project-grid--count-1 {
  grid-template-columns: minmax(0, 1fr);
}

.project-grid--count-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.project-grid--count-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius-lg);
}

.project-card.selected {
  border-color: rgba(255, 107, 107, 0.55);
  box-shadow: 0 18px 42px rgba(255, 107, 107, 0.13);
}

.project-media {
  display: grid;
  min-width: 0;
  max-width: 100%;
  min-height: 0;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  place-items: center;
  border-radius: 18px;
  color: white;
  background: linear-gradient(135deg, var(--teal), var(--coral));
  font-size: 2rem;
}

.project-grid--count-1 .project-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-rows: auto;
  row-gap: 14px;
  align-items: start;
  padding: 22px;
}

.project-grid--count-1 .project-media {
  grid-row: auto;
  height: auto;
  align-self: start;
}

.project-card h2 {
  margin: 0;
  color: var(--slate);
}

.project-card .project-details-link {
  margin-top: auto;
}

.project-detail-main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 72px;
}

.project-back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: none;
}

.project-detail,
.project-detail-empty {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: 0 18px 46px rgba(46, 196, 182, 0.1);
}

.project-detail {
  overflow: hidden;
}

.project-detail-media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal), var(--coral));
}

.project-detail-media img,
.project-detail-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-detail-placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: white;
  font-size: 3rem;
  font-weight: 800;
}

.project-detail-content {
  display: grid;
  gap: 16px;
  padding: 28px;
}

.project-detail-content h1 {
  margin: 0;
  color: var(--slate);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

.project-detail-ong {
  margin: 0;
  color: var(--muted);
}

.project-detail-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.project-detail-highlights span {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(46, 196, 182, 0.1);
  color: var(--teal-dark);
  font-size: 0.84rem;
  font-weight: 700;
}

.project-detail-copy {
  color: var(--muted);
  line-height: 1.72;
}

.project-detail-copy p {
  margin: 0 0 16px;
}

.project-detail-copy p:last-child {
  margin-bottom: 0;
}

.project-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.project-detail-actions .primary-cta,
.project-detail-actions .secondary-button {
  width: fit-content;
  text-decoration: none;
}

.project-detail-empty {
  display: grid;
  gap: 14px;
  padding: 28px;
}

.project-detail-empty h1,
.project-detail-empty p {
  margin: 0;
}

.meter {
  overflow: hidden;
  height: 10px;
  margin-top: auto;
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.08);
}

.meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--teal);
}

.stats-grid {
  grid-template-columns: repeat(3, 1fr);
}

.stat-card {
  padding: 22px;
  border-radius: var(--radius-lg);
}

.certificate {
  margin: 16px 0;
}

.timeline {
  display: grid;
  gap: 10px;
  padding: 0;
}

.timeline-item {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
}

.transparency-flow {
  grid-template-columns: repeat(3, 1fr);
}

.transparency-flow article {
  padding: 20px;
  border-radius: var(--radius-lg);
}

.transparency-topic {
  display: grid;
  gap: 24px;
  margin: 28px 0;
}

.transparency-topic-heading {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  box-shadow: 0 14px 38px rgba(46, 196, 182, 0.08);
  backdrop-filter: blur(12px);
}

.transparency-topic-heading h2 {
  margin: 8px 0 0;
  color: var(--slate);
}

.audit-section .audit-grid,
.public-projects .project-grid {
  margin: 0;
}

.transparency-flow span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: white;
  background: var(--teal);
  border-radius: 18px;
}

.partner-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.partner-list span {
  padding: 10px 13px;
  border-radius: 999px;
  color: var(--slate);
  background: white;
  border: 1px solid var(--line);
  font-weight: 800;
}

.audience-paths,
.feature-grid,
.faq-grid {
  display: grid;
  gap: 14px;
}

.audience-paths {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 18px 0;
}

.path-card,
.feature-card,
.process-section,
.faq-section {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 38px rgba(46, 196, 182, 0.08);
}

.path-card h2,
.feature-card h2,
.process-section h2,
.faq-section h2,
.compact-header h2 {
  margin: 0;
  color: var(--slate);
}

.path-card p,
.feature-card p,
.process-section p,
.faq-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 18px 0;
}

.process-section {
  margin: 18px 0;
}

.steps-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-section {
  margin: 18px 0;
}

.compact-header {
  padding: 0;
}

.compact-header h2 {
  font-size: clamp(1.5rem, 5vw, 2.15rem);
  line-height: 1.08;
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.faq-grid details {
  padding: 16px;
  border: 1px solid rgba(46, 196, 182, 0.14);
  border-radius: 18px;
  background: white;
}

.faq-grid summary {
  cursor: pointer;
  color: var(--slate);
  font-weight: 800;
}

.faq-grid p {
  margin-top: 10px;
}

.public-transparency-stats {
  margin: 18px 0;
}

.legacy-metrics {
  display: none !important;
}

.admin-view {
  padding-bottom: 20px;
}

.admin-heading {
  max-width: 900px;
}

.admin-tabs {
  position: sticky;
  top: 72px;
  z-index: 12;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px 0 14px;
  background: linear-gradient(180deg, rgba(248, 255, 254, 0.96), rgba(248, 255, 254, 0.82));
  backdrop-filter: blur(14px);
}

.admin-tab {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(46, 196, 182, 0.2);
  border-radius: 999px;
  color: var(--teal-dark);
  background: white;
  cursor: pointer;
  font-weight: 800;
}

.admin-tab-active {
  color: white;
  background: var(--teal);
}

.admin-panel {
  display: none;
  gap: 16px;
}

.admin-panel-active {
  display: grid;
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.admin-card {
  display: grid;
  gap: 16px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 38px rgba(46, 196, 182, 0.08);
}

.admin-card h2 {
  margin: 0;
  color: var(--slate);
}

.admin-card p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.admin-form label {
  display: grid;
  gap: 8px;
  color: var(--slate);
  font-weight: 800;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 13px;
  border: 1px solid rgba(30, 41, 59, 0.14);
  border-radius: 14px;
  color: var(--text);
  background: white;
  font: inherit;
}

.admin-form textarea {
  resize: vertical;
}

.toggle-row {
  display: flex !important;
  grid-template-columns: none;
  align-items: center;
  gap: 10px;
}

.toggle-row input {
  width: 20px;
  min-height: 20px;
  accent-color: var(--teal);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.status-list,
.permission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.status-list span,
.status-pill,
.permission-item,
.notification-status span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  gap: 8px;
  padding: 8px 11px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(46, 196, 182, 0.12);
  font-weight: 800;
}

.notification-types {
  align-items: center;
}

.permission-item input {
  accent-color: var(--teal);
}

.admin-list {
  display: grid;
  gap: 10px;
}

.admin-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
}

.admin-list-item strong,
.admin-list-item span {
  display: block;
}

.admin-list-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.admin-entity-row {
  width: 100%;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.admin-entity-row:hover,
.admin-entity-row.admin-db-row-active {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.14);
}

.ledger-chart {
  display: grid;
  gap: 12px;
}

.ledger-bar-row {
  display: grid;
  grid-template-columns: minmax(120px, 1fr) minmax(120px, 2fr) auto;
  gap: 12px;
  align-items: center;
  font-size: 0.92rem;
}

.ledger-bar-track {
  min-height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8f3f0;
}

.ledger-bar-track i {
  display: block;
  height: 12px;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary), var(--accent));
}

.project-media img,
.project-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.project-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 16px;
  margin: 16px 0;
}

.embedded-media {
  display: grid;
  overflow: hidden;
  min-height: 220px;
  place-items: center;
  border: 1px dashed rgba(46, 196, 182, 0.38);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(46, 196, 182, 0.07);
  text-align: center;
}

.embedded-media img,
.embedded-media iframe {
  width: 100%;
  height: 100%;
  min-height: 260px;
  border: 0;
  object-fit: cover;
}

.bottom-nav {
  position: fixed;
  right: clamp(12px, 3vw, 24px);
  bottom: calc(58px + env(safe-area-inset-bottom));
  left: clamp(12px, 3vw, 24px);
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 6px;
  max-width: 680px;
  margin: 0 auto;
  padding: 8px;
  border: 1px solid rgba(46, 196, 182, 0.18);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 50px rgba(26, 26, 46, 0.13);
  backdrop-filter: blur(18px);
}

.nav-item {
  display: grid;
  min-width: 0;
  min-height: 58px;
  place-items: center;
  border: 0;
  border-radius: 18px;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
}

.nav-item small {
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-active {
  color: white;
  background: var(--teal);
}

.admin-mode .bottom-nav {
  display: none;
}

.admin-mode .app-shell {
  padding-bottom: calc(70px + env(safe-area-inset-bottom));
}

.sponsor-banner {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 35;
  display: flex;
  min-height: calc(50px + env(safe-area-inset-bottom));
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 14px calc(8px + env(safe-area-inset-bottom));
  color: white;
  background: #1a1a2e;
  text-align: center;
}

.ad-slot-banner {
  display: flex;
  width: min(760px, 100%);
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.sponsor-banner .ad-label {
  flex: 0 0 auto;
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
}

.ad-dialog {
  width: min(430px, calc(100% - 24px));
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: transparent;
}

.ad-dialog::backdrop {
  background: rgba(26, 26, 46, 0.54);
  backdrop-filter: blur(8px);
}

.ad-screen {
  position: relative;
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 28px;
  color: var(--text);
  background: white;
}

.dialog-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: white;
  background: rgba(15, 23, 42, 0.72);
  cursor: pointer;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  backdrop-filter: blur(8px);
}

.ad-screen h2 {
  margin: 0;
  color: var(--slate);
  font-size: 1.38rem;
  line-height: 1.06;
}

.ad-screen p {
  margin: 0;
  color: var(--muted);
}

.ad-creative {
  display: grid;
  overflow: hidden;
  min-height: 0;
  aspect-ratio: 9 / 16;
  place-items: center;
  padding: 0;
  border-radius: 18px;
  color: white;
  background: #020617;
  text-align: center;
}

.rewarded-gif {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.countdown-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--slate);
  background: rgba(46, 196, 182, 0.12);
  font-weight: 800;
  text-align: center;
}

.countdown-pill strong {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 999px;
  color: white;
  background: var(--coral);
}

.ad-completion {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 1px solid rgba(46, 196, 182, 0.22);
  border-radius: 18px;
  background: rgba(46, 196, 182, 0.09);
}

.ad-completion[hidden] {
  display: none;
}

.ad-completion h3,
.ad-completion p {
  margin: 0;
}

.ad-completion h3 {
  color: var(--slate);
  font-size: 1.15rem;
}

.dopamine-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.46);
  backdrop-filter: blur(8px);
  animation: dopamineFade 0.22s ease-out;
}

.dopamine-card {
  width: min(420px, 92vw);
  padding: 28px;
  border: 1px solid rgba(46, 196, 182, 0.28);
  border-radius: 24px;
  color: var(--slate);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 80px rgba(15, 23, 42, 0.28);
  text-align: center;
  animation: dopaminePop 0.42s cubic-bezier(.2, 1.15, .35, 1);
}

.dopamine-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.dopamine-card p {
  margin: 0;
  color: var(--slate);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1.25;
}

@keyframes dopamineFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes dopaminePop {
  from { opacity: 0; transform: translateY(18px) scale(0.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.like-heart-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 16px;
}

.like-heart-icon {
  width: 72px;
  height: 72px;
  color: var(--coral);
  filter: drop-shadow(0 8px 24px rgba(255, 107, 107, 0.45));
  animation: likeHeartPop 0.58s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes likeHeartPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  50% {
    transform: scale(1.3);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.post-donation-actions {
  display: grid;
  gap: 9px;
}

.install-after-donation {
  min-height: 58px;
  color: white;
  background: var(--coral);
}

.ad-slot {
  position: relative;
}

.ad-slot::after {
  position: absolute;
  right: 12px;
  bottom: 10px;
  padding: 4px 7px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(26, 26, 46, 0.22);
  content: attr(data-ad-provider);
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ad-slot-banner::after {
  right: 0;
  bottom: auto;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
}

.ad-creative span {
  font-size: 3rem;
}

.progress-shell {
  overflow: hidden;
  height: 12px;
  border-radius: 999px;
  background: rgba(30, 41, 59, 0.1);
}

#adProgress {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: var(--coral);
  transition: width 0.25s ease;
}

@media (max-width: 860px) {
  .topbar {
    align-items: flex-start;
  }

  .topbar-actions {
    margin-left: auto;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    padding-top: 0;
  }

  .hero-copy .eyebrow {
    order: 1;
  }

  .hero-copy h1 {
    order: 2;
  }

  .hero-actions {
    order: 3;
  }

  .hero-copy > p {
    order: 4;
  }

  .hero-visual {
    order: 0;
    aspect-ratio: 16 / 11;
    max-height: 230px;
    border-radius: 24px;
  }

  .impact-strip,
  .trust-band,
  .audit-grid,
  .project-grid,
  .stats-grid,
  .transparency-flow,
  .admin-metrics,
  .project-showcase,
  .audience-paths,
  .feature-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .featured-project,
  .project-grid--count-1 .project-card {
    grid-template-columns: 1fr;
  }

  .project-grid--count-1 .project-media {
    grid-row: auto;
    height: auto;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (min-width: 861px) {
  .desktop-nav {
    display: inline-flex;
  }

  .bottom-nav {
    display: none;
  }

  .app-shell {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 560px) {
  .topbar {
    flex-wrap: wrap;
    padding-top: calc(10px + env(safe-area-inset-top));
  }

  .brand {
    width: 100%;
  }

  .topbar-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .topbar-actions .install-button {
    grid-column: 1 / -1;
  }

  .topbar-actions .icon-button {
    justify-content: center;
    min-width: 0;
  }

  .install-button span:last-child {
    display: inline;
  }

  .admin-access span:last-child {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 11vw, 2.85rem);
  }

  .donation-panel,
  .certificate,
  .install-nudge {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions,
  .hero-actions > *,
  .install-actions,
  .install-actions > * {
    width: 100%;
  }

  .hero-actions {
    gap: 10px;
  }

  #donateButton {
    min-height: 72px;
    font-size: 1.2rem;
  }

  #installNudgeButton {
    min-height: 52px;
    font-size: 0.95rem;
  }

  .bottom-nav {
    right: 8px;
    left: 8px;
    border-radius: 22px;
    bottom: calc(58px + env(safe-area-inset-bottom));
  }

  .nav-item {
    min-height: 52px;
    border-radius: 16px;
  }

  .nav-item small {
    font-size: 0.64rem;
  }

  .sponsor-banner {
    font-size: 0.82rem;
  }

  .ad-slot-banner {
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }

  .ad-slot-banner::after {
    display: none;
  }

  .admin-tabs {
    top: 64px;
  }

  .admin-list-item {
    align-items: stretch;
    flex-direction: column;
  }
}


.account-grid,
.account-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.account-panel {
  margin-top: 18px;
}

.account-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.account-panel h3 {
  margin: 0 0 12px;
  color: var(--slate);
}

.account-json {
  overflow: auto;
  max-height: 460px;
}

.account-json pre {
  margin: 0;
  white-space: pre-wrap;
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 760px) {
  .account-grid,
  .account-columns {
    grid-template-columns: 1fr;
  }

  .account-panel-head {
    flex-direction: column;
  }
}


.password-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
}

.password-field input {
  width: 100%;
}

.password-toggle {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(46, 196, 182, 0.22);
  border-radius: 999px;
  color: var(--teal-dark);
  background: white;
  cursor: pointer;
  font-weight: 800;
}

@media (max-width: 520px) {
  .password-field {
    grid-template-columns: 1fr;
  }
}

.account-columns > .admin-form {
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0;
}


.admin-portal .bottom-nav,
.admin-portal .install-button,
.admin-portal [data-nav-target="donar"],
.admin-portal [data-nav-target="anunciante"],
.admin-portal [data-nav-target="ong"],
.admin-portal [data-nav-target="transparencia"],
.admin-portal #registerForm,
.admin-portal .sponsor-banner {
  display: none !important;
}

.admin-portal .topbar {
  justify-content: center;
}

.admin-portal .app-shell {
  padding-bottom: 32px;
}

.admin-portal main {
  padding-bottom: 64px;
}


.campaign-banner-media,
.campaign-button-media {
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #0f172a;
  text-decoration: none;
}

.campaign-banner-media {
  width: min(728px, 100%);
  aspect-ratio: 728 / 90;
}

.campaign-button-media {
  width: min(320px, 80vw);
  aspect-ratio: 9 / 16;
  border-radius: 18px;
}

.campaign-banner-media img,
.campaign-button-media img,
.campaign-button-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ad-slot-real-button {
  padding: 0;
  background: transparent;
}

.ad-slot-real-banner {
  min-height: 90px;
}

@media (max-width: 760px) {
  .ad-dialog {
    width: 100vw;
    max-width: none;
    height: 100dvh;
    max-height: none;
    margin: 0;
    border-radius: 0;
  }

  .ad-dialog::backdrop {
    background: #020617;
    backdrop-filter: none;
  }

  .ad-screen {
    min-height: 100dvh;
    padding: 0;
    border-radius: 0;
    background: #020617;
    overflow: hidden;
  }

  .ad-screen > .ad-label,
  .ad-screen > h2,
  .ad-screen > #adProjectLine {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .ad-creative {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 0;
  }

  .campaign-button-media {
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    border-radius: 0;
  }

  .campaign-button-media img,
  .campaign-button-media video {
    object-fit: cover;
  }

  .countdown-pill {
    position: absolute;
    top: calc(12px + env(safe-area-inset-top));
    right: 14px;
    z-index: 5;
    min-width: 0;
    min-height: 0;
    width: 46px;
    height: 46px;
    padding: 0;
    color: white;
    background: transparent;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.24);
    backdrop-filter: none;
  }

  .countdown-pill span {
    display: none;
  }

  .countdown-pill strong {
    width: 46px;
    height: 46px;
    background: rgba(255, 107, 107, 0.94);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.3);
    backdrop-filter: blur(10px);
  }

  .progress-shell {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 6;
    height: calc(5px + env(safe-area-inset-top));
    border-radius: 0;
    background: rgba(255, 255, 255, 0.16);
  }

  .progress-shell #adProgress {
    background: linear-gradient(90deg, var(--coral), var(--teal));
  }

  .dialog-close {
    top: calc(12px + env(safe-area-inset-top));
    right: auto;
    left: 14px;
    z-index: 7;
    background: rgba(15, 23, 42, 0.54);
    backdrop-filter: blur(12px);
  }

  #finishAdButton {
    position: absolute;
    right: 18px;
    bottom: calc(18px + env(safe-area-inset-bottom));
    left: 18px;
    z-index: 5;
  }

  #finishAdButton:disabled {
    opacity: 0;
    pointer-events: none;
  }

  .ad-completion {
    position: absolute;
    right: 16px;
    bottom: calc(86px + env(safe-area-inset-bottom));
    left: 16px;
    z-index: 5;
    color: var(--slate);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(12px);
  }
}


.role-workflow {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.role-workflow .admin-card {
  margin-top: 0;
}

.role-workflow h2 + .admin-list,
.role-workflow .admin-list + h2 {
  margin-top: 18px;
}


.admin-db-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.admin-db-list {
  display: grid;
  gap: 8px;
  max-height: 340px;
  overflow: auto;
}

.admin-db-row {
  display: grid;
  gap: 4px;
  width: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--text);
  background: white;
  text-align: left;
  cursor: pointer;
}

.admin-db-row span,
.admin-db-row small {
  color: var(--muted);
}

.admin-db-row-active {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(46, 196, 182, 0.14);
}

.admin-entity-detail {
  margin-top: 18px;
}

.admin-detail-card {
  display: grid;
  gap: 12px;
}

.admin-detail-card h3,
.admin-detail-card h4 {
  margin: 0;
  color: var(--slate);
}

@media (max-width: 920px) {
  .admin-db-grid {
    grid-template-columns: 1fr;
  }
}


.notification-types {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.notification-types .permission-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(46, 196, 182, 0.08);
}

.notification-types .permission-item input {
  width: 18px;
  height: 18px;
  accent-color: var(--teal);
  flex: 0 0 auto;
}

@media (max-width: 760px) {
  .notification-types {
    grid-template-columns: 1fr;
  }
}


.auth-status-panel {
  margin: 18px 0;
}

.inline-auth-action {
  width: fit-content;
  margin-top: 10px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 1120px;
  margin: 24px auto 136px;
  padding: 0 18px;
}

.site-footer button {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--muted);
  font-weight: 800;
  padding: 10px 14px;
}

.legal-view {
  max-width: 980px;
  margin: 0 auto;
}

.legal-content {
  display: grid;
  gap: 18px;
  line-height: 1.65;
}

.legal-content h3 {
  margin: 10px 0 0;
  color: var(--slate);
}

.legal-content ul {
  margin: 0;
  padding-left: 20px;
}

.legal-content a {
  color: var(--teal-dark);
  font-weight: 800;
}

.cookie-consent {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 112px;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px;
  border: 1px solid rgba(46, 196, 182, 0.28);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 80px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(12px);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent h2,
.cookie-consent p {
  margin: 0;
}

.cookie-consent p {
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.ad-privacy-note {
  color: var(--muted);
  font-size: 0.82rem;
}

.ad-unavailable {
  display: grid;
  width: 100%;
  min-height: 180px;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 18px;
  border: 1px dashed rgba(46, 196, 182, 0.36);
  border-radius: 18px;
  color: var(--muted);
  background: rgba(46, 196, 182, 0.06);
  text-align: center;
}

.ad-unavailable strong {
  color: var(--text);
}

@media (max-width: 760px) {
  .site-footer {
    margin-bottom: 128px;
  }

  .cookie-consent {
    grid-template-columns: 1fr;
    bottom: 92px;
    padding: 12px;
    gap: 10px;
    border-radius: 16px;
    max-height: 42vh;
    overflow: auto;
  }

  .cookie-consent h2 {
    font-size: 1rem;
  }

  .cookie-consent p {
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-actions > * {
    width: 100%;
    min-height: 42px;
    padding: 0 10px;
    font-size: 0.84rem;
  }
}

@media (max-width: 768px) {
  .bottom-nav {
    display: none !important;
  }

  .floating-nav-container {
    display: flex;
  }
}

@media (min-width: 769px) {
  .floating-nav-container {
    display: none !important;
  }
}
