/* === Sikhaz Words — Retro Arcade Dialog on Blueprint Grid === */

:root[data-theme="light"] {
  --bg: #3a5288;
  --grid-line: rgba(255, 255, 255, 0.08);
  --grid-line-major: rgba(255, 255, 255, 0.14);
  --paper: #f4ecd4;
  --paper-shadow: #d9cfaf;
  --ink: #1a1a2e;
  --ink-soft: #3a3a4e;
  --muted: #7a7364;
  --accent: #ffd23f;
  --accent-dark: #e0b72f;
  --stripe-a: #ffd23f;
  --stripe-b: #1a1a2e;
  --bar-hot: #5fb35f;
  --bar-warm: #f5c64b;
  --bar-cold: #ed7a5a;
  --bar-freezing: #d44a3f;
  --bar-track: #e8dfbe;
  --red: #d44a3f;
  --shadow-offset: 6px;
}
:root[data-theme="dark"] {
  --bg: #141a2e;
  --grid-line: rgba(255, 210, 63, 0.06);
  --grid-line-major: rgba(255, 210, 63, 0.12);
  --paper: #f4ecd4;
  --paper-shadow: #c0b795;
  --ink: #1a1a2e;
  --ink-soft: #3a3a4e;
  --muted: #7a7364;
  --accent: #ffd23f;
  --accent-dark: #e0b72f;
  --stripe-a: #ffd23f;
  --stripe-b: #1a1a2e;
  --bar-hot: #5fb35f;
  --bar-warm: #f5c64b;
  --bar-cold: #ed7a5a;
  --bar-freezing: #d44a3f;
  --bar-track: #e8dfbe;
  --red: #d44a3f;
  --shadow-offset: 6px;
}

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

html, body { height: 100%; }

body {
  background-color: var(--bg);
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px),
    linear-gradient(var(--grid-line-major) 2px, transparent 2px),
    linear-gradient(90deg, var(--grid-line-major) 2px, transparent 2px);
  background-size: 24px 24px, 24px 24px, 120px 120px, 120px 120px;
  background-attachment: fixed;
  color: var(--ink);
  font-family: "Handjet", "VT323", "Courier New", monospace;
  font-size: 20px;
  line-height: 1.4;
  min-height: 100vh;
  overflow-x: hidden;
}

#app {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 48px 16px;
}

.screen {
  display: none;
  width: min(640px, 100%);
}

.screen.active { display: block; }

/* === Retro dialog card === */
.card {
  position: relative;
  background: var(--paper);
  border: 4px solid var(--ink);
  border-radius: 0;
  margin-bottom: 24px;
  box-shadow:
    var(--shadow-offset) var(--shadow-offset) 0 var(--ink),
    calc(var(--shadow-offset) + 2px) calc(var(--shadow-offset) + 2px) 0 rgba(0, 0, 0, 0.25);
  padding: 0;
}

.card::before {
  content: "";
  display: block;
  height: 18px;
  background: repeating-linear-gradient(
    135deg,
    var(--stripe-a) 0,
    var(--stripe-a) 12px,
    var(--stripe-b) 12px,
    var(--stripe-b) 24px
  );
  border-bottom: 4px solid var(--ink);
}

.card-inner { padding: 20px 22px; }

.card-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.card-label {
  font-family: "Press Start 2P", "Handjet", monospace;
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--ink);
  text-transform: uppercase;
}

.daily-date {
  font-family: "VT323", monospace;
  font-size: 24px;
  color: var(--ink-soft);
  letter-spacing: 1px;
}

/* === Landing header === */
.landing-header {
  text-align: center;
  margin-bottom: 28px;
  color: var(--paper);
}

.landing-title {
  font-family: "Press Start 2P", monospace;
  font-size: 30px;
  letter-spacing: 4px;
  color: var(--paper);
  text-shadow:
    3px 3px 0 var(--ink),
    -1px -1px 0 rgba(255, 255, 255, 0.1);
  margin-bottom: 12px;
}

