/* [project]/app/globals.css [app-client] (css) */
html {
  scroll-behavior: smooth;
}

:root {
  --bg: #fff;
  --bg-light: #fff4e8;
  --card: #fff;
  --input-bg: #fff8f0;
  --accent: #f97316;
  --accent-light: #fb923c;
  --accent-glow: #f9731647;
  --text: #211a13;
  --text-dim: #78716c;
  --border: #fde6c8;
  --green: #16a34a;
  --orange: #ea580c;
}

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

html, body {
  min-height: 100%;
}

body {
  background: var(--bg);
  color: var(--text);
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light;
  font-family: Segoe UI, system-ui, -apple-system, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.bg-glow {
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  opacity: .5;
  width: 800px;
  height: 800px;
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}

header {
  z-index: 100;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  background: #ffffffd9;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6%;
  display: flex;
  position: sticky;
  top: 0;
}

.logo {
  letter-spacing: -.5px;
  font-size: 1.4rem;
  font-weight: 800;
}

.logo span {
  color: var(--accent);
}

nav {
  align-items: center;
  gap: 32px;
  display: flex;
}

nav a {
  color: var(--text-dim);
  font-size: .95rem;
  font-weight: 500;
  transition: color .2s;
}

nav a:hover {
  color: var(--text);
}

.nav-cta {
  background: var(--accent);
  border-radius: 8px;
  padding: 10px 22px;
  font-weight: 600;
  transition: all .2s;
  color: #fff !important;
}

.nav-cta:hover {
  background: var(--accent-light);
  box-shadow: 0 8px 20px var(--accent-glow);
  transform: translateY(-2px);
}

.menu-toggle {
  color: var(--text);
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.5rem;
  display: none;
}

.cart-icon-btn {
  border: 1px solid var(--border);
  cursor: pointer;
  width: 42px;
  height: 42px;
  color: var(--text);
  background: none;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  font-size: 1.25rem;
  transition: all .2s;
  display: flex;
  position: relative;
}

.cart-icon-btn:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

@keyframes cartBump {
  0% {
    transform: scale(1);
  }

  35% {
    transform: scale(1.3);
  }

  65% {
    transform: scale(.9);
  }

  100% {
    transform: scale(1);
  }
}

.cart-icon-btn.cart-bump {
  animation: .4s cartBump;
}

.fly-to-cart {
  z-index: 9999;
  background: var(--accent);
  color: #fff;
  width: 30px;
  height: 30px;
  box-shadow: 0 4px 14px var(--accent-glow);
  pointer-events: none;
  will-change: transform, opacity;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  transition: transform .65s ease-in-out, opacity .65s;
  display: flex;
  position: fixed;
}

.cart-badge {
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  font-size: .7rem;
  font-weight: 700;
  line-height: 1;
  display: flex;
  position: absolute;
  top: -6px;
  right: -6px;
}

.cart-badge.hidden {
  display: none;
}

.cart-added-toast {
  background: var(--text);
  color: #fff;
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  border-radius: 8px;
  padding: 12px 18px;
  font-size: .9rem;
  font-weight: 600;
  transition: opacity .25s, transform .25s;
  position: fixed;
  top: 90px;
  right: 6%;
  transform: translateY(-10px);
}

.cart-added-toast.show {
  opacity: 1;
  transform: translateY(0);
}

section {
  z-index: 1;
  padding: 100px 6%;
  scroll-margin-top: 90px;
  position: relative;
}

.hero {
  text-align: center;
  padding-top: 140px;
  padding-bottom: 80px;
}

.badge {
  color: var(--accent);
  opacity: 0;
  background: #f973161f;
  border: 1px solid #f973164d;
  border-radius: 999px;
  margin-bottom: 24px;
  padding: 6px 16px;
  font-size: .85rem;
  font-weight: 600;
  animation: .6s forwards fadeUp;
  display: inline-block;
}

.hero h1 {
  letter-spacing: -1.5px;
  opacity: 0;
  max-width: 950px;
  margin: 0 auto 24px;
  font-size: clamp(2.2rem, 4.2vw, 3.4rem);
  font-weight: 800;
  animation: .6s .1s forwards fadeUp;
}

.hero h1 .grad {
  background: linear-gradient(90deg, var(--accent), #fbbf24);
  color: #0000;
  -webkit-background-clip: text;
  background-clip: text;
}

.hero p {
  color: var(--text-dim);
  opacity: 0;
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 1.15rem;
  animation: .6s .2s forwards fadeUp;
}

.hero-buttons {
  opacity: 0;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  animation: .6s .3s forwards fadeUp;
  display: flex;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 30px var(--accent-glow);
  border: none;
  border-radius: 10px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 700;
  transition: all .25s;
  display: inline-block;
}

.btn-primary:hover {
  box-shadow: 0 14px 36px var(--accent-glow);
  background: var(--accent-light);
  transform: translateY(-3px);
}

.btn-secondary {
  color: var(--text);
  border: 1px solid var(--border);
  cursor: pointer;
  background: none;
  border-radius: 10px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  transition: all .25s;
  display: inline-block;
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: #f973160f;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-stats {
  opacity: 0;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  margin-top: 70px;
  animation: .6s .4s forwards fadeUp;
  display: flex;
}

.stat {
  text-align: center;
}

.stat .num {
  color: var(--accent);
  font-size: 2rem;
  font-weight: 800;
}

.stat .label {
  color: var(--text-dim);
  margin-top: 4px;
  font-size: .9rem;
}

.reveal {
  opacity: 0;
  transition: all .7s;
  transform: translateY(30px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-tag {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  margin-bottom: 12px;
  font-size: .85rem;
  font-weight: 700;
  display: block;
}

.section-title {
  text-align: center;
  letter-spacing: -1px;
  max-width: 700px;
  margin: 0 auto 16px;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
}

.section-sub {
  text-align: center;
  color: var(--text-dim);
  max-width: 600px;
  margin: 0 auto 60px;
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  max-width: 750px;
  margin: 0 auto;
  display: grid;
}

.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 26px;
  transition: all .3s;
  box-shadow: 0 2px 12px #0000000a;
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px #f9731626;
}

.service-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  font-size: 1.4rem;
  display: flex;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
  font-weight: 700;
}

.service-card p {
  color: var(--text-dim);
  font-size: .95rem;
}

.process {
  background: var(--bg-light);
  border-radius: 24px;
  margin: 0 6%;
  padding: 80px 5%;
}

.process-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
}

.process-item {
  padding-left: 10px;
  position: relative;
}

.process-item .step-num {
  color: var(--accent);
  opacity: .3;
  margin-bottom: 8px;
  font-size: 2.5rem;
  font-weight: 800;
}

.process-item h4 {
  margin-bottom: 8px;
  font-weight: 700;
}

.process-item p {
  color: var(--text-dim);
  font-size: .9rem;
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: stretch;
  gap: 28px;
  max-width: 1050px;
  margin: 0 auto;
  display: grid;
}

.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  text-align: center;
  cursor: pointer;
  border-radius: 22px;
  flex-direction: column;
  padding: 40px 30px;
  transition: all .3s;
  display: flex;
  position: relative;
}

