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

html, body {
  height: 100%;
}

body {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: #0a0a0a;
  color: #fff;
  -webkit-font-smoothing: antialiased;
}

.hidden {
  display: none !important;
}

.app {
  min-height: 100vh;
  min-height: 100dvh;
  background: #0a0a0a url('images/trofeu-pastor-bg.jpg') center top / cover no-repeat fixed;
  display: flex;
  flex-direction: column;
  position: relative;
  padding-bottom: 6rem;
}

.app::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.82) 45%,
    rgba(0, 0, 0, 0.94) 100%
  );
  pointer-events: none;
  z-index: 0;
}

.app > * {
  position: relative;
  z-index: 1;
}

/* Top buttons */
.top-btn {
  position: absolute;
  z-index: 20;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a1a1aa;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  top: calc(1.25rem + env(safe-area-inset-top));
}

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

.top-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}

.top-btn-left {
  left: 1.25rem;
}

.top-btn-right {
  right: 1.25rem;
}

/* Side menu */
.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
}

.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 50;
  width: 280px;
  max-width: 85vw;
  background: #09090b;
  border-right: 1px solid rgba(39, 39, 42, 0.6);
  display: flex;
  flex-direction: column;
  animation: slideIn 0.25s ease;
}

@keyframes slideIn {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

.side-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  padding-top: calc(1.25rem + env(safe-area-inset-top));
}

.side-menu-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #52525b;
  font-weight: 500;
}

.icon-btn {
  background: none;
  border: none;
  color: #71717a;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}

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

.icon-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.side-menu-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 1.25rem 1.25rem;
}

.side-menu-divider {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(39, 39, 42, 0.6);
}

.side-menu-desc {
  font-size: 0.75rem;
  color: #52525b;
  line-height: 1.625;
}

.side-menu-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(39, 39, 42, 0.6);
}

.admin-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #71717a;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

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

.admin-btn svg {
  width: 1rem;
  height: 1rem;
}

/* Main content */
.main-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.5rem;
  gap: 1.5rem;
}

.verse-card {
  width: 100%;
  max-width: 24rem;
  border: 1px solid rgba(201, 162, 39, 0.2);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(8px);
}

.verse-label {
  font-size: 0.625rem;
  color: #52525b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.verse-text {
  font-size: 0.75rem;
  font-style: italic;
  color: #a1a1aa;
  line-height: 1.625;
}

.verse-ref {
  font-size: 0.625rem;
  color: #52525b;
  margin-top: 0.375rem;
}

.player-section {
  width: 100%;
  max-width: 24rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.artwork {
  width: 9rem;
  height: 9rem;
  border-radius: 1rem;
  overflow: hidden;
  background: #18181b;
  border: 1px solid rgba(39, 39, 42, 0.5);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.radio-icon {
  width: 3rem;
  height: 3rem;
  color: #3f3f46;
}

.station-info {
  text-align: center;
}

.station-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  display: inline-flex;
  align-items: center;
}

.station-title-sm {
  font-size: 1rem;
}

.verified-badge {
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.375rem;
}

.station-subtitle {
  font-size: 0.75rem;
  color: #71717a;
  margin-top: 0.125rem;
}

.station-tagline {
  font-size: 0.75rem;
  color: #71717a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-top: 0.375rem;
}

.play-btn {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: var(--player-brand, #991B1B);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
  transition: filter 0.2s, transform 0.15s;
}

.play-btn:hover {
  filter: brightness(1.1);
}

.play-btn:active {
  transform: scale(0.95);
}

.play-btn svg {
  width: 2rem;
  height: 2rem;
  color: #fff;
}

#play-icon {
  margin-left: 0.25rem;
}

.volume-control {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  max-width: 200px;
}

.volume-btn {
  background: none;
  border: none;
  color: #a1a1aa;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  padding: 0;
}

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

.volume-btn svg {
  width: 1rem;
  height: 1rem;
}

.slider-track {
  position: relative;
  flex: 1;
  height: 0.375rem;
  background: rgba(153, 27, 27, 0.2);
  border-radius: 9999px;
  overflow: visible;
}

.slider-track::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #09090b;
  border: 1px solid rgba(153, 27, 27, 0.5);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  transform: translate(-50%, -50%);
  pointer-events: none;
  left: var(--thumb-pos, 80%);
  transition: left 0.05s;
}

.slider-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  background: var(--player-brand, #991B1B);
  border-radius: 9999px;
  pointer-events: none;
}

.volume-slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  margin: 0;
}

.now-playing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
}

.now-playing-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  animation: fadeIn 0.4s ease;
}

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

.now-playing-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #52525b;
  font-weight: 500;
}

.track-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 280px;
}

.track-title {
  font-size: 0.8125rem;
  color: #d4d4d8;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  animation: fadeIn 0.4s ease;
}

.listeners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-top: 0.25rem;
}

