/* styles-i18n.css (COMPLETASSO — sem cortes) */

/* ====== BASE ====== */
:root{
  --bg:#0B1F3A;
  --fg:#ffffff;
  --accent:#ffffff;
  --ytbar-h: 160px;
}

/* Audio wave animation */
.audio-wave {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
}
.audio-wave .bar {
  width: 8px;
  height: 100%;
  background-color: var(--bg);
  border-radius: 4px;
  animation: soundWave 1.2s ease-in-out infinite;
}
.audio-wave .bar:nth-child(1) { animation-delay: 0.0s; }
.audio-wave .bar:nth-child(2) { animation-delay: 0.2s; }
.audio-wave .bar:nth-child(3) { animation-delay: 0.4s; }
.audio-wave .bar:nth-child(4) { animation-delay: 0.2s; }
.audio-wave .bar:nth-child(5) { animation-delay: 0.0s; }

@keyframes soundWave {
  0%, 100% { transform: scaleY(0.3); }
  50% { transform: scaleY(1); }
}

*{ box-sizing:border-box; }

html,body{ height:100%; }

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,'Helvetica Neue',Arial;
  color:var(--fg);
  background:var(--bg);
  transition:background-color .45s ease;
}

/* =========================
   APP (VOLTA PRO SEU FLEX)
   ========================= */
.app{
  min-height:100dvh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:space-between;
  padding:5px; /* reserva espaço pro carrossel */
  gap:5px;
}

/* ===== TOP BAR ===== */
.topbar{
  width:100%;
  max-width:980px;
  display:grid;
  grid-template-columns:1fr auto;
  align-items:center;
  gap:10px;
}

.chakra-tabs{
  display:flex;
  align-items:center;
  gap:8px;
  width:100%;
  max-width:100%;
  padding:0px;
  overflow-x:auto;
  overflow-y:hidden;
  -webkit-overflow-scrolling:touch;
  scroll-snap-type:x proximity;
  scrollbar-gutter:stable both-edges;
}

.chakra-tab{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  gap:8px;
  white-space:nowrap;
  appearance:none;
  border:0;
  border-radius:5px;
  padding:5px 10px;
  font-weight:700;
  color:#fff;
  text-shadow:0 1px 2px rgba(0,0,0,.35);
  cursor:pointer;
  outline:none;
  font-size: 11px;
  transition:transform .06s ease, box-shadow .2s ease, filter .2s ease;
  box-shadow:0 2px 8px rgba(0,0,0,.18);
  filter:saturate(110%);
  scroll-snap-align:start;
}

.chakra-tab:focus-visible{
  outline:2px solid #fff;
  outline-offset:2px;
}

.chakra-tab:active{ transform:translateY(1px); }

.tab-icon{
  width:18px;
  height:18px;
  flex:0 0 18px;
  object-fit:contain;
  display:block;
}

.tab-label{ line-height:1; }

/* ===== LANG SWITCHER — FIXO (sob o carrossel) ===== */
.lang-switcher{
  position:fixed;
  left:10px;
  top: 55px;
  z-index:1201;
}

.lang-current{
  border:0;
  border-radius:10px;
  padding:6px 10px;
  background:#ffffff20;
  color:#fff;
  font-weight:800;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:6px;
  box-shadow:0 2px 8px rgba(0,0,0,.2);
  line-height:1;
  font-size:14px;
  height:32px;
}

.lang-flag{
  width:16px;
  height:16px;
  object-fit:contain;
  display:inline-block;
  vertical-align:middle;
}

.lang-menu{
  position:absolute;
  left:0;
  bottom:calc(100% + -175px);
  background:#0f1f38;
  color:#fff;
  min-width:140px;
  border-radius:10px;
  padding:6px;
  margin:0;
  list-style:none;
  display:none;
  box-shadow:0 10px 24px rgba(0,0,0,.35);
}

.lang-item{
  width:100%;
  display:inline-flex;
  align-items:center;
  gap:8px;
  text-align:left;
  border:0;
  background:transparent;
  color:#fff;
  padding:8px 10px;
  border-radius:8px;
  cursor:pointer;
  font-weight:800;
  line-height:1;
  font-size:14px;
}

