/* =========================================================
   🌍 LIFE.EXE — UNIFIED STYLESHEET v2.0.4
   ========================================================= */

/* =========================================================
   🎛️ GLOBAL BASE (subtle warmth so it’s not a blank Word doc)
   ========================================================= */
:root{
  --lx-ink: #2C3E38;
  --lx-cream: #fffdf8;
  --lx-cream-2: #fffdfa;
  --lx-sand: #F7F3EC;
  --lx-orange: #E87340;
  --lx-mint: #3DDC91;
  --lx-navy: #003b60;
  --lx-shadow-1: 0 4px 12px rgba(0,0,0,0.06);
  --lx-shadow-2: 0 8px 16px rgba(0,0,0,0.10);
}

body{
  background-color: var(--lx-cream);
  color: var(--lx-ink);
}

/* =========================================================
   🧠 CHAT INTERFACE (Alfred-style dialogue)
   ========================================================= */
.alfred-chat {
  background: var(--lx-cream-2);
  border-radius: 16px;
  padding: 24px;
  margin: 40px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  font-family: 'Segoe UI', sans-serif;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeInChat 0.6s ease;
}

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

.system-line,
.typing-line {
  font-size: 0.9em;
  color: #888;
  font-style: italic;
  text-align: left;
  max-width: 85%;
  line-height: 1.6;
}

.alfred-line {
  background-color: #ffeede !important;
  color: var(--lx-navy);
  padding: 12px 16px;
  border-radius: 20px;
  max-width: 85%;
  font-weight: 500;
  line-height: 1.5;
  box-sizing: border-box;
  animation: fadeInMessage 0.4s ease;
}

.user-line {
  background-color: #e6f3ff;
  color: var(--lx-navy);
  padding: 12px 16px;
  border-radius: 20px;
  font-weight: 500;
  line-height: 1.5;
  max-width: 85%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
  text-align: left;
  animation: fadeInMessage 0.4s ease;
}

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

/* =========================================================
   📬 INFO & BOX COMPONENTS
   ========================================================= */
.support-ticket-info {
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-left: 4px solid #00c17d;
  padding: 16px 20px;
  margin: 24px 0;
  border-radius: 8px;
  font-family: 'Courier New', monospace;
  font-size: 0.95em;
  color: #333;
  line-height: 1.6;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.3s ease;
}
.support-ticket-info:hover {
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
}
.support-ticket-info p {
  margin: 4px 0;
  display: flex;
}
.faq-question {
  font-weight: bold;
  font-size: 1.05em;
  color: #222;
  margin-bottom: 4px;
}

/* =========================================================
   ⚡ TL;DR BOX
   ========================================================= */