.live-dot {
  position: relative;
  display: flex;
  width: 0.5rem;
  height: 0.5rem;
}

.live-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #52525b;
  transition: background 0.3s;
}

.live-dot.playing::before {
  background: #22c55e;
}

.live-dot.playing::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #22c55e;
  animation: pulse 1.5s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 0; transform: scale(2); }
}

.listeners-text {
  font-size: 0.75rem;
  color: #a1a1aa;
  font-weight: 500;
  letter-spacing: 0.025em;
}

.tab-pills {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  overflow-x: auto;
  width: 100%;
  max-width: 24rem;
  padding: 0.25rem 0;
  scrollbar-width: none;
}

.tab-pills::-webkit-scrollbar {
  display: none;
}

.pill {
  flex-shrink: 0;
  height: 2rem;
  padding: 0 1rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  background: #27272a;
  color: #a1a1aa;
}

.pill.active {
  background: var(--player-brand, #991B1B);
  color: #fff;
}

.pill:hover:not(.active) {
  background: #3f3f46;
}

/* Footer */
.footer {
  padding-bottom: 0.5rem;
  text-align: center;
}

.footer p {
  font-size: 0.625rem;
  color: #3f3f46;
  letter-spacing: 0.025em;
}

/* Bottom nav */
.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(9, 9, 11, 0.95);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(39, 39, 42, 0.6);
  padding-bottom: env(safe-area-inset-bottom);
}

.bottom-nav > div,
.bottom-nav {
  max-width: 28rem;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  padding: 0 0.5rem;
}

.nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.625rem 0;
  background: none;
  border: none;
  cursor: pointer;
  color: #71717a;
  transition: color 0.2s;
}

.nav-item svg {
  width: 1.25rem;
  height: 1.25rem;
  transition: color 0.2s;
}