.lang-item:hover{ background:#ffffff22; }
.lang-item.is-active{ background:#ffffff33; }
.lang-item-sigla{ letter-spacing:.02em; }

@media (max-width:380px){
  .lang-current{ padding:6px 9px; font-size:13px; height:30px; }
  .lang-menu{ min-width:128px; }
  .lang-flag{ width:15px; height:15px; }
}

/* -------- STAGE -------- */
.stage{
  position:relative;
  flex:1;
  width:min(330px,100%);
  display:grid;
  place-items:center;
}

.meditator{
  width:min(100%,380px);
  opacity:.95;
  filter:drop-shadow(0 10px 30px #00000035);
  user-select:none;
  pointer-events:none;
}

/* -------- BUTTON ATIVAR -------- */
.activate-btn {
  display: block;
  margin: 0 auto 10px;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  animation: pulse-btn 2.5s infinite;
  z-index: 10;
  position: fixed;
  bottom: 100px;
}

.activate-btn:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: scale(1.03);
}

.activate-btn:active {
  transform: scale(0.97);
}

@keyframes pulse-btn {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
    transform: scale(1.02);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    transform: scale(1);
  }
}

/* -------- CHAKRA STRIP -------- */
.chakra-strip{
  position:absolute;
  display:flex;
  flex-direction:column-reverse;
  justify-content:space-between;
  align-items:center;
  pointer-events:auto;
  gap:5px;
  z-index:2;
}

.chakra-btn{
  width:40px;
  height:40px;
  border:none;
  border-radius:999px;
  background:#ffffff20;
  display:grid;
  place-items:center;
  padding:0;
  cursor:pointer;
  outline-offset:3px;
  transition:transform .14s ease, background-color .2s ease, box-shadow .2s ease;
  box-shadow:0 2px 10px #00000020 inset, 0 1px 0 #ffffff33 inset;
  position:relative;
  overflow:visible;
}

.chakra-btn[aria-current="true"]{
  transform:translateY(-2px) scale(1.06);
  box-shadow:0 0 0 2px #ffffff, 0 8px 24px #00000035;
  background:#ffffff33;
}

.chakra-swatch{
  position:absolute;
  inset:3px;
  border-radius:inherit;
  z-index:-1;
  filter:saturate(110%) contrast(105%);
  opacity:.85;
}

.chakra-icon{
  width:70%;
  height:70%;
  object-fit:contain;
  display:block;
  position:relative;
  z-index:2;
  pointer-events:none;
}

/* ======= ONDAS ======= */
.ring{
  position:absolute;
  inset:-6px;
  border-radius:999px;
  border:2px solid #fff;
  opacity:0;
  transform:scale(0.9);
  pointer-events:none;
  z-index:1;
  animation:chakra-ripple 2.8s ease-out infinite;
  animation-play-state:paused;
  display:none;
}

.ring1{ animation-delay:0s; }
.ring2{ animation-delay:1.2s; }

.chakra-btn[aria-current="true"] .ring{
  display:block;
  animation-play-state:running;
}

@keyframes chakra-ripple{
  0%{ opacity:.45; transform:scale(1); }
  60%{ opacity:.12; transform:scale(1.9); }
  100%{ opacity:0; transform:scale(2.1); }
}

/* -------- LEGENDA -------- */
.legend{
  width:100%;
  max-width:640px;
  text-align:center;
  display:flex;
  flex-direction:column;
  gap:8px;
  position: relative;
  top: -20px;
}

.mantra{
  font-size:21px;
  font-weight:800;
  letter-spacing:.1em;
}

.caption{
  font-size:clamp(14px,3.6vw,18px);
  opacity:.95;
}

/* ===== IMAGEM ACIMA DA MANTRA (SÓ NO RODAPÉ) ===== */
.legend .mantra-icon{
  width:60px;
  height:60px;
  display:block;
  margin:0 auto 0px;
  border-radius:10px;
  box-shadow:0 6px 20px rgba(0,0,0,.25);
  opacity:0;
  transform:translateY(4px);
  transition:opacity .18s ease, transform .18s ease;
}

.legend .mantra-icon.is-visible{
  opacity:1;
  transform:translateY(0);
}

/* acessibilidade: reduzir movimento */
@media (prefers-reduced-motion:reduce){
  .ring{ animation:none; opacity:0; display:none; }
}

/* desktop */
@media (min-width:768px){
  .app{ padding:22px 24px calc(28px + var(--ytbar-h)); gap:20px; }
}

/* =========================
   CARROSSEL FIXO NO RODAPÉ
   ========================= */
.video-carousel{
  z-index:50;

  height:var(--ytbar-h);
  padding:10px 12px 14px;

  background:rgba(0,0,0,.18);
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);

  border-top:1px solid rgba(255,255,255,.10);
  margin-top: 10px;
}