.tldr-box {
  background: linear-gradient(180deg, #fafafa 0%, #f1f1f1 100%);
  border-left: 6px solid #df4b18;
  color: #222;
  font-family: 'Fira Code', monospace;
  font-size: 1rem;
  padding: 22px 26px;
  margin: 36px 0;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  animation: fadeInTLDR 0.6s ease forwards;
}
.tldr-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.15);
}
.tldr-box::before {
  content: "⚡ TL;DR:";
  display: block;
  font-family: 'Fira Code', monospace;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
  color: #000;
  margin-bottom: 10px;
  text-shadow: 0 1px 0 #fff2c0;
}
.tldr-box ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.tldr-box li {
  position: relative;
  margin: 8px 0;
  padding-left: 22px;
  line-height: 1.7;
}
.tldr-box li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #df4b18;
  font-weight: bold;
  font-size: 1.1em;
}
@keyframes fadeInTLDR {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 💻 PATCH NOTES */
.patch-notes {
  background-color: #222;
  color: #00ffff;
  font-family: 'Courier New', monospace;
  font-size: 0.95em;
  padding: 16px 20px;
  margin: 40px 0;
  border: 1px dashed #3f7f74;
  border-radius: 8px;
  box-shadow: 0 0 12px rgba(0, 255, 255, 0.3);
}

/* 🤷 FAQs We'll Never Answer */
.faq-never {
  background-color: #f4e6f9;
  border-left: 6px solid #873195;
  color: #222;
  font-family: 'Courier New', monospace;
  font-size: 0.95em;
  padding: 16px 20px;
  margin: 32px 0;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(135, 49, 149, 0.2);
}

/* 💬 COMMENT PROMPT */
.comment-prompt {
  background-color: #e6faff;
  border-left: 6px solid #3a86ff;
  color: #222;
  font-family: 'Courier New', monospace;
  font-size: 0.95em;
  padding: 16px 20px;
  margin: 32px 0;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* =========================================================
   🗂️ TABLE OF CONTENTS (TOC+ Directory)
   ========================================================= */
#toc_container {
  background: var(--lx-cream-2);
  border: 1px solid #e6e6e6;
  padding: 20px 28px;
  border-radius: 12px;
  font-family: 'Segoe UI', 'Roboto Mono', monospace;
  font-size: 0.95em;
  color: #222;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  opacity: 0.95;
  transition: all 0.2s ease;
  animation: fadeIn 0.6s ease forwards;
}
#toc_container:hover {
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}
#toc_container .toc_title {
  font-weight: 700;
  font-size: 1.1em;
  margin-bottom: 10px;
  color: var(--lx-navy);
  border-bottom: 2px dashed #ffa94d;
  padding-bottom: 6px;
  letter-spacing: 0.5px;
}
#toc_container ul,
#toc_container ol {
  list-style: none !important;
  padding-left: 0 !important;
}
#toc_container li::before {
  content: "📄 ";
  margin-right: 6px;
  color: #ffa94d;
}
#toc_container a {
  color: var(--lx-navy);
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
#toc_container a:hover {
  color: #ff6600;
  text-decoration: underline;
}
#toc_container .toc_number {
  display: none !important;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to { opacity: 0.95; transform: translateY(0); }
}

/* =========================================================
   🧾 CODE SNIPPETS (cosmicCode style)
   ========================================================= */
.code {
  background-color: #1e1e1e;
  color: #d4d4d4;
  padding: 1rem 0 0 0;
  font-family: 'Courier New', monospace;
  font-size: 0.95rem;
  line-height: 0.9rem;
  overflow-x: auto;
  margin: 1.5rem 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  position: relative;
}
.code::before {
  content: 'Life.exe // v2.0.4';
  position: absolute;
  top: 0;
  left: 0;
  background: #333;
  color: #6af7ff;
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  border-bottom-right-radius: 8px;
  font-family: monospace;
  letter-spacing: 0.5px;
}
.code ol {
  counter-reset: linenumber;
  list-style: none;
  padding: 2.5rem 0 0 0;
}
.code ol li {
  counter-increment: linenumber;
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.3em;
}
.code ol li::before {
  content: counter(linenumber) ".";
  position: absolute;
  left: 0;
  color: #888;
  font-weight: bold;
}

/* =========================================================
   🌿 SITE ELEMENTS: HEADER, MENU, BREADCRUMBS, SOCIALS
   ========================================================= */
.main-header-bar .main-header-bar-navigation,
.main-header-bar .ast-button-wrap {
  display: flex;
  align-items: center;
}

/* Header button */
.ast-header-button-1 {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: auto !important;
  writing-mode: horizontal-tb !important;
  transform: none !important;
  margin: 0 10px 0 15px !important;
}
.ast-header-button-1 .ast-custom-button {
  padding: 10px 22px !important;
  border-radius: 6px !important;
  background-color: var(--lx-ink) !important;
  color: #fff !important;
  font-family: 'Fira Code', monospace !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  transition: all 0.3s ease;
}
.ast-header-button-1 .ast-custom-button:hover {
  background-color: #3E5C50 !important;
  box-shadow: 0 0 8px rgba(61, 220, 145, 0.3);
}