.price-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px #0000000f;
}

.price-card.selected {
  border: 2px solid var(--accent);
  background: linear-gradient(160deg, var(--card), #fff1de);
  box-shadow: 0 20px 50px #f9731633;
}

.price-badge {
  background: var(--accent);
  color: #fff;
  white-space: nowrap;
  border-radius: 999px;
  padding: 6px 18px;
  font-size: .78rem;
  font-weight: 700;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
}

.price-card h3 {
  margin-bottom: 14px;
  font-size: 1.2rem;
  font-weight: 800;
}

.price-card .price {
  margin-bottom: 4px;
  font-size: 2.4rem;
  font-weight: 800;
}

.price-card .price span {
  color: var(--text-dim);
  font-size: .95rem;
  font-weight: 500;
}

.price-desc {
  color: var(--text-dim);
  margin-bottom: 24px;
  font-size: .88rem;
}

.price-features {
  text-align: left;
  flex-grow: 1;
  margin-bottom: 30px;
  list-style: none;
}

.price-features li {
  color: var(--text-dim);
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: .9rem;
  display: flex;
}

.price-features li:before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
}

.btn-buy {
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 12px;
  width: 100%;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  transition: all .25s;
}

.btn-buy:hover {
  background: var(--accent-light);
  box-shadow: 0 12px 30px var(--accent-glow);
  transform: translateY(-2px);
}

.btn-buy-outline {
  width: 100%;
  color: var(--accent);
  border: 1.5px solid var(--accent);
  cursor: pointer;
  background: none;
  border-radius: 12px;
  padding: 16px;
  font-size: 1rem;
  font-weight: 700;
  transition: all .25s;
}

.btn-buy-outline:hover {
  background: #f9731614;
  transform: translateY(-2px);
}

.final-cta {
  text-align: center;
}

.final-cta h2 {
  letter-spacing: -1px;
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
}

.final-cta p {
  color: var(--text-dim);
  max-width: 500px;
  margin: 0 auto 36px;
}

footer {
  border-top: 1px solid var(--border);
  color: var(--text-dim);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 40px 6%;
  font-size: .9rem;
  display: flex;
}

.footer-links {
  gap: 24px;
  display: flex;
}

.footer-links a:hover {
  color: var(--text);
}