.video-carousel__title{
  font-size:13px;
  opacity:.9;
  margin:0 2px 8px;
  letter-spacing:.2px;
}

#ytSwiper{
  width:100%;
  height:calc(var(--ytbar-h) - 42px);
  overflow:hidden;
  border-radius:14px;
}

/* thumbs */
.yt-slide{
  border-radius:14px;
  overflow:hidden;
  position:relative;
  cursor:pointer;
  user-select:none;
  -webkit-tap-highlight-color:transparent;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
}

.yt-thumb{
  width:100%;
  aspect-ratio:16/9;
  display:block;
  object-fit:cover;
}

.yt-play{
  position:absolute;
  inset:0;
  display:grid;
  place-items:center;
  background:linear-gradient(to bottom, rgba(0,0,0,.05), rgba(0,0,0,.35));
}

.yt-play span{
  width:48px;
  height:48px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(0,0,0,.55);
  backdrop-filter:blur(6px);
  color:#fff;
  font-size:18px;
  line-height:1;
}

/* paginação embaixo, sem “flutuar” */
#ytSwiper .swiper-pagination{
  position:static;
  margin-top:8px;
  text-align:center;
}

.swiper-pagination-bullet{ opacity:.35; }
.swiper-pagination-bullet-active{ opacity:1; }

/* setas (se quiser manter) */
.swiper-button-prev,
.swiper-button-next{
  width:38px;
  height:38px;
  border-radius:999px;
  background:rgba(0,0,0,.35);
  backdrop-filter:blur(6px);
  color:#fff;
}

.swiper-button-prev:after,
.swiper-button-next:after{ font-size:16px; }

/* =========================
   MODAL (CHAKRA + VÍDEO + INFO)
   ========================= */

/* ✅ CENTRALIZA QUALQUER MODAL */
.modal{
  --chakra:#6C5CE7;
  position:fixed;
  inset:0;
  display:none;
  z-index:2000;

  /* ✅ centralizado */
  place-items:center;
}

.modal[aria-hidden="false"]{ display:grid; }

.modal__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
  backdrop-filter:blur(2px);
}

.modal__dialog{
  position:relative;
  width:min(720px,92vw);
  margin:0; /* ✅ remove o empurrão pra cima */

  background:#fff;
  color:#222;
  border-radius:16px;
  box-shadow:0 20px 60px rgba(0,0,0,.35);
  overflow:hidden;
  animation:modalIn .18s ease-out;
  max-height:84vh;
  display:flex;
  flex-direction:column;
}

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

.modal__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  background:var(--chakra); /* ✅ cor do chakra/mantra */
  color:#fff;
  padding:12px 16px;
}

.modal__header-main{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}

.modal__icon{
  width:28px;
  height:28px;
  flex:0 0 28px;
  object-fit:contain;
  filter:brightness(0) invert(1);
}

