/* ============================================================
   MORNING SCREEN
   ============================================================ */
.morning-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #f5edd8, #ede3cc 40%, #f0e8d8);
}

.morning-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 20%, rgba(196, 125, 26, 0.12), transparent 60%);
}

.morning-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 54px 22px 28px;
}

.morning-date {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
  opacity: 0.8;
}

.morning-greeting {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 26px;
}

.morning-symbol {
  font-size: 48px;
  text-align: center;
  margin-bottom: 16px;
  animation: slideUp 1.5s ease forwards;
}

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

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

.morning-quote-box {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(196, 125, 26, 0.15);
  border-radius: var(--radius-lg);
  padding: 22px 20px;
  margin-bottom: 14px;
  animation: fadeUp 0.8s ease 0.3s both;
}

.morning-quechua {
  font-family: "Lora", serif;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.65;
  color: var(--q-color);
  border-left: 3px solid var(--gold);
  padding-left: 13px;
  margin-bottom: 10px;
}

.morning-spanish {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  font-style: italic;
  padding-left: 16px;
}

.morning-word {
  background: rgba(232, 160, 32, 0.07);
  border: 1px solid rgba(232, 160, 32, 0.2);
  border-radius: 13px;
  padding: 14px 16px;
  margin-bottom: 16px;
  animation: fadeUp 0.8s ease 0.5s both;
}

.morning-word-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.morning-word-quechua {
  font-family: "Lora", serif;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 3px;
}

.morning-word-spanish {
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
}

.morning-elements {
  display: flex;
  flex-wrap: nowrap !important;
  flex-direction: row !important;
  gap: 10px;
  margin-bottom: 20px;
  animation: fadeUp 0.8s ease 0.7s both;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
}
.morning-elements::-webkit-scrollbar { display: none; }

.morning-element {
  flex: 0 0 72px;
  min-width: 72px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--bdr);
  border-radius: 14px;
  padding: 12px 6px 10px;
  text-align: center;
  scroll-snap-align: start;
  scroll-snap-align: start;
}

.morning-element-symbol {
  font-size: 19px;
  display: block;
  margin-bottom: 3px;
}

.morning-element-quechua {
  font-size: 11px;
  font-weight: 700;
}

.morning-element-spanish {
  font-size: 10px;
  color: var(--muted);
}

.morning-btn {
  width: 100%;
  padding: 15px;
  border-radius: var(--radius-md);
  border: none;
  background: linear-gradient(135deg, var(--gold), #d4922a);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  animation: fadeUp 0.8s ease 0.9s both;
  min-height: var(--touch-min);
}