.landing-tagline {
  font-family: "Handjet", "VT323", monospace;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--paper);
  opacity: 0.85;
}

/* === Buttons === */
.btn {
  font-family: "Press Start 2P", "Handjet", monospace;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 18px;
  border: 3px solid var(--ink);
  border-radius: 0;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform 80ms ease, box-shadow 80ms ease;
  user-select: none;
}

.btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: 5px 5px 0 var(--ink);
}

.btn:active {
  transform: translate(3px, 3px);
  box-shadow: 1px 1px 0 var(--ink);
}

.btn.primary {
  background: var(--accent);
  color: var(--ink);
  font-weight: 700;
}

.btn.secondary {
  background: var(--paper);
  color: var(--ink);
}

.btn.danger {
  background: var(--red);
  color: var(--paper);
}

/* === Week strip === */
.week-strip {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  margin: 16px 0;
}

.week-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 2px;
  border: 3px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform 80ms ease, box-shadow 80ms ease;
  font-family: "Press Start 2P", monospace;
  font-size: 10px;
  letter-spacing: 1px;
}

.week-cell:not(.future):hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--ink);
}

.week-cell:not(.future):active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}

.week-cell.today {
  background: var(--accent);
  color: var(--ink);
}

.week-cell.future {
  opacity: 0.35;
  cursor: not-allowed;
  box-shadow: 2px 2px 0 var(--ink);
}

.week-cell-name {
  font-size: 9px;
  opacity: 0.85;
  text-transform: uppercase;
}

.week-cell-num {
  font-family: "Press Start 2P", monospace;
  font-size: 14px;
  margin-top: 2px;
}

/* === Landing footer === */
.landing-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  gap: 12px;
  color: var(--paper);
  font-family: "Handjet", monospace;
  font-size: 16px;
}

.landing-footer a {
  color: var(--paper);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}

.theme-toggle {
  padding: 8px 12px;
  font-size: 10px;
  box-shadow: 3px 3px 0 var(--ink);
}

/* === Game (oyun) screen === */
.oyun-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--paper);
  font-family: "Press Start 2P", monospace;
  font-size: 11px;
  letter-spacing: 1px;
}

.oyun-date {
  flex: 1;
  color: var(--paper);
  font-family: "VT323", monospace;
  font-size: 22px;
  letter-spacing: 1px;
}

.oyun-counter {
  font-family: "Press Start 2P", monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 1.5px;
}

.oyun-tips {
  font-family: 'Press Start 2P', monospace;
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 1px;
}

.oyun-form {
  display: flex;
  gap: 0;
  margin-bottom: 20px;
  border: 4px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  background: var(--paper);
}

.oyun-input {
  flex: 1;
  padding: 14px 16px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: "Handjet", "VT323", monospace;
  font-size: 22px;
  letter-spacing: 1px;
  outline: none;
}

.oyun-input::placeholder {
  color: var(--muted);
  font-style: italic;
}

.oyun-form .btn {
  border-width: 0 0 0 4px;
  border-style: solid;
  border-color: var(--ink);
  box-shadow: none;
  font-size: 14px;
  padding: 0 20px;
  background: var(--accent);
}

.oyun-form .btn:hover {
  transform: none;
  box-shadow: none;
  background: var(--accent-dark);
}

.oyun-form .btn:active { transform: none; box-shadow: none; }

.latest-slot { margin-bottom: 12px; }

.guess-row {
  position: relative;
  padding: 12px 14px;
  border: 3px solid var(--ink);
  background: var(--paper);
  margin-bottom: 6px;
  overflow: hidden;
  box-shadow: 3px 3px 0 var(--ink);
}

.guess-row-latest {
  box-shadow: 3px 3px 0 var(--accent), 6px 6px 0 var(--ink);
  border-width: 4px;
  margin-bottom: 14px;
}