.modal__title{
  margin:0;
  font-size:clamp(1.1rem,2.6vw,1.4rem);
  color:#fff;
  line-height:1.2;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.modal__close{
  width:36px;
  height:36px;
  border:0;
  border-radius:999px;
  background:#ffffff33;
  color:#fff;
  font-size:22px;
  cursor:pointer;
}

.modal__close:hover{ background:#ffffff4d; }

.modal__body{
  padding:16px 16px 18px;
  overflow:auto;
  background:#fff;
  color:#222;
  scrollbar-width:thin;
  scrollbar-color:var(--chakra) #f0f0f0;
}

.modal__content{
  line-height:1.6;
  font-size:1rem;
  color:#333;
}

.modal__content h3{ margin:0 0 8px; font-size:1.1rem; }
.modal__content h4{ margin:10px 0 6px; font-size:1rem; }

.modal__content p{
  margin:0;
  padding-bottom:20px;
  line-height:25px;
}

.modal__content ul{
  margin:8px 0 12px 0;
  padding-left:20px;
}

.modal__content ul li{ line-height:25px; }

/* ===== MODAL VÍDEO ===== */
.modal__dialog--video{
  max-width:920px;
  width:min(92vw,920px);
}

.modal__body--video{ padding:12px; }

.video-frame{
  width:100%;
  aspect-ratio:16/9;
  border-radius:12px;
  overflow:hidden;
  background:rgba(0,0,0,.35);
}

.video-frame iframe{
  width:100%;
  height:100%;
  display:block;
}

/* ===== TIMER ===== */
.chakra-timer{
  /* Aumentado para caber o ícone do YouTube ao lado */
  width:76px;
  height:76px;
  /* box-shadow removido do wrapper pois agora são dois elementos separados visualmente */
  box-shadow:none;
  border-radius:0;
  pointer-events:none; /* deixa passar cliques onde não tem nada */
}

/* O círculo do timer em si */
.chakra-timer svg {
  width: 76px;
  height: 76px;
  border-radius: 100%;
  box-shadow: 2px 2px 14px 1px #33333361;
  pointer-events: auto;
  position: absolute;
  right: 0;
  top: 0;
}

.timer-toggle{
  /* Ajustado para ficar dentro do SVG (que está à direita) */
  position:absolute;
  right:0;
  top:0;
  width:76px;
  height:76px;
  margin:0;
  border:none;
  background:transparent;
  color:#fff;
  font-weight:900;
  font-size:18px;
  display:grid;
  place-items:center;
  cursor:pointer;
  outline:none;
  border-radius:100%;
  pointer-events: auto;
  z-index: 2;
}

.timer-toggle:focus-visible{
  outline:2px solid #fff;
  outline-offset:2px;
}

/* Ícone flutuante do YouTube (ao lado do timer) */
.yt-floater {
  position: fixed;
  left: 40px;
  top: 200px; /* (76 - 38) / 2 */
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #FF0000;
  color: #fff;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  animation: pulse-yt 2s infinite;
  pointer-events: auto;
  z-index: 2;
  display: flex;
  align-items: center;
}

.yt-floater svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  position: inherit;
  top: initial;
  right: inherit;
  margin-left: 2px; /* ajuste visual pro play */
}

@keyframes pulse-yt {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.7); }
  70% { transform: scale(1.1); box-shadow: 0 0 0 10px rgba(255, 0, 0, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 0, 0, 0); }
}

/* =========================
   HAMBURGER + DRAWER MENU
   ========================= */

.hamburger{
  width:44px;
  height:44px;
  border:none;
  background:transparent;
  display:grid;
  place-items:center;
  cursor:pointer;
  border-radius:12px;
  position:relative;
  flex:0 0 auto;
}
.hamburger:focus{ outline:2px solid rgba(255,255,255,.35); outline-offset:2px; }

.hamburger__lines{
  width:22px;
  height:14px;
  position:relative;
  display:block;
}
.hamburger__lines::before,
.hamburger__lines::after{
  content:"";
  position:absolute;
  left:0;
  width:100%;
  height:2px;
  background:rgba(255,255,255,.95);
  border-radius:2px;
  transition:transform .22s ease, top .22s ease, opacity .18s ease;
}
.hamburger__lines::before{ top:2px; }
.hamburger__lines::after{ top:10px; }

/* estado "aberto" (vira X) */
.hamburger.is-open .hamburger__lines::before{
  top:6px;
  transform:rotate(45deg);
}
.hamburger.is-open .hamburger__lines::after{
  top:6px;
  transform:rotate(-45deg);
}

/* Ajuste do header: hamburger + tabs + placeholder do switcher */
.topbar{
  display:flex;
  align-items:center;
  gap:10px;
}
.chakra-tabs{
  flex:1 1 auto;
  min-width:0;
}

/* Drawer */
.drawer{
  position:fixed;
  inset:0;
  z-index:2000; /* acima da app */
  pointer-events:none;
  opacity:0;
  transition:opacity .2s ease;
}
.drawer.is-open{
  opacity:1;
  pointer-events:auto;
}
.drawer__backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
}
.drawer__panel{
  position:absolute;
  top:0;
  left:0;
  height:100%;
  width:min(86vw, 360px);
  background:#0b1f3a;
  border-right:1px solid rgba(255,255,255,.12);
  transform:translateX(-102%);
  transition:transform .24s ease;
  display:flex;
  flex-direction:column;
}
.drawer.is-open .drawer__panel{
  transform:translateX(0);
}