/* 🔗 Breadcrumbs (deduped) */
.ast-breadcrumbs-wrapper {
  background-color: var(--lx-sand);
  padding: 10px 20px;
  border-bottom: 1px solid rgba(44,62,56,0.1);
  letter-spacing: 0.02em;
}
.ast-breadcrumbs a {
  color: var(--lx-ink);
  transition: color 0.3s ease;
}
.ast-breadcrumbs a:hover {
  color: var(--lx-orange);
}
@media (max-width: 600px) {
  .ast-breadcrumbs-wrapper {
    padding: 8px 16px;
    font-size: 0.9em;
  }
}

/* 🌐 Social Icons */
.ast-social-color-type-custom .ast-social-inner-wrap .ast-social-color-custom {
  color: var(--lx-ink) !important;
  background-color: var(--lx-sand) !important;
  border-radius: 50% !important;
  transition: all 0.3s ease;
}
.ast-social-color-type-custom .ast-social-inner-wrap .ast-social-color-custom:hover {
  color: var(--lx-orange) !important;
  background-color: #fffdf9 !important;
  box-shadow: 0 0 8px rgba(61, 220, 145, 0.3);
}

/* =========================================================
   ✨ LINKS + GLOBAL HOVERS
   ========================================================= */
a {
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
a:hover {
  color: var(--lx-mint);
  text-shadow: 0 0 6px rgba(73, 255, 156, 0.4);
}

/* =========================================================
   🧱 SIDEBAR (deduped)
   ========================================================= */
#secondary {
  background: var(--lx-cream);
  border-radius: 12px;
  box-shadow: var(--lx-shadow-1);
  padding: 20px;
  transition: all 0.3s ease;
}
#secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--lx-shadow-2);
}
#secondary h2.widget-title {
  font-family: 'Peace Sans', sans-serif;
  font-size: 1.4em;
  color: var(--lx-ink);
  border-bottom: 2px solid var(--lx-orange);
  margin-bottom: 10px;
  padding-bottom: 4px;
  letter-spacing: 0.03em;
}
#secondary a {
  color: var(--lx-orange);
  transition: color 0.3s ease;
}
#secondary a:hover {
  color: var(--lx-mint);
}

/* =========================================================
   🧩 BLOCK EDITOR (visual parity)
   ========================================================= */
.editor-styles-wrapper {
  padding: 24px 28px !important;
  background-color: var(--lx-cream);
  font-family: 'Segoe UI', sans-serif;
  color: var(--lx-ink);
  line-height: 1.75;
}

/* =========================================================
   🌙 FOOTER POLISH
   ========================================================= */