.guess-bar-fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  opacity: 0.5;
  transition: width 250ms ease;
  z-index: 0;
}

.guess-bar-fill.rank-hot { background: var(--bar-hot); }
.guess-bar-fill.rank-warm { background: var(--bar-warm); }
.guess-bar-fill.rank-cold { background: var(--bar-cold); }
.guess-bar-fill.rank-freezing { background: var(--bar-freezing); }

.guess-row-content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Handjet", "VT323", monospace;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
}

.guess-word { color: var(--ink); }

.guess-rank {
  color: var(--ink);
  font-family: "Press Start 2P", monospace;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

.tip-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  box-shadow: 4px 4px 0 var(--ink);
  background: var(--accent);
}

.oyun-toast {
  position: fixed;
  bottom: 96px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--ink);
  color: var(--paper);
  padding: 10px 18px;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--accent);
  font-family: "Press Start 2P", monospace;
  font-size: 10px;
  letter-spacing: 1px;
  opacity: 0;
  transition: opacity 200ms ease, transform 200ms ease;
  pointer-events: none;
  z-index: 50;
}

.oyun-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* === Archive (arsiv) === */
.arsiv-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--paper);
}

.arsiv-header h2 {
  font-family: "Press Start 2P", monospace;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--paper);
  text-shadow: 2px 2px 0 var(--ink);
}

.arsiv-month {
  background: var(--paper);
  border: 4px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 20px;
  margin-bottom: 24px;
}

.arsiv-month h3 {
  font-family: "Press Start 2P", monospace;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--ink);
  margin-bottom: 14px;
  text-transform: uppercase;
}

.arsiv-cells {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(56px, 1fr));
  gap: 8px;
}

.arsiv-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 8px 4px;
  border: 3px solid var(--ink);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  min-height: 60px;
  box-shadow: 3px 3px 0 var(--ink);
  font-family: "Press Start 2P", monospace;
  font-size: 12px;
}

.arsiv-cell:hover {
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--ink);
}

.arsiv-cell.solved {
  background: var(--bar-hot);
}

.arsiv-cell-num { font-weight: 700; }
.arsiv-cell-status { font-size: 10px; opacity: 0.85; }

.arsiv-cell.in-progress { background: var(--bar-warm); }
.arsiv-cell.solved .arsiv-cell-status { color: var(--ink); font-weight: 700; }
.arsiv-cell.in-progress .arsiv-cell-status { color: var(--ink); }
.arsiv-cell-status { font-family: 'Press Start 2P', monospace; font-size: 9px !important; letter-spacing: 1px; min-height: 12px; }

.arsiv-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 18px;
  padding: 10px 14px;
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  letter-spacing: 1px;
  color: var(--ink);
}
.arsiv-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.arsiv-legend-swatch {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid var(--ink);
}
.arsiv-legend-swatch.swatch-solved { background: var(--bar-hot); }
.arsiv-legend-swatch.swatch-in-progress { background: var(--bar-warm); }
.arsiv-legend-swatch.swatch-untouched { background: var(--paper); }

/* === Result (sonuc) === */
.sonuc {
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.sonuc.active { display: flex; }

.sonuc-card {
  background: var(--paper);
  border: 4px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink), 10px 10px 0 var(--accent);
  padding: 36px 28px;
  text-align: center;
  max-width: 380px;
  width: 100%;
  position: relative;
}

.sonuc-card::before {
  content: "";
  display: block;
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  height: 18px;
  background: repeating-linear-gradient(
    135deg,
    var(--stripe-a) 0,
    var(--stripe-a) 12px,
    var(--stripe-b) 12px,
    var(--stripe-b) 24px
  );
  border: 4px solid var(--ink);
  border-bottom: 0;
}

.sonuc-card > * { margin-top: 8px; }
.sonuc-card > *:first-child { margin-top: 24px; }

.sonuc-celebration {
  font-family: "Press Start 2P", monospace;
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 12px;
}