.nav-item span {
  font-size: 0.625rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-item.active,
.nav-item.active svg,
.nav-item.active span {
  color: var(--player-brand, #991B1B);
}

.nav-icon-wrap {
  position: relative;
  display: inline-flex;
}

.lock-badge {
  position: absolute;
  bottom: -0.25rem;
  right: -0.375rem;
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  background: #18181b;
  border: 1px solid #3f3f46;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lock-badge svg {
  width: 0.5rem;
  height: 0.5rem;
  color: #a1a1aa;
}

/* Modals */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem;
}

.modal {
  width: 100%;
  max-width: 28rem;
  max-height: 80vh;
  background: #09090b;
  border: 1px solid #27272a;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  animation: modalIn 0.2s ease;
}

.modal-sm {
  max-width: 24rem;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

#modal-pedidos,
#modal-contribuir,
#modal-avisos {
  max-width: 24rem;
  padding: 1.5rem;
  gap: 1rem;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid rgba(39, 39, 42, 0.6);
}

.modal-header-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title-wrap {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-title-wrap svg {
  width: 1rem;
  height: 1rem;
  color: #a1a1aa;
}

.modal-title-wrap h2 {
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

.brand-icon {
  color: var(--player-brand, #991B1B) !important;
}

.modal-close {
  background: none;
  border: none;
  color: #71717a;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color 0.2s;
  padding: 0;
}

.modal-close:hover {
  color: #fff;
}

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

.modal-body {
  overflow-y: auto;
  padding: 1.25rem;
}

.modal-body-lg {
  min-height: 120px;
}

.modal-empty {
  font-size: 0.875rem;
  color: #52525b;
  text-align: center;
}

/* Pedido form */
.pedido-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-label {
  font-size: 0.625rem;
  color: #52525b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-fields input,
.form-fields textarea {
  width: 100%;
  border-radius: 0.75rem;
  background: #18181b;
  border: 1px solid #27272a;
  color: #fff;
  padding: 0 0.75rem;
  font-size: 0.875rem;
  font-family: inherit;
  outline: none;
  transition: box-shadow 0.2s;
}

.form-fields input {
  height: 2.75rem;
}

.form-fields input::placeholder,
.form-fields textarea::placeholder {
  color: #52525b;
}

.form-fields input:focus,
.form-fields textarea:focus {
  box-shadow: 0 0 0 1px rgba(127, 29, 29, 0.5);
}

.form-fields textarea {
  padding: 0.625rem 0.75rem;
  min-height: 64px;
  resize: none;
}

.submit-btn {
  width: 100%;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: var(--player-brand, #991B1B);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: filter 0.2s;
}

.submit-btn:hover {
  filter: brightness(1.1);
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Contribuir */
.contrib-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(153, 27, 27, 0.133);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contrib-icon svg {
  width: 1rem;
  height: 1rem;
  color: var(--player-brand, #991B1B);
}

.contrib-text {
  font-size: 0.875rem;
  color: #a1a1aa;
  line-height: 1.625;
}

.pix-box {
  background: rgba(24, 24, 27, 0.8);
  border: 1px solid rgba(201, 162, 39, 0.25);
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.pix-label {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #71717a;
  font-weight: 600;
}

.pix-key-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pix-key {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
}

.pix-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid #3f3f46;
  background: #27272a;
  color: #e4e4e7;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
}

.pix-copy-btn svg {
  width: 0.875rem;
  height: 0.875rem;
}

.pix-copy-btn:hover {
  background: #3f3f46;
}

.pix-beneficiary {
  font-size: 0.8125rem;
  color: #a1a1aa;
}

.pix-beneficiary strong {
  color: #fff;
  font-weight: 600;
}

.pix-hint {
  font-size: 0.75rem;
  color: #71717a;
  line-height: 1.5;
}

.close-btn {
  width: 100%;
  height: 2.75rem;
  border-radius: 0.75rem;
  background: #18181b;
  border: 1px solid #27272a;
  color: #d4d4d8;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.close-btn:hover {
  background: #27272a;
}

/* PWA Install */
.install-menu-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 1.5rem;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(153, 27, 27, 0.4);
  background: rgba(153, 27, 27, 0.12);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, filter 0.2s;
}

.install-menu-btn svg {
  width: 1rem;
  height: 1rem;
  color: var(--player-brand, #991B1B);
  flex-shrink: 0;
}

.install-menu-btn:hover {
  background: rgba(153, 27, 27, 0.22);
  filter: brightness(1.05);
}

.pill-install {
  border: 1px solid rgba(153, 27, 27, 0.5);
  background: rgba(153, 27, 27, 0.15) !important;
  color: #fca5a5 !important;
}

.pill-install:hover {
  background: rgba(153, 27, 27, 0.3) !important;
  color: #fff !important;
}

#modal-instalar {
  max-width: 24rem;
  padding: 1.5rem;
  gap: 1rem;
  max-height: 85vh;
  overflow-y: auto;
}

.install-intro {
  font-size: 0.8125rem;
  color: #a1a1aa;
  line-height: 1.5;
}

.install-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.install-tabs {
  display: flex;
  gap: 0.375rem;
  background: #18181b;
  padding: 0.25rem;
  border-radius: 0.75rem;
  border: 1px solid #27272a;
}

.install-tab {
  flex: 1;
  padding: 0.5rem 0.25rem;
  border: none;
  border-radius: 0.5rem;
  background: transparent;
  color: #71717a;
  font-size: 0.6875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.install-tab.active {
  background: var(--player-brand, #991B1B);
  color: #fff;
}

.install-guide {
  background: rgba(24, 24, 27, 0.6);
  border: 1px solid #27272a;
  border-radius: 0.75rem;
  padding: 1rem;
}

.install-guide ol {
  margin: 0;
  padding-left: 1.125rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.install-guide li {
  font-size: 0.8125rem;
  color: #d4d4d8;
  line-height: 1.5;
}

.install-guide strong {
  color: #fff;
  font-weight: 600;
}

.install-banner {
  position: fixed;
  left: 0.75rem;
  right: 0.75rem;
  bottom: calc(4.75rem + env(safe-area-inset-bottom));
  z-index: 35;
  background: #18181b;
  border: 1px solid rgba(153, 27, 27, 0.45);
  border-radius: 1rem;
  padding: 0.875rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  animation: slideUp 0.35s ease;
}

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

.install-banner-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.install-banner-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.625rem;
  flex-shrink: 0;
}

.install-banner-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.install-banner-text strong {
  font-size: 0.875rem;
  color: #fff;
}

.install-banner-text span {
  font-size: 0.75rem;
  color: #a1a1aa;
}

.install-banner-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.install-banner-btn {
  flex: 1;
  height: 2.25rem;
  border: none;
  border-radius: 0.625rem;
  background: var(--player-brand, #991B1B);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.2s;
}

.install-banner-btn:hover {
  filter: brightness(1.1);
}

.install-banner-link {
  flex: 1;
  height: 2.25rem;
  border: 1px solid #3f3f46;
  border-radius: 0.625rem;
  background: transparent;
  color: #d4d4d8;
  font-size: 0.75rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s;
}

.install-banner-link:hover {
  background: #27272a;
}

.install-banner-close {
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  border-radius: 0.625rem;
  background: transparent;
  color: #71717a;
  font-size: 0.875rem;
  cursor: pointer;
  flex-shrink: 0;
}

.install-banner-close:hover {
  color: #fff;
  background: #27272a;
}

.app.installed .install-banner,
.app.installed .pill-install,
.app.installed .install-menu-btn {
  display: none !important;
}

/* WhatsApp flutuante */
.whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  z-index: 9999;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: calc(88px + env(safe-area-inset-bottom));
    right: 20px;
  }
}

/* Toast */
.toast {
  position: fixed;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: #18181b;
  border: 1px solid #27272a;
  color: #fff;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
  animation: fadeIn 0.3s ease;
}

@media (min-width: 640px) {
  .main-content {
    padding-top: 4rem;
  }
}
