@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg-primary: #08060f;
  --bg-secondary: #100d1e;
  --bg-card: #151128;
  --text-primary: #ffffff;
  --text-secondary: #a39cb5;
  --accent-gold: #fbbf24;
  --accent-gold-glow: rgba(251, 191, 36, 0.2);
  --accent-purple: #8b5cf6;
  --accent-cyan: #06b6d4;
  --border-color: rgba(255, 255, 255, 0.08);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: #040307;
  color: var(--text-primary);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

/* Smartphone Mockup Container (For Desktop) */
#app-container {
  width: 100%;
  height: 100vh;
  max-width: 420px;
  max-height: 880px;
  background-color: var(--bg-primary);
  border: 12px solid #1f1b2d;
  border-radius: 48px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8), 0 0 60px rgba(139, 92, 246, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: var(--transition);
}

/* Simulated Smartphone Camera Notch (Dynamic Island Style) */
#app-container::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 30px;
  background: #000;
  border-radius: 20px;
  z-index: 100;
  pointer-events: none;
}

/* Top Header Bar */
.app-header {
  background: rgba(16, 13, 30, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid var(--border-color);
  padding: 2.2rem 1rem 0.8rem 1rem;
  position: sticky;
  top: 0;
  z-index: 90;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-gold);
}

.logo span {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.5px;
  background: linear-gradient(135deg, #ffffff, var(--accent-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.user-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.2);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

.lodge-badge {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--accent-gold);
}

.user-name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-primary);
}

.header-search {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.search-input-wrapper {
  position: relative;
  flex-grow: 1;
}

.search-icon {
  position: absolute;
  left: 0.8rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-secondary);
  pointer-events: none;
}

.search-input-wrapper input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.6rem 0.8rem 0.6rem 2.2rem;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.search-input-wrapper input:focus {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.08);
}

.cart-trigger {
  position: relative;
  cursor: pointer;
  color: var(--text-primary);
  transition: var(--transition);
  padding: 0.2rem;
}

.cart-trigger:hover {
  color: var(--accent-gold);
}

.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--accent-gold);
  color: #000;
  font-size: 0.65rem;
  font-weight: 800;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
}

/* Dynamic Viewport */
#app-viewport {
  flex-grow: 1;
  overflow-y: auto;
  padding: 1rem;
  padding-bottom: 5rem;
  scroll-behavior: smooth;
}

/* Scrollbar styling for desktop inside device */
#app-viewport::-webkit-scrollbar {
  width: 4px;
}
#app-viewport::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.view-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.view-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

/* Hide inactive tabs */
.viewport-tab {
  display: none;
}
.viewport-tab.active {
  display: block;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero Promo Banner */
.promo-banner {
  background: linear-gradient(135deg, #181132, #0d091a);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.promo-banner::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, var(--accent-gold-glow) 0%, transparent 70%);
  pointer-events: none;
}

.banner-slide {
  padding: 1.5rem;
}

.banner-tag {
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.2);
  color: var(--accent-gold);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 0.8rem;
}

.banner-slide h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.banner-slide p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* Categories Bar */
.categories-bar {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.8rem;
  margin-bottom: 1.5rem;
}

.categories-bar::-webkit-scrollbar {
  display: none;
}

.category-pill {
  white-space: nowrap;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  color: var(--text-secondary);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.category-pill:hover,
.category-pill.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #000;
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.25);
}

/* Product Section & Grid */
.products-section h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

/* Product Card */
.product-card-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.product-card-item:hover {
  transform: translateY(-4px);
  border-color: rgba(251, 191, 36, 0.3);
  box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

.prod-img-wrapper {
  aspect-ratio: 1;
  width: 100%;
  background: #110d21;
  position: relative;
  overflow: hidden;
}

.prod-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-card-item:hover .prod-img-wrapper img {
  transform: scale(1.05);
}

.prod-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  background: rgba(8, 6, 15, 0.7);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.prod-info {
  padding: 0.8rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.prod-lodge {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.3rem;
}

.prod-title {
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.2rem;
}

.prod-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.prod-price {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--accent-gold);
}

.buy-btn-small {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-primary);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.buy-btn-small:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #000;
}

/* Category grid (list tab) */
.categories-list-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.category-card:hover {
  border-color: var(--accent-purple);
  background: rgba(139, 92, 246, 0.05);
  transform: translateX(4px);
}

.cat-icon {
  font-size: 1.8rem;
}

.category-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.category-card p {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* App Bottom Navigation */
.app-nav {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(16, 13, 30, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--border-color);
  height: 60px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-bottom: var(--safe-bottom);
  z-index: 95;
}

.nav-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  cursor: pointer;
  flex-grow: 1;
  height: 100%;
  transition: var(--transition);
}

.nav-btn span {
  font-size: 0.65rem;
  font-weight: 600;
}

.nav-btn:hover {
  color: #fff;
}

.nav-btn.active {
  color: var(--accent-gold);
}

/* Masonic Form Style */
.masonic-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.75rem;
  color: var(--text-primary);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 10px rgba(251, 191, 36, 0.1);
}

/* Image Selection Radio */
.image-selector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
}

.image-radio {
  position: relative;
  cursor: pointer;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg-secondary);
  transition: var(--transition);
}

.image-radio input {
  position: absolute;
  opacity: 0;
}

.image-radio img {
  width: 100%;
  height: 70%;
  object-fit: cover;
}

.image-radio span {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.2rem 0;
  color: var(--text-secondary);
}