.site-footer {
  background-color: var(--lx-ink) !important;
  padding: 20px 0 !important;
  text-align: center;
  color: var(--lx-sand) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer a {
  color: var(--lx-orange) !important;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}
.site-footer a:hover {
  color: var(--lx-mint) !important;
  text-shadow: 0 0 6px rgba(61, 220, 145, 0.4);
}

/* Footer status line */
.footer-status {
  display: block;
  margin-top: 6px;
  font-family: 'Fira Code', monospace;
  font-size: 0.9rem;
  color: rgba(247, 243, 236, 0.85);
  letter-spacing: 0.04em;
  opacity: 0.9;
  text-align: center;
  transition: opacity 0.3s ease, transform 0.3s ease;
  text-shadow: 0 0 6px rgba(247, 243, 236, 0.3),
               0 0 12px rgba(232, 115, 64, 0.15);
  animation: footerGlow 4s ease-in-out infinite;
}
.footer-status:hover {
  opacity: 1;
  transform: translateY(-1px);
}
.footer-status strong::after {
  content: "_";
  animation: blink 1.5s steps(1) infinite;
}
@keyframes blink { 50% { opacity: 0; } }

@keyframes footerGlow {
  0%, 100% {
    text-shadow: 0 0 6px rgba(247, 243, 236, 0.3),
                 0 0 12px rgba(232, 115, 64, 0.15);
  }
  50% {
    text-shadow: 0 0 10px rgba(247, 243, 236, 0.6),
                 0 0 20px rgba(61, 220, 145, 0.35);
  }
}

/* =========================================================
   🧱 LAYOUT NOTES
   (Astra usually handles layout; keep if you truly need it)
   ========================================================= */
.site-content { overflow: hidden; }

.content-area {
  width: 70%;
  float: left;
}
.widget-area {
  width: 25%;
  float: right;
  clear: none;
}
@media (min-width: 921px) {
  .ast-left-sidebar .content-area,
  .ast-right-sidebar .content-area {
    width: 70%;
  }
  .ast-left-sidebar .secondary,
  .ast-right-sidebar .secondary {
    width: 30%;
    padding: 0 25px;
  }
}

/* Scroll-to-top button placement */
.scroll-to-top {
  bottom: 90px !important;
  z-index: 9999;
}

/* =========================================================
   🎄 HAPPY WINTER FESTIVAL (subtle glow)
   ========================================================= */
.happy-winter-festival {
  font-family: 'Playfair Script', 'Great Vibes', 'Dancing Script', cursive;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 400;
  text-align: center;
  margin: 3rem auto 1rem;
  color: #c9b37e;
  letter-spacing: 0.03em;
  text-shadow:
    0 0 6px rgba(201, 179, 126, 0.45),
    0 0 14px rgba(201, 179, 126, 0.25),
    0 4px 10px rgba(0, 0, 0, 0.15);
}
/* Angel Number Quick Meaning Callout */
.angel-quick-meaning {
  
  border-left: 5px solid rgba(25, 91, 158, 0.9);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.angel-quick-meaning h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.angel-quick-meaning p {
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.angel-quick-meaning p:last-child {
  margin-bottom: 0;
}

.angel-quick-meaning strong {
  color: #195b9e;
}

/* Adventure Game Base */
.podcast-episode {
  background: #222222;
  color: #e6e6eb;
  border-radius: 16px;
  padding: 2rem;
  margin: 2.5rem auto;
  max-width: 820px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  font-family: 'Segoe UI', monospace;
  position: relative;
	font-weight: 400;
	font-size: 1.2em;
	line-height:1.2em;
}
.podcast-episode h1,
.podcast-episode h2 {
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  color: #f4f1ff;
}
.podcast-subtitle {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
}
.podcast-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.75rem;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.podcast-meta span {
  background: rgba(255,255,255,0.06);
  padding: 0.4rem 0.7rem;
  border-radius: 8px;
}
.podcast-episode audio {
  width: 100%;
  margin: 1.5rem 0;
  border-radius: 12px;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.4));
}
.podcast-description {
  background: #141730;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 1.5rem;
  line-height: 1.6;
  font-size: 0.95rem;
}
.quest-rewards {
  margin-top: 2rem;
  padding: 1.2rem;
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
}

.quest-rewards strong {
  display: block;
  margin-bottom: 0.5rem;
  color: #ffd966;
}
.start-quest {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.9rem 1.4rem;
  background: linear-gradient(135deg, #7b5cff, #5e9bff);
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: bold;
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.start-quest:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(123,92,255,0.4);
}
.save-point {
  margin: 3rem 0;
  text-align: center;
  font-size: 0.7rem;
  opacity: 0.4;
}

.podcast-episode code div{
  background: #222222;
  color: #c1ff72;
	font:"VT323"
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  line-height: 1em;
	  text-transform: uppercase;
	font-weight:500;
}
.podcast-episode.wp-block-code pre {
  background: #222222;
  color: #c1FF72;
	font:"IBM Plex Mono"
  font-family: "Courier New", monospace;
  font-size: 0.9em;
  line-height: 1em;
	  text-transform: uppercase;
	font-weight:500;
}