.drawer__header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 14px;
  border-bottom:1px solid rgba(255,255,255,.12);
}
.drawer__title{
  color:#fff;
  font-weight:700;
  letter-spacing:.2px;
}
.drawer__close{
  width:40px;
  height:40px;
  border:none;
  background:transparent;
  color:#fff;
  font-size:26px;
  cursor:pointer;
  border-radius:10px;
}
.drawer__close:focus{ outline:2px solid rgba(255,255,255,.35); outline-offset:2px; }

.drawer__list{
  list-style:none;
  margin:0;
  padding:10px;
  display:flex;
  flex-direction:column;
  gap:8px;
}
.drawer__item{
  width:100%;
  text-align:left;
  padding:12px 12px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:#fff;
  cursor:pointer;
  font-size:15px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.drawer__item:hover{
  background:rgba(255,255,255,.10);
}

/* trava scroll quando menu ou modal aberto */
body.is-locked{
  overflow:hidden;
}

/* =========================
   DRAWER SUBMENU (videos + mandalas)
   ========================= */

.drawer__group{
  display:flex;
  flex-direction:column;
}

.drawer__item--group{
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.drawer__chev{
  display:inline-block;
  transform:rotate(0deg);
  transition:transform .2s ease;
  opacity:.9;
}

.drawer__submenu{
  list-style:none;
  margin:0;
  padding:0 0 0 10px;
  display:grid;
  gap:8px;

  max-height:0;
  overflow:hidden;
  opacity:0;
  transform:translateY(-4px);
  transition:max-height .22s ease, opacity .18s ease, transform .18s ease;
}

.drawer__submenu.is-open{
  max-height:520px; /* suporta mais itens */
  opacity:1;
  transform:translateY(0);
}

/* Ícone genérico do menu */
.drawer__icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
  opacity: 0.9;
}

/* Agrupador para texto + ícone em itens com submenu (para manter space-between do chevron) */
.drawer__label-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Subitem do drawer com ícone */
.drawer__subitem{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  border-radius:10px;
  text-decoration: none;
}

.drawer__subitem:last-child {
  border-bottom: 0;
}

.drawer__subitem:hover{
  background: rgba(255,255,255,.06);
}

.drawer__subtext{
  flex: 1;
  font-size: 14px;
  line-height: 1.2;
}

/* ✅ ÍCONE DO DRAWER (submenu) — NÃO USA O FADE DO RODAPÉ */
.drawer__subitem .mantra-icon-menu {
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  flex: 0 0 30px;

  /* ✅ garante que não herda “sumir” */
  opacity: 1;
  transform: none;
}

/* =========================
   PULSE HIGHLIGHT (VIDEO CAROUSEL)
   ========================= */
.pulse-highlight {
  animation: pulse-border 1.5s infinite;
  z-index: 1000 !important; /* Ensure it is visible */
}

@keyframes pulse-border {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    background-color: rgba(255, 255, 255, 0.1);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    background-color: rgba(255, 255, 255, 0.3);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    background-color: rgba(255, 255, 255, 0.1);
  }
}

/* =========================
   SPLASH SCREEN
   ========================= */

.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  opacity: 1;
  visibility: visible;
  padding: 20px;
}

.splash-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-logo {
  max-width: 240px;
  width: 80%;
  object-fit: contain;
  animation: logo-fade-in 1.2s ease-out forwards;
}

.splash-btn {
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  color: #0B1F3A;
  background: #ffffff;
  border: 2px solid #0B1F3A;
  border-radius: 999px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  animation: btn-fade-in 1.2s ease-out 0.3s backwards;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.splash-btn:hover {
  background: #0B1F3A;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.splash-btn:active {
  transform: translateY(0);
}

@keyframes logo-fade-in {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes btn-fade-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Offline Toast Styles */
.offline-toast {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.95rem;
  z-index: 10000;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
}

.offline-toast--show {
  opacity: 1;
  visibility: visible;
}

.offline-toast__text {
  flex: 1;
}

.offline-toast__close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  opacity: 0.7;
}

.offline-toast__close:hover {
  opacity: 1;
}