.modal-overlay {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 1000;
  background: #28190a73;
  justify-content: center;
  align-items: center;
  padding: 20px;
  display: none;
  position: fixed;
  inset: 0;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px;
  width: 100%;
  max-width: 460px;
  max-height: 88vh;
  padding: 36px;
  animation: .3s modalIn;
  position: relative;
  overflow-y: auto;
  box-shadow: 0 20px 60px #00000026;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(.92)translateY(10px);
  }

  to {
    opacity: 1;
    transform: scale(1)translateY(0);
  }
}

.modal-close {
  color: var(--text-dim);
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.3rem;
  transition: color .2s;
  position: absolute;
  top: 18px;
  right: 18px;
}

.modal-close:hover {
  color: var(--text);
}

.modal h3 {
  margin-bottom: 6px;
  font-size: 1.4rem;
  font-weight: 800;
}

.modal .modal-sub {
  color: var(--text-dim);
  margin-bottom: 26px;
  font-size: .9rem;
}

.cart-page-overlay {
  background: var(--bg);
  z-index: 1000;
  display: none;
  position: fixed;
  inset: 0;
  overflow-y: auto;
}

.cart-page-overlay.active {
  display: block;
}

.cart-page-header {
  z-index: 10;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  background: #ffffffe6;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6%;
  display: flex;
  position: sticky;
  top: 0;
}

.cart-page-header .logo {
  font-size: 1.3rem;
  font-weight: 800;
}

.cart-page-header .logo span {
  color: var(--accent);
}

.cart-page {
  background: var(--card);
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  position: relative;
}

.cart-page .modal-close {
  background: var(--card);
  border: 1.5px solid var(--border);
  color: var(--text);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  font-size: 1.1rem;
  font-weight: 600;
  transition: all .25s;
  display: flex;
  position: static;
  box-shadow: 0 2px 8px #0000000a;
}

.cart-page .modal-close:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 8px 20px var(--accent-glow);
  background: #f9731614;
  transform: translateY(-2px)rotate(90deg);
}

.cart-page h3 {
  margin-bottom: 6px;
  font-size: 1.7rem;
  font-weight: 800;
}

.cart-page .modal-sub {
  color: var(--text-dim);
  margin-bottom: 30px;
  font-size: .95rem;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  color: var(--text-dim);
  margin-bottom: 6px;
  font-size: .85rem;
  font-weight: 600;
  display: block;
}

.form-group input {
  background: var(--input-bg);
  border: 1px solid var(--border);
  width: 100%;
  color: var(--text);
  border-radius: 10px;
  padding: 13px 14px;
  font-size: .95rem;
  transition: border-color .2s;
}

.form-group input:focus {
  border-color: var(--accent);
  outline: none;
}

.form-error {
  color: #dc2626;
  margin-top: 5px;
  font-size: .8rem;
  display: none;
}

.modal-submit {
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  border: none;
  border-radius: 10px;
  width: 100%;
  margin-top: 8px;
  padding: 15px;
  font-size: 1rem;
  font-weight: 700;
  transition: all .2s;
}

.modal-submit:hover {
  background: var(--accent-light);
}

.modal-back {
  color: var(--text-dim);
  cursor: pointer;
  background: none;
  border: none;
  align-items: center;
  gap: 6px;
  margin-bottom: 18px;
  font-size: .85rem;
  display: flex;
}

.modal-back:hover {
  color: var(--text);
}

.cart-summary {
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  padding: 14px 16px;
  display: flex;
}

.cart-summary .plan-name {
  font-size: .95rem;
  font-weight: 700;
}

.cart-summary .plan-price {
  color: var(--accent);
  font-size: 1.05rem;
  font-weight: 800;
}

.cart-item-row {
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  padding: 16px 18px;
  display: flex;
}

.cart-item-icon {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  font-size: 1.4rem;
  display: flex;
}

.cart-item-info {
  flex-direction: column;
  flex: 1;
  display: flex;
}

.cart-item-info .cart-item-name {
  font-size: .95rem;
  font-weight: 700;
}

.cart-item-info .cart-item-badge {
  color: var(--accent);
  font-size: .75rem;
  font-weight: 600;
}

.cart-item-price {
  white-space: nowrap;
  font-size: 1rem;
  font-weight: 800;
}

.cart-item-remove {
  border: 1px solid var(--border);
  color: var(--text-dim);
  cursor: pointer;
  background: none;
  border-radius: 8px;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  font-size: .95rem;
  transition: all .2s;
}

.cart-item-remove:hover {
  color: #dc2626;
  background: #fee2e2;
  border-color: #dc2626;
}

.cart-total-box {
  border-top: 2px solid var(--border);
  justify-content: space-between;
  align-items: center;
  margin: 8px 0 22px;
  padding: 16px 18px;
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
}