.sonuc-target {
  font-family: "Press Start 2P", monospace;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--ink);
  margin: 18px 0 8px;
}

.sonuc-stats {
  font-family: "VT323", monospace;
  font-size: 20px;
  letter-spacing: 1px;
  color: var(--ink-soft);
  margin-bottom: 24px;
}

.sonuc-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === Screens share color with background paper === */
.landing { color: var(--paper); }

/* === Modal === */
.sw-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8, 4, 2, 0.78);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 20px;
  animation: swModalFade 140ms ease-out;
}
@keyframes swModalFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}
body.sw-modal-open { overflow: hidden; }
.sw-modal-card {
  position: relative;
  background: #f4ecd4;
  color: #1a1a1a;
  border: 4px solid #1a1a1a;
  box-shadow:
    8px 8px 0 #1a1a1a,
    10px 10px 0 rgba(255, 210, 63, 0.85),
    0 0 60px rgba(255, 140, 40, 0.35);
  width: min(440px, 100%);
  padding: 0;
  animation: swModalPop 180ms cubic-bezier(0.2, 0.9, 0.3, 1.2);
  font-family: 'Handjet', 'VT323', system-ui, monospace;
}
@keyframes swModalPop {
  from { transform: translateY(-12px) scale(0.96); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.sw-modal-stripe {
  height: 16px;
  background: repeating-linear-gradient(
    135deg,
    #ffd23f 0,
    #ffd23f 12px,
    #1a1a1a 12px,
    #1a1a1a 24px
  );
  border-bottom: 4px solid #1a1a1a;
}
.sw-modal-title {
  font-family: 'Press Start 2P', monospace;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 16px 22px 8px;
  color: #1a1a1a;
  margin: 0;
}
.sw-modal-message {
  font-size: 19px;
  line-height: 1.45;
  letter-spacing: 0.5px;
  padding: 14px 22px 22px;
  color: #1a1a1a;
  margin: 0;
}
.sw-modal-buttons {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding: 14px 22px 22px;
  flex-wrap: wrap;
}
.sw-modal-btn {
  font-family: 'Press Start 2P', 'Handjet', monospace;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 11px 18px;
  border: 3px solid #1a1a1a;
  background: #f4ecd4;
  color: #1a1a1a;
  cursor: pointer;
  box-shadow: 4px 4px 0 #1a1a1a;
  transition: transform 80ms ease, box-shadow 80ms ease;
}
.sw-modal-btn:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 #1a1a1a; }
.sw-modal-btn:active { transform: translate(3px, 3px); box-shadow: 1px 1px 0 #1a1a1a; }
.sw-modal-btn:focus-visible { outline: 3px solid #ffd23f; outline-offset: 2px; }
.sw-modal-btn-primary { background: #ffd23f; }
.sw-modal-btn-secondary { background: #f4ecd4; }
.sw-modal-btn-danger   { background: #d44a3f; color: #f4ecd4; }
.sw-modal-btn-warning  { background: #ed7a5a; color: #1a1a1a; }

/* === Win celebration === */
.confetti-host {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 9999;
}
.confetti-piece {
  position: absolute;
  top: -20px;
  width: 10px;
  height: 14px;
  opacity: 0.95;
  animation: confettiFall 2.4s linear forwards;
}
@keyframes confettiFall {
  0%   { transform: translate3d(0, -20px, 0) rotate(0deg); opacity: 1; }
  100% { transform: translate3d(var(--dx, 0), 110vh, 0) rotate(var(--rot, 540deg)); opacity: 0.85; }
}
.sonuc-celebration { font-size: 26px !important; animation: celebrationPop 600ms cubic-bezier(0.2, 0.9, 0.3, 1.4); }
.sonuc-target { font-size: 30px !important; animation: celebrationPop 700ms 100ms cubic-bezier(0.2, 0.9, 0.3, 1.4) backwards; }
@keyframes celebrationPop {
  0%   { transform: scale(0.4); opacity: 0; }
  60%  { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); }
}

/* === Landing — solved pill + countdown to next midnight === */
.solved-pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--bar-hot);
  color: var(--ink);
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  letter-spacing: 1.5px;
  margin-right: 8px;
}
.next-word-timer {
  margin-top: 12px;
  font-family: 'VT323', monospace;
  font-size: 18px;
  color: var(--ink-soft);
  text-align: center;
  letter-spacing: 1px;
}

/* === Mobile-first polish === */
@media (max-width: 600px) {
  body { font-size: 17px; }

  #app { padding: 24px 12px; }

  .landing-title { font-size: 22px; letter-spacing: 2px; }

  .card-inner { padding: 14px 16px; }

  .week-cell { padding: 6px 1px; font-size: 8px; }
  .week-cell-name { font-size: 8px; }
  .week-cell-num { font-size: 12px; }

  .btn { padding: 10px 14px; font-size: 11px; }

  .tip-btn { bottom: 16px; right: 16px; }

  .guess-row { padding: 10px 12px; }
  .guess-row-content { font-size: 18px; }

  .oyun-input { font-size: 18px; padding: 12px; }
  .oyun-form .btn { min-width: 56px; height: 48px; font-size: 12px; padding: 0 14px; }

  .sonuc-card { padding: 24px 18px; }
  .sonuc-target { font-size: 22px !important; }

  .landing-footer { display: flex; }
  .landing-footer .theme-toggle { display: inline-block; }
}

/* === Sikhaz Words Admin === */
.sw-admin { color: var(--paper); width: min(680px, 100%); }
.admin-header { text-align: center; margin-bottom: 24px; }
.admin-title {
  font-family: 'Press Start 2P', monospace;
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--paper);
  text-shadow: 3px 3px 0 var(--ink);
}

.sw-admin-login {
  display: flex;
  gap: 10px;
  background: var(--paper);
  border: 4px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 18px;
  align-items: center;
}

.sw-admin-password {
  flex: 1;
  padding: 12px 14px;
  border: 3px solid var(--ink);
  background: #fff;
  color: var(--ink);
  font-family: 'Handjet', 'VT323', monospace;
  font-size: 20px;
  letter-spacing: 1px;
  outline: none;
}

.sw-admin-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-bottom: 18px;
}

.sw-admin-list {
  background: var(--paper);
  border: 4px solid var(--ink);
  box-shadow: 6px 6px 0 var(--ink);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sw-admin-row {
  display: grid;
  grid-template-columns: 130px 1fr 86px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 2px solid var(--ink);
  background: var(--paper);
  font-family: 'Handjet', 'VT323', monospace;
  font-size: 18px;
}

.sw-admin-row.is-today {
  background: var(--accent);
  border-width: 3px;
  box-shadow: 3px 3px 0 var(--ink);
}

.sw-admin-row.is-past {
  opacity: 0.55;
}

.sw-admin-date { display: flex; flex-direction: column; gap: 2px; }
.sw-admin-dow {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.sw-admin-day {
  font-family: 'VT323', monospace;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: 1px;
}

.sw-admin-target {
  font-family: 'Press Start 2P', monospace;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--ink);
}

.sw-admin-tag {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  color: var(--ink-soft);
  text-align: right;
  text-transform: uppercase;
}

.sw-admin-row.is-today .sw-admin-tag {
  color: var(--ink);
  font-weight: 700;
}

.sw-admin-loading,
.sw-admin-error {
  text-align: center;
  font-family: 'VT323', monospace;
  font-size: 18px;
  color: var(--ink-soft);
  padding: 20px;
}

@media (max-width: 600px) {
  .sw-admin-row { grid-template-columns: 90px 1fr 60px; gap: 6px; padding: 8px 10px; font-size: 15px; }
  .sw-admin-target { font-size: 11px; }
  .sw-admin-day { font-size: 14px; }
  .admin-title { font-size: 14px; letter-spacing: 2px; }
}
