/* NEXA Forge — Reusable Components (Apple tarzı) */

/* ─── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: var(--space-sm);
  padding: 10px 16px;
  border-radius: var(--radius-md);
  font-family: var(--font-body); font-size: 13.5px; font-weight: 600;
  cursor: pointer; white-space: nowrap;
  border: 1px solid transparent;
  transition: all var(--t-base);
}
.btn:active { transform: scale(0.97); transition-duration: var(--t-fast); }

.btn-primary { background: var(--accent-primary); color: #fff; }
.btn-primary:hover { filter: brightness(1.08); }

.btn-secondary {
  background: var(--bg-secondary); color: var(--text-primary);
  border-color: var(--border-strong);
}
.btn-secondary:hover { background: var(--bg-tertiary); }

.btn-danger {
  background: transparent; color: var(--accent-danger);
  border-color: var(--border-strong);
}
.btn-danger:hover { background: var(--accent-danger); color: #fff; border-color: transparent; }

.btn-ghost { color: var(--text-secondary); }
.btn-ghost:hover { background: var(--bg-tertiary); color: var(--text-primary); }

.btn-success { background: var(--accent-secondary); color: #fff; }
.btn-success:hover { filter: brightness(1.06); }

.btn-sm { padding: 6px 10px; font-size: 12px; }
.btn-lg { padding: 12px var(--space-lg); font-size: 15px; }
.btn-icon { padding: 8px; width: 36px; height: 36px; justify-content: center; }
.btn-icon-sm { padding: 6px; width: 30px; height: 30px; justify-content: center; border-radius: var(--radius-sm); }

/* ─── CARDS ───────────────────────────────── */
.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--t-base), transform var(--t-base);
}
.card:hover { box-shadow: var(--card-glow); }

.card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: var(--space-md);
}
.card-title { font-size: 14.5px; font-weight: 600; font-family: var(--font-body); letter-spacing: -0.1px; }
.card-subtitle { font-size: 12px; color: var(--text-secondary); margin-top: 2px; }

/* ─── BADGES ──────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 11px; font-weight: 700;
}
.badge-primary   { background: var(--accent-soft); color: var(--accent-primary); }
.badge-success   { background: rgba(52,199,89,.14);  color: var(--accent-secondary); }
.badge-danger    { background: rgba(255,55,95,.12);  color: var(--c-red); }
.badge-warning   { background: rgba(255,149,0,.14);  color: var(--c-orange); }
.badge-neutral   { background: var(--bg-tertiary);   color: var(--text-secondary); }

.priority-high     { background: rgba(255,149,0,.14); color: var(--c-orange); border-radius: var(--radius-full); padding: 3px 8px; font-size: 10.5px; font-weight: 700; }
.priority-medium   { background: var(--accent-soft);  color: var(--accent-primary); border-radius: var(--radius-full); padding: 3px 8px; font-size: 10.5px; font-weight: 700; }
.priority-low      { background: var(--bg-tertiary);  color: var(--text-secondary); border-radius: var(--radius-full); padding: 3px 8px; font-size: 10.5px; font-weight: 700; }
.priority-critical { background: rgba(255,55,95,.13); color: var(--c-red); border-radius: var(--radius-full); padding: 3px 8px; font-size: 10.5px; font-weight: 700; }

/* Rol rozetleri */
.role-lider    { background: rgba(175,82,222,.14); color: var(--c-purple); border-radius: var(--radius-full); padding: 3px 10px; font-size: 11px; font-weight: 700; }
.role-uye      { background: rgba(52,199,89,.14);  color: var(--c-green);  border-radius: var(--radius-full); padding: 3px 10px; font-size: 11px; font-weight: 700; }
.role-gozlemci { background: rgba(255,149,0,.14);  color: var(--c-orange); border-radius: var(--radius-full); padding: 3px 10px; font-size: 11px; font-weight: 700; }

/* ─── INPUTS ──────────────────────────────── */
.input-group { display: flex; flex-direction: column; gap: var(--space-xs); margin-bottom: var(--space-md); }
.input-label { font-size: 12.5px; font-weight: 600; color: var(--text-secondary); }

.input, .textarea, .select {
  background: var(--surface-alt);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: 11px 13px;
  color: var(--text-primary); font-size: 14px;
  transition: border-color var(--t-base), box-shadow var(--t-base);
  width: 100%; outline: none;
}
.input:focus, .textarea:focus, .select:focus { border-color: var(--accent-primary); box-shadow: 0 0 0 3.5px var(--accent-soft); }
.input::placeholder, .textarea::placeholder { color: var(--text-muted); }
.textarea { resize: vertical; min-height: 80px; }

.select {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2386868b' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center;
  padding-right: 36px;
}
.select option { background: var(--bg-secondary); }

/* ─── AVATAR ──────────────────────────────── */
.avatar {
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; flex-shrink: 0; color: #fff;
}
.avatar-xs  { width: 24px; height: 24px; font-size: 9px; }
.avatar-sm  { width: 30px; height: 30px; font-size: 11px; }
.avatar-md  { width: 40px; height: 40px; font-size: 14px; }
.avatar-lg  { width: 54px; height: 54px; font-size: 19px; }
.avatar-xl  { width: 72px; height: 72px; font-size: 26px; }

/* ─── MODAL ───────────────────────────────── */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.4);
  backdrop-filter: blur(8px);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-lg);
  animation: backdropIn 200ms ease-out;
}
[data-theme="dark"] .modal-backdrop { background: rgba(0,0,0,.6); }
@keyframes backdropIn { from { opacity: 0; } to { opacity: 1; } }

.modal {
  background: var(--bg-secondary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-xl);
  padding: 30px;
  width: 100%; max-width: 520px;
  max-height: 90vh; overflow-y: auto;
  animation: modalIn 250ms cubic-bezier(.2,.7,.2,1);
  box-shadow: var(--shadow-lg);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to   { opacity: 1; transform: scale(1)    translateY(0); }
}

.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--space-lg); }
.modal-title  { font-family: var(--font-display); font-size: 20px; font-weight: 600; letter-spacing: -0.3px; }
.modal-close  {
  width: 30px; height: 30px; border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-tertiary);
  color: var(--text-secondary); cursor: pointer; transition: all var(--t-base);
}
.modal-close:hover { color: var(--text-primary); }
.modal-footer {
  display: flex; justify-content: flex-end; gap: var(--space-sm);
  margin-top: var(--space-lg); padding-top: var(--space-lg);
  border-top: 1px solid var(--border-subtle);
}

/* ─── PROGRESS ────────────────────────────── */
.progress-bar { height: 6px; background: var(--bg-tertiary); border-radius: var(--radius-full); overflow: hidden; }
[data-theme="dark"] .progress-bar { background: rgba(255,255,255,0.08); }
.progress-fill { height: 100%; border-radius: var(--radius-full); transition: width 600ms ease-out; }
.progress-fill.primary { background: var(--accent-primary); }
.progress-fill.success { background: var(--accent-secondary); }
.progress-fill.warning { background: var(--c-orange); }
.progress-fill.danger  { background: var(--c-red); }

/* ─── HELPERS ─────────────────────────────── */
.divider { height: 1px; background: var(--border-subtle); margin: var(--space-lg) 0; }

.page-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 28px; position: relative; z-index: 1; }
.page-header-left h2 { font-family: var(--font-display); font-size: 26px; font-weight: 600; letter-spacing: -0.3px; }
.page-header-left p  { font-size: 13.5px; color: var(--text-secondary); margin-top: 5px; }
.page-header-right   { display: flex; align-items: center; gap: var(--space-sm); flex-shrink: 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

@media (max-width: 1200px) { .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width:  960px) { .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width:  768px) { .grid-2,.grid-3,.grid-4 { grid-template-columns: 1fr; } }

/* ─── TABS (segmented control) ────────────── */
.tabs { display: inline-flex; gap: 2px; background: rgba(0,0,0,0.045); border: none; border-radius: var(--radius-full); padding: 3px; }
[data-theme="dark"] .tabs { background: rgba(255,255,255,0.06); }
.tab  { padding: 6px 14px; border-radius: var(--radius-full); font-size: 13px; font-weight: 600; color: var(--text-secondary); cursor: pointer; transition: all var(--t-base); }
.tab:hover  { color: var(--text-primary); }
.tab.active { background: var(--bg-secondary); color: var(--text-primary); box-shadow: var(--shadow-sm); }

/* ─── SKELETON ────────────────────────────── */
.skeleton {
  background: linear-gradient(90deg, var(--bg-tertiary) 25%, var(--border-subtle) 50%, var(--bg-tertiary) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-md);
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ─── EMPTY STATE ─────────────────────────── */
.empty-state {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: var(--space-2xl); color: var(--text-muted); text-align: center; gap: var(--space-md);
}
.empty-state svg { opacity: .3; }
.empty-state .msr { font-size: 34px; color: var(--text-muted); }
.empty-state h3 { font-size: 15px; color: var(--text-secondary); font-family: var(--font-body); }
.empty-state p  { font-size: 13px; }

/* ─── TOOLTIP ─────────────────────────────── */
[data-tip] { position: relative; }
[data-tip]::after {
  content: attr(data-tip);
  position: absolute; bottom: calc(100% + 6px); left: 50%; transform: translateX(-50%);
  background: var(--text-primary);
  color: var(--bg-secondary); font-size: 11px; font-weight: 600;
  padding: 4px 9px; border-radius: var(--radius-sm);
  white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity var(--t-fast); z-index: 50;
}
[data-tip]:hover::after { opacity: 1; }

.hdr-btn[data-tip]::after {
  bottom: auto;
  top: calc(100% + 6px);
}

/* ─── DROPDOWN ────────────────────────────── */
.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 6px); right: 0;
  background: var(--bg-secondary);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  padding: var(--space-xs);
  min-width: 170px;
  box-shadow: var(--shadow-lg); z-index: 150;
  animation: ddIn 150ms ease-out;
}
@keyframes ddIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.dropdown-item {
  display: flex; align-items: center; gap: var(--space-sm);
  padding: 8px var(--space-md); border-radius: var(--radius-sm);
  font-size: 13px; color: var(--text-secondary);
  cursor: pointer; transition: all var(--t-base);
}
.dropdown-item:hover          { background: var(--bg-tertiary); color: var(--text-primary); }
.dropdown-item.danger         { color: var(--accent-danger); }
.dropdown-item.danger:hover   { background: rgba(255,55,95,.1); }

/* ─── TAG ─────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center;
  padding: 2px 8px; border-radius: var(--radius-sm);
  font-size: 10.5px; font-weight: 600;
  background: var(--bg-tertiary);
  color: var(--text-secondary);
}

/* ── Doc Upload Zone ──────────────────────── */
.doc-upload-zone {
  border: 2px dashed var(--border-strong);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  text-align: center;
  cursor: pointer;
  transition: border-color var(--t-base), background var(--t-base);
  margin-bottom: var(--space-md);
}
.doc-upload-zone:hover,
.doc-upload-zone.dragging {
  border-color: var(--accent-primary);
  background: var(--accent-soft);
}
.doc-upload-icon { font-size: 32px; margin-bottom: var(--space-sm); }
.doc-upload-text { font-size: 14px; color: var(--text-secondary); }
.doc-upload-link { color: var(--accent-primary); font-weight: 600; cursor: pointer; }
.doc-upload-hint { font-size: 12px; color: var(--text-muted); margin-top: 4px; }
.doc-selected-file {
  background: var(--accent-soft);
  border: 1px solid var(--accent-soft);
  border-radius: var(--radius-md);
  padding: 8px var(--space-md);
  font-size: 13px;
  color: var(--accent-primary);
  margin-bottom: var(--space-md);
}

/* ─── iOS SWITCH ──────────────────────────── */
.nx-switch {
  width: 42px; height: 25px; border-radius: var(--radius-full);
  background: rgba(0,0,0,0.14);
  position: relative; cursor: pointer; flex-shrink: 0;
  transition: background var(--t-base);
  border: none; padding: 0;
}
[data-theme="dark"] .nx-switch { background: rgba(255,255,255,0.16); }
.nx-switch.on { background: var(--accent-secondary); }
.nx-switch .nx-knob {
  position: absolute; top: 2px; left: 2px;
  width: 21px; height: 21px; border-radius: 50%;
  background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.3);
  transition: left 200ms cubic-bezier(.2,.7,.2,1);
  display: flex; align-items: center; justify-content: center;
}
.nx-switch.on .nx-knob { left: 19px; }

/* ─── FLOATING CONTROL BAR (sağ alt) ──────── */
#nexa-controlbar {
  position: fixed; bottom: 16px; right: 16px; z-index: 1000;
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-full);
  padding: 6px 8px 6px 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  font-family: var(--font-body);
}
[data-theme="dark"] #nexa-controlbar { background: rgba(40,40,42,0.85); }
#nexa-controlbar .cb-label {
  font-size: 11px; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.4px;
}
#nexa-controlbar .cb-divider { width: 1px; height: 18px; background: var(--border-default); }
#nexa-controlbar .cb-ghost {
  border: none; background: transparent; cursor: pointer;
  font-size: 12.5px; font-weight: 600; color: var(--text-secondary);
  font-family: var(--font-body); padding: 5px 8px; border-radius: var(--radius-full);
}
#nexa-controlbar .cb-ghost:hover { color: var(--text-primary); background: var(--bg-tertiary); }

/* Tema anahtarı (52×28, güneş/ay) */
.theme-switch {
  width: 52px; height: 28px; border-radius: var(--radius-full);
  background: rgba(0,0,0,0.12);
  position: relative; cursor: pointer; flex-shrink: 0;
  transition: background var(--t-base);
  border: none; padding: 0;
}
[data-theme="dark"] .theme-switch { background: var(--accent-primary); }
.theme-switch .ts-knob {
  position: absolute; top: 3px; left: 3px;
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; box-shadow: 0 1px 3px rgba(0,0,0,0.35);
  display: flex; align-items: center; justify-content: center;
  transition: left 250ms cubic-bezier(.2,.7,.2,1);
}
[data-theme="dark"] .theme-switch .ts-knob { left: 27px; }
.theme-switch .ts-knob .msr { font-size: 13px; color: var(--c-orange); }
[data-theme="dark"] .theme-switch .ts-knob .msr { color: #1c1c1e; }

/* ─── ROKET YÜKLEME KATMANI ───────────────── */
.rkt-overlay {
  position: fixed; inset: 0; z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  animation: rktFade 0.25s ease;
}
[data-theme="dark"] .rkt-overlay { background: rgba(0,0,0,0.55); }
@keyframes rktFade { from { opacity: 0; } to { opacity: 1; } }

.rkt-card {
  display: flex; flex-direction: column; align-items: center; gap: 22px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-default);
  border-radius: 24px; padding: 38px 46px;
  box-shadow: var(--card-glow);
}
.rkt-stage { position: relative; width: 96px; height: 96px; display: flex; align-items: center; justify-content: center; }
.rkt-ring  { position: absolute; width: 96px; height: 96px; animation: rktSpin 1.15s linear infinite; }
.rkt-ring .rkt-rocket {
  position: absolute; top: 2px; left: 50%;
  transform: translateX(-50%) rotate(45deg);
  font-size: 34px; color: var(--accent-primary);
}
.rkt-puff {
  position: absolute; left: 50%; border-radius: 50%;
  background: var(--accent-primary); transform: translateX(-50%);
  animation: rktPuffPulse 1.15s ease-in-out infinite;
}
.rkt-puff.p1 { top: 40px; width: 7px;   height: 7px; }
.rkt-puff.p2 { top: 54px; width: 5px;   height: 5px;   animation-delay: .12s; }
.rkt-puff.p3 { top: 66px; width: 3.5px; height: 3.5px; animation-delay: .24s; }

.rkt-rise { position: relative; width: 60px; height: 60px; animation: rktRiseUp 0.9s cubic-bezier(.4,0,.2,1) forwards; }
.rkt-rise .rkt-rocket {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%) rotate(-45deg);
  font-size: 44px; color: var(--accent-primary);
}
.rkt-rise .rkt-puff { animation: rktRisePuff 0.9s ease-out infinite; }
.rkt-rise .rkt-puff.p1 { top: 46px; }
.rkt-rise .rkt-puff.p2 { top: 52px; animation-delay: .15s; }
.rkt-rise .rkt-puff.p3 { top: 58px; animation-delay: .3s; }

.rkt-title { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--text-primary); letter-spacing: -0.2px; text-align: center; }
.rkt-sub   { font-size: 13px; color: var(--text-secondary); text-align: center; margin-top: 4px; }

@keyframes rktSpin { to { transform: rotate(360deg); } }
@keyframes rktPuffPulse { 0%, 100% { opacity: 0.15; transform: translateX(-50%) scale(0.7); } 50% { opacity: 0.7; transform: translateX(-50%) scale(1); } }
@keyframes rktRiseUp { 0% { transform: translateY(0); opacity: 1; } 20% { opacity: 1; } 100% { transform: translateY(-150px); opacity: 0; } }
@keyframes rktRisePuff { 0% { opacity: 0; transform: translateX(-50%) scale(0.5); } 30% { opacity: 0.7; } 100% { opacity: 0; transform: translateX(-50%) scale(1.1) translateY(10px); } }

/* ─── FİLİGRAN İKONLAR (sayfa kenarları) ──── */
.page-decor {
  position: absolute; inset: 0; overflow: hidden;
  z-index: 0; pointer-events: none;
}
.page-decor .wm {
  position: absolute;
  font-family: 'Material Symbols Rounded';
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 48;
  line-height: 1; pointer-events: none; user-select: none;
}

/* Kart içi filigran ikon kümeleri */
.wm-card { position: relative; overflow: hidden; }
.wm-card > * { position: relative; z-index: 1; }

/* .wmc her yerde Material ikon fontu kullanır (yazıya düşmesin) */
.wmc {
  position: absolute; z-index: 0;
  font-family: 'Material Symbols Rounded';
  font-weight: normal; font-style: normal;
  font-variation-settings: 'FILL' 1, 'wght' 500, 'GRAD' 0, 'opsz' 24;
  line-height: 1; pointer-events: none; user-select: none;
  white-space: nowrap; letter-spacing: normal; text-transform: none;
  -webkit-font-feature-settings: 'liga'; font-feature-settings: 'liga';
  opacity: 0.14;
}
[data-theme="dark"] .wmc { opacity: 0.20; }
.wmc.lo { opacity: 0.09; }
[data-theme="dark"] .wmc.lo { opacity: 0.13; }

/* ─── AÇILIŞ YÜKLEME (uydu gezegen etrafında döner) ─── */
#app-loader {
  position: fixed; inset: 0; z-index: 99999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 30px;
  background: var(--bg-primary);
}
.loader-space { position: relative; width: 180px; height: 180px; }

/* Gezegen (merkez) */
.loader-planet {
  position: absolute; top: 50%; left: 50%;
  width: 74px; height: 74px; margin: -37px 0 0 -37px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #4aa3ff 0%, var(--accent-primary) 55%, #0a4fa8 100%);
  box-shadow: 0 8px 30px rgba(0,113,227,0.35), inset -6px -8px 16px rgba(0,0,0,0.25);
  display: flex; align-items: center; justify-content: center;
  animation: loaderPlanetSpin 9s linear infinite;
}
.loader-planet-glyph { font-size: 46px; color: rgba(255,255,255,0.85); font-variation-settings: 'FILL' 1, 'wght' 400; }
@keyframes loaderPlanetSpin { to { transform: rotate(360deg); } }

/* Yörünge halkaları */
.loader-orbit {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1.5px dashed var(--border-strong);
  animation: loaderOrbit 3.2s linear infinite;
}
.loader-orbit-2 {
  inset: 34px;
  border-color: var(--border-subtle);
  animation: loaderOrbit 5s linear infinite reverse;
}
@keyframes loaderOrbit { to { transform: rotate(360deg); } }

/* Uydu — yörüngenin üstünde oturur, halka döndükçe gezegeni turlar */
.loader-sat {
  position: absolute; top: -15px; left: 50%;
  transform: translateX(-50%) rotate(35deg);
  font-size: 30px; color: var(--accent-primary);
  filter: drop-shadow(0 2px 5px rgba(0,113,227,0.4));
}
.loader-sat-dot {
  position: absolute; top: -4px; left: 50%;
  width: 9px; height: 9px; margin-left: -4.5px;
  border-radius: 50%; background: var(--c-teal);
  box-shadow: 0 0 10px var(--c-teal);
}
.loader-text {
  font-family: var(--font-display);
  font-size: 22px; font-weight: 600;
  color: var(--text-primary); letter-spacing: -0.3px;
  animation: loaderTextPulse 1.8s ease-in-out infinite;
}
.loader-text span { color: var(--text-secondary); font-weight: 500; }
@keyframes loaderTextPulse { 0%,100% { opacity: 0.55; } 50% { opacity: 1; } }