.image-radio:has(input:checked) {
  border-color: var(--accent-gold);
  background: rgba(251, 191, 36, 0.05);
}

.submit-btn {
  background: linear-gradient(135deg, var(--accent-gold), #eab308);
  color: #000;
  border: none;
  padding: 0.9rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 1rem;
}

.submit-btn:hover {
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
}

/* Dashboard Metrics */
.metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.metric-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1.2rem;
}

.metric-card span {
  font-size: 0.7rem;
  color: var(--text-secondary);
  font-weight: 600;
  text-transform: uppercase;
}

.metric-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 0.4rem;
  color: var(--accent-gold);
}

/* Listings inside Dashboard */
.user-listings-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.user-listing-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.user-listing-item-info h4 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.user-listing-item-info span {
  font-size: 0.75rem;
  color: var(--accent-gold);
  font-weight: 700;
}

.delete-listing-btn {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #ef4444;
  padding: 0.3rem 0.6rem;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.delete-listing-btn:hover {
  background: #ef4444;
  color: #fff;
}

/* Shopping Cart styling */
.cart-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 1rem;
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: center;
}

.cart-item-img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  background: #110d21;
}

.cart-item-details {
  flex-grow: 1;
}

.cart-item-title {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.2rem;
}

.cart-item-price {
  font-size: 0.85rem;
  color: var(--accent-gold);
  font-weight: 700;
}

.remove-cart-item {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.5rem;
  transition: var(--transition);
}

.remove-cart-item:hover {
  color: #ef4444;
}

.cart-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

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

.checkout-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-gold), #eab308);
  color: #000;
  border: none;
  padding: 1rem;
  border-radius: 12px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
}

.checkout-btn:hover {
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
}

.empty-cart-msg {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-secondary);
}

/* Bottom Sheet / Modal Checkout styling */
.bottom-sheet {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: none;
  overflow: hidden;
}

.bottom-sheet.active {
  display: block;
}

.sheet-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  animation: fadeInOverlay 0.3s ease-out;
}

.sheet-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0d091a;
  border-top: 1px solid var(--border-color);
  border-radius: 24px 24px 0 0;
  padding: 1.5rem;
  padding-bottom: calc(1.5rem + var(--safe-bottom));
  animation: slideUpSheet 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 80%;
  overflow-y: auto;
}

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

@keyframes slideUpSheet {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}

.sheet-drag-handle {
  width: 40px;
  height: 5px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  margin: 0 auto 1rem auto;
}

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

.sheet-header h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.close-btn {
  background: none;
  border: none;
  color: var(--text-secondary);
  font-size: 1.5rem;
  cursor: pointer;
}

.masonic-pledge {
  background: rgba(251, 191, 36, 0.05);
  border: 1px solid rgba(251, 191, 36, 0.15);
  border-radius: 12px;
  padding: 0.8rem;
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
  align-items: center;
}

.masonic-pledge p {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.payment-method-selector {
  margin-bottom: 1.5rem;
}

.payment-option {
  border: 1px solid var(--accent-gold);
  background: rgba(251, 191, 36, 0.05);
  border-radius: 12px;
  padding: 0.8rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.payment-icon {
  font-size: 1.3rem;
}

.payment-option strong {
  font-size: 0.85rem;
}

.payment-option p {
  font-size: 0.7rem;
  color: var(--text-secondary);
  margin-top: 0.1rem;
}

.confirm-payment-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--accent-gold), #eab308);
  border: none;
  padding: 0.9rem;
  border-radius: 12px;
  color: #000;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.confirm-payment-btn:hover {
  box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

/* Pix Output Area */
.pix-area {
  margin-top: 1.5rem;
  text-align: center;
  border-top: 1px solid var(--border-color);
  padding-top: 1.5rem;
  animation: fadeIn 0.4s ease-out;
}

.pix-area.hidden {
  display: none;
}

.qr-code-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.2rem;
}

.animated-qr {
  color: #fff;
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.4));
  animation: pulseGlow 2s infinite ease-in-out;
}

@keyframes pulseGlow {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.4)); }
  50% { transform: scale(1.03); filter: drop-shadow(0 0 15px rgba(6, 182, 212, 0.6)); }
}

.qr-code-placeholder p {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.pix-copy-paste {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.pix-copy-paste input {
  flex-grow: 1;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  padding: 0.6rem;
  border-radius: 8px;
  color: var(--text-secondary);
  font-size: 0.75rem;
  outline: none;
}

.copy-btn {
  background: var(--accent-gold);
  border: none;
  color: #000;
  padding: 0.6rem 1rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
}

.pix-timer {
  font-size: 0.75rem;
  color: var(--accent-cyan);
  font-weight: 600;
}

/* Toast Message styling */
.toast {
  position: absolute;
  top: 70px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: rgba(139, 92, 246, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.toast.active {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* RESPONSIVE LAYOUT (PWA Native Mode on Mobile vs Monitor Frame on Desktop) */
@media (max-width: 1023px) {
  body {
    background-color: var(--bg-primary);
    align-items: flex-start;
  }
  
  #app-container {
    max-width: 100%;
    max-height: 100vh;
    border: none;
    border-radius: 0;
    height: 100vh;
    box-shadow: none;
  }
  
  #app-container::before {
    display: none; /* Hide notch on real phone screen */
  }

  .app-header {
    padding-top: env(safe-area-inset-top, 1.5rem);
  }
}

@media (min-width: 1024px) {
  body::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 950px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 60%);
    z-index: -1;
  }
}