.cart-total-box span:last-child {
  color: var(--accent);
}

.cart-empty-state {
  text-align: center;
  color: var(--text-dim);
  margin-bottom: 20px;
  padding: 30px 10px;
}

.cart-empty-state p {
  margin-bottom: 14px;
}

.trust-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  display: flex;
}

.trust-item {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text-dim);
  text-align: center;
  border-radius: 10px;
  flex: 1;
  min-width: 140px;
  padding: 10px 12px;
  font-size: .78rem;
  font-weight: 600;
}

.cart-reassurance {
  text-align: center;
  color: var(--text-dim);
  margin-top: 14px;
  font-size: .78rem;
}

.mini-plan-list {
  flex-direction: column;
  gap: 14px;
  margin-top: 6px;
  display: flex;
}

.mini-plan-option {
  background: var(--input-bg);
  border: 1.5px solid var(--border);
  cursor: pointer;
  border-radius: 14px;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  transition: all .2s;
  display: flex;
}

.mini-plan-option:hover {
  border-color: var(--accent);
  background: #f973160f;
  transform: translateY(-2px);
}

.mini-plan-option.selected {
  border-color: var(--accent);
  background: linear-gradient(160deg, var(--input-bg), #fff1de);
  box-shadow: 0 8px 24px #f9731626;
}

.mini-plan-info {
  flex-direction: column;
  gap: 4px;
  display: flex;
}

.mini-plan-info strong {
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  font-weight: 800;
  display: flex;
}

.mini-plan-info span {
  color: var(--text-dim);
  font-size: .82rem;
}

.mini-plan-badge {
  background: var(--accent);
  color: #fff;
  border-radius: 20px;
  padding: 2px 8px;
  font-size: .68rem;
  font-weight: 700;
}

.mini-plan-price {
  color: var(--accent);
  white-space: nowrap;
  font-size: 1.2rem;
  font-weight: 800;
}

.success-view {
  text-align: center;
  padding: 20px 0;
}

.success-view .check {
  width: 70px;
  height: 70px;
  color: var(--green);
  background: #16a34a1f;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  display: flex;
}

.success-view h3 {
  margin-bottom: 10px;
}

.success-view p {
  color: var(--text-dim);
}

.pay-options {
  flex-direction: column;
  gap: 14px;
  display: flex;
}

.pay-option {
  background: var(--input-bg);
  border: 1px solid var(--border);
  cursor: pointer;
  text-align: left;
  border-radius: 14px;
  align-items: center;
  gap: 16px;
  padding: 18px;
  transition: all .2s;
  display: flex;
}

.pay-option:hover {
  border-color: var(--accent);
  background: #f973160f;
}

.pay-icon {
  background: var(--card);
  border-radius: 10px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  font-size: 1.6rem;
  display: flex;
  box-shadow: 0 2px 8px #0000000f;
}

.pay-option .pay-text strong {
  margin-bottom: 2px;
  font-size: .98rem;
  display: block;
}

.pay-option .pay-text span {
  color: var(--text-dim);
  font-size: .82rem;
}

.crypto-box {
  background: var(--input-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 18px;
  padding: 18px;
}

.crypto-row {
  justify-content: space-between;
  align-items: center;
  padding: 6px 0;
  font-size: .9rem;
  display: flex;
}

.crypto-row span:first-child {
  color: var(--text-dim);
}

.token-select {
  gap: 10px;
  margin-bottom: 18px;
  display: flex;
}

.token-btn {
  border: 1px solid var(--border);
  background: var(--input-bg);
  color: var(--text-dim);
  cursor: pointer;
  border-radius: 10px;
  flex: 1;
  padding: 12px;
  font-weight: 700;
  transition: all .2s;
}

.token-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: #f973161a;
}

.status-msg {
  color: var(--text-dim);
  text-align: center;
  min-height: 18px;
  margin-top: 10px;
  font-size: .85rem;
}

.status-msg.error {
  color: #dc2626;
}

.status-msg.ok {
  color: var(--green);
}

.wallet-warning {
  color: var(--orange);
  background: #ea580c14;
  border: 1px solid #ea580c4d;
  border-radius: 10px;
  margin-bottom: 18px;
  padding: 12px 14px;
  font-size: .8rem;
}

@media (max-width: 768px) {
  nav {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    gap: 20px;
    padding: 24px;
    transition: transform .3s;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    transform: translateY(-150%);
  }

  nav.open {
    transform: translateY(0);
  }

  .menu-toggle {
    display: block;
  }

  section {
    padding: 70px 6%;
  }

  .process {
    margin-left: 0;
    margin-right: 0;
  }

  footer {
    text-align: center;
    flex-direction: column;
  }
}

/*# sourceMappingURL=app_globals_0yg4wg8.css.map*/