/* ====================================================================
   ŽABA BRNO 2026 - Oficiální mobilní webová aplikace
   Design System & Styling
   Font: IBM Plex Mono
   Primary Theme: #021a0b (Forest Dark), #84cc16 (Frog Green)
   ==================================================================== */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&display=swap');

:root {
  --color-bg-dark: #021a0b;
  --color-card-bg: rgba(9, 36, 17, 0.88);
  
  /* Barevná paleta sekcí */
  --color-zaba-green: #84cc16;
  --color-zaba-green-glow: rgba(132, 204, 22, 0.35);
  
  --color-gold: #f59e0b;
  --color-gold-glow: rgba(245, 158, 11, 0.35);
  
  --color-orange: #fb923c;
  --color-orange-glow: rgba(251, 146, 60, 0.35);
  
  --color-yellow: #facc15;
  --color-yellow-glow: rgba(250, 204, 21, 0.35);
  
  --color-purple: #c084fc;
  --color-purple-glow: rgba(192, 132, 252, 0.35);
  
  --color-spotify: #4ade80;
  --color-spotify-glow: rgba(74, 222, 128, 0.35);
  
  --color-blue: #60a5fa;
  --color-blue-glow: rgba(96, 165, 250, 0.35);
  
  --color-teal: #2dd4bf;
  --color-teal-glow: rgba(45, 212, 191, 0.35);
  
  --color-red: #f87171;
  --color-red-glow: rgba(248, 113, 113, 0.35);
  
  --color-text-main: #f8fafc;
  --color-text-muted: #94a3b8;
  --color-text-dim: #64748b;
  
  --font-mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --radius-xl: 20px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  
  --app-max-width: 430px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  height: 100%;
  min-height: 100%;
  background-color: var(--color-bg-dark);
  color: var(--color-text-main);
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Pozadí s originální grafikou a jemnou texturou */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url('../assets/images/bg.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.45;
  filter: contrast(1.15) brightness(0.85);
  z-index: 0;
  pointer-events: none;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, transparent 20%, rgba(2, 26, 11, 0.85) 90%);
  z-index: 0;
  pointer-events: none;
}

/* Desktop App Container (Mobile First) */
.app-wrapper {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--app-max-width);
  margin: 0 auto;
  min-height: 100vh;
  padding: 14px 14px 40px;
  display: flex;
  flex-direction: column;
}

/* Offline Banner */
.offline-banner {
  display: none;
  background: linear-gradient(135deg, #b45309, #78350f);
  color: #fef3c7;
  padding: 8px 14px;
  border-radius: var(--radius-md);
  font-size: 11px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
  border: 1px solid rgba(245, 158, 11, 0.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  animation: slideDown 0.3s ease-out;
}
.offline-banner.active {
  display: block;
}

/* ====================================================================
   1. HLAVIČKA A LOGO (POŽADAVEK: LEHCE MENŠÍ)
   ==================================================================== */
.app-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 0 14px;
}

.logo-wrapper {
  position: relative;
  display: inline-block;
  cursor: pointer;
  user-select: none;
  transition: transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo-wrapper:active {
  transform: scale(0.92);
}

/* Zmenšené logo podle požadavku (z 250px na 170px) */
.logo-img {
  width: 170px;
  max-width: 52vw;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 14px rgba(132, 204, 22, 0.3));
  animation: logoFloat 5s ease-in-out infinite;
}

.logo-wrapper.easter-egg .logo-img {
  animation: frogFlip 0.8s ease-in-out !important;
}

.event-date-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  background: rgba(132, 204, 22, 0.12);
  border: 1px solid var(--color-zaba-green);
  color: var(--color-zaba-green);
  padding: 5px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 15px rgba(132, 204, 22, 0.2);
}

.live-indicator-dot {
  width: 7px;
  height: 7px;
  background-color: var(--color-zaba-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-zaba-green);
  animation: pulseDot 2s infinite;
}

/* ====================================================================
   SDÍLENÍ A INSTAGRAM
   ==================================================================== */
.actions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}

.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--color-text-main);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: var(--radius-md);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
}

.action-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}
.action-btn:active {
  transform: scale(0.97);
}

/* ====================================================================
   3. AKTUÁLNÍ ZPRÁVA ORGANIZÁTORŮ (VÝRAZNÁ DLAŽDICE CO MOHU PSÁT)
   ==================================================================== */
.announcement-card {
  background: linear-gradient(135deg, rgba(20, 83, 45, 0.8), rgba(6, 26, 12, 0.95));
  border: 1.5px solid var(--color-zaba-green);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  margin-bottom: 14px;
  box-shadow: 0 0 20px rgba(132, 204, 22, 0.28);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  animation: glowPulseCard 4s ease-in-out infinite;
}

.announcement-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-zaba-green);
}

.announcement-card.style-alert {
  border-color: var(--color-red);
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.35);
}
.announcement-card.style-alert::before {
  background: var(--color-red);
}

.announcement-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 6px;
  text-align: center;
}

.announcement-tag {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-zaba-green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.announcement-card.style-alert .announcement-tag {
  color: #f87171;
}

.announcement-text {
  font-size: 13px;
  color: #e2e8f0;
  line-height: 1.45;
  text-align: center;
  font-weight: 500;
}

/* ====================================================================
   2. & 5. DLAŽDICE: VYCENTROVANÉ, VĚTŠÍ NÁPISY, BEZ POPISKU,
   BAREVNÝ RÁMEČEK ODPOVÍDAJÍCÍ IKONĚ A JEMNÁ ANIMACE
   ==================================================================== */
.tiles-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tiles-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

/* Základní dlaždice: vycentrovaná vertikálně i horizontálně */
.tile {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  user-select: none;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
}

.tile:hover {
  transform: translateY(-2px);
}
.tile:active {
  transform: scale(0.97);
}

/* Velký nadpis v dlaždici */
.tile-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-top: 10px;
  line-height: 1.25;
}

/* Plovoucí a svítící ikonka v dlaždici */
.tile-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transition: transform 0.2s ease;
}

/* Specifické barvy rámečků a ikon pro každou dlaždici */

/* 1. NOMINACE (Zlatá) */
.tile-nomination {
  border: 1.5px solid rgba(245, 158, 11, 0.55);
  box-shadow: 0 4px 18px -2px rgba(0, 0, 0, 0.6), 0 0 15px var(--color-gold-glow);
}
.tile-nomination .tile-icon-box {
  background: rgba(245, 158, 11, 0.2);
  color: #fbbf24;
  animation: iconWiggle 3.5s ease-in-out infinite;
}
.tile-nomination .tile-title {
  color: #fbbf24;
}

/* 2. PROGRAM (Zelená) */
.tile-program {
  border: 1.5px solid rgba(132, 204, 22, 0.55);
  box-shadow: 0 4px 18px -2px rgba(0, 0, 0, 0.6), 0 0 15px var(--color-zaba-green-glow);
}
.tile-program .tile-icon-box {
  background: rgba(132, 204, 22, 0.2);
  color: var(--color-zaba-green);
  animation: iconFloat 4s ease-in-out infinite;
}
.tile-program .tile-title {
  color: #ffffff;
}

/* 3. VSTUPNÉ (Fialová) */
.tile-tickets {
  border: 1.5px solid rgba(192, 132, 252, 0.55);
  box-shadow: 0 4px 18px -2px rgba(0, 0, 0, 0.6), 0 0 15px var(--color-purple-glow);
  min-height: 125px;
}
.tile-tickets .tile-icon-box {
  background: rgba(192, 132, 252, 0.2);
  color: #c084fc;
  animation: iconFloat 4.2s ease-in-out infinite;
}

/* 4. MENU (Žlutá) */
.tile-menu {
  border: 1.5px solid rgba(250, 204, 21, 0.55);
  box-shadow: 0 4px 18px -2px rgba(0, 0, 0, 0.6), 0 0 15px var(--color-yellow-glow);
  min-height: 125px;
}
.tile-menu .tile-icon-box {
  background: rgba(250, 204, 21, 0.2);
  color: #facc15;
  animation: iconWiggle 4s ease-in-out infinite;
}

/* 5. TOMBOLA (Oranžová) */
.tile-raffle {
  border: 1.5px solid rgba(251, 146, 60, 0.55);
  box-shadow: 0 4px 18px -2px rgba(0, 0, 0, 0.6), 0 0 15px var(--color-orange-glow);
  min-height: 125px;
}
.tile-raffle .tile-icon-box {
  background: rgba(251, 146, 60, 0.2);
  color: #fb923c;
  animation: iconPulse 3s ease-in-out infinite;
}

/* 6. SONGY (Spotify Zelená) */
.tile-songs {
  border: 1.5px solid rgba(74, 222, 128, 0.55);
  box-shadow: 0 4px 18px -2px rgba(0, 0, 0, 0.6), 0 0 15px var(--color-spotify-glow);
  min-height: 125px;
}
.tile-songs .tile-icon-box {
  background: rgba(74, 222, 128, 0.2);
  color: #4ade80;
  animation: iconFloat 4.5s ease-in-out infinite;
}

/* 7. INFORMACE (Modrá) */
.tile-info {
  border: 1.5px solid rgba(96, 165, 250, 0.55);
  box-shadow: 0 4px 18px -2px rgba(0, 0, 0, 0.6), 0 0 15px var(--color-blue-glow);
  min-height: 125px;
}
.tile-info .tile-icon-box {
  background: rgba(96, 165, 250, 0.2);
  color: #60a5fa;
  animation: iconFloat 4s ease-in-out infinite;
}

/* 8. ZPĚTNÁ VAZBA (Teal) */
.tile-feedback {
  border: 1.5px solid rgba(45, 212, 191, 0.55);
  box-shadow: 0 4px 18px -2px rgba(0, 0, 0, 0.6), 0 0 15px var(--color-teal-glow);
  min-height: 125px;
}
.tile-feedback .tile-icon-box {
  background: rgba(45, 212, 191, 0.2);
  color: #2dd4bf;
  animation: iconPulse 3.5s ease-in-out infinite;
}

/* 9. KDE TO JE? (Červená) */
.tile-location {
  border: 1.5px solid rgba(248, 113, 113, 0.55);
  box-shadow: 0 4px 18px -2px rgba(0, 0, 0, 0.6), 0 0 15px var(--color-red-glow);
}
.tile-location .tile-icon-box {
  background: rgba(248, 113, 113, 0.2);
  color: #f87171;
  animation: iconFloat 3.8s ease-in-out infinite;
}
.tile-location .tile-title {
  color: #ffffff;
}

/* ====================================================================
   6. MODAL POPUP UPROSTŘED DISPLEJE (CENTERED POPUP WINDOW)
   ==================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
  display: flex;
  align-items: center; /* ZAROVNÁNÍ DOPROSTŘED DISPLEJE */
  justify-content: center;
  padding: 16px;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* Dialog uprostřed displeje */
.modal-popup {
  width: 100%;
  max-width: 420px;
  max-height: 82vh;
  background: #081e10;
  border: 1.5px solid var(--color-zaba-green);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  transform: scale(0.92);
  transition: transform 0.24s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.85), 0 0 30px rgba(132, 204, 22, 0.25);
  overflow: hidden;
}

.modal-overlay.open .modal-popup {
  transform: scale(1);
}

.popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.25);
}

.popup-title {
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.popup-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #94a3b8;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s;
}
.popup-close-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.popup-content {
  padding: 18px 20px 24px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  max-height: calc(82vh - 65px);
}

.popup-content::-webkit-scrollbar {
  width: 4px;
}
.popup-content::-webkit-scrollbar-thumb {
  background: rgba(132, 204, 22, 0.35);
  border-radius: 4px;
}

/* ====================================================================
   TIMELINE, VSTUPNÉ, MENU, TOMBOLA & INFO UVNITŘ MODALŮ
   ==================================================================== */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 55px;
  width: 2px;
  background: rgba(255, 255, 255, 0.08);
}
.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  position: relative;
  cursor: pointer;
}
.timeline-time {
  width: 46px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-zaba-green);
  text-align: right;
  flex-shrink: 0;
  padding-top: 2px;
}
.timeline-marker {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #081e10;
  border: 2px solid var(--color-zaba-green);
  position: absolute;
  left: 49px;
  top: 4px;
  z-index: 2;
  transition: all 0.2s;
}
.timeline-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  margin-left: 20px;
  transition: all 0.2s;
}
.timeline-item:hover .timeline-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(132, 204, 22, 0.3);
}
.timeline-title {
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
}
.timeline-desc {
  font-size: 11px;
  color: var(--color-text-muted);
  margin-top: 6px;
  display: none;
  line-height: 1.45;
}
.timeline-item.expanded .timeline-desc {
  display: block;
}
.timeline-item.past {
  opacity: 0.45;
}
.timeline-item.past .timeline-marker {
  border-color: #64748b;
  background: #64748b;
}
.timeline-item.current .timeline-card {
  border-color: var(--color-zaba-green);
  background: rgba(132, 204, 22, 0.15);
  box-shadow: 0 0 15px rgba(132, 204, 22, 0.25);
}
.timeline-item.current .timeline-marker {
  background: var(--color-zaba-green);
  box-shadow: 0 0 10px var(--color-zaba-green);
  animation: pulseDot 1.5s infinite;
}

/* Vstupné */
.ticket-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ticket-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.2s;
}
.ticket-card.color-orange { border-color: rgba(249, 115, 22, 0.4); }
.ticket-card.color-green { border-color: rgba(132, 204, 22, 0.4); }
.ticket-card.color-gold {
  border-color: rgba(245, 158, 11, 0.6);
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(0, 0, 0, 0.3));
}
.ticket-card.color-platinum {
  border-color: rgba(226, 232, 240, 0.7);
  background: linear-gradient(135deg, rgba(226, 232, 240, 0.15), rgba(0, 0, 0, 0.4));
  box-shadow: 0 0 20px rgba(226, 232, 240, 0.15);
}
.ticket-header-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.ticket-price {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
}
.ticket-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
}
.ticket-details {
  font-size: 11px;
  color: #cbd5e1;
  margin-top: 8px;
  display: none;
  line-height: 1.5;
}
.ticket-card.expanded .ticket-details {
  display: block;
}
.ticket-perks-list {
  list-style: none;
  margin-top: 6px;
}
.ticket-perks-list li {
  position: relative;
  padding-left: 14px;
  margin-bottom: 4px;
}
.ticket-perks-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-zaba-green);
  font-weight: 700;
}
.ticket-cta-btn {
  display: block;
  width: 100%;
  margin-top: 18px;
  background: var(--color-zaba-green);
  color: #021a0b;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(132, 204, 22, 0.35);
  transition: all 0.2s ease;
}
.ticket-cta-btn:hover {
  background: #a3e635;
  transform: translateY(-2px);
}

/* Menu */
.menu-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 8px;
  overflow-x: auto;
}
.menu-tab-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--color-text-muted);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s;
}
.menu-tab-btn.active {
  background: rgba(132, 204, 22, 0.2);
  border-color: var(--color-zaba-green);
  color: var(--color-zaba-green);
}
.menu-category-pane {
  display: none;
  flex-direction: column;
  gap: 10px;
}
.menu-category-pane.active {
  display: flex;
}
.menu-item-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
}
.menu-item-row.sold-out {
  opacity: 0.6;
  border-color: rgba(239, 68, 68, 0.4);
  background: rgba(239, 68, 68, 0.05);
}
.menu-item-left { flex: 1; }
.menu-item-name { font-size: 13px; font-weight: 700; color: #ffffff; }
.menu-item-desc { font-size: 11px; color: var(--color-text-muted); margin-top: 2px; }
.menu-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  flex-shrink: 0;
}
.menu-item-price { font-size: 13px; font-weight: 700; color: var(--color-zaba-green); }
.sold-out-badge {
  background: #ef4444;
  color: #ffffff;
  font-size: 9px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* Tombola */
.raffle-banner {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.2), rgba(9, 36, 17, 0.8));
  border: 1px solid rgba(249, 115, 22, 0.5);
  border-radius: var(--radius-md);
  padding: 14px;
  text-align: center;
  margin-bottom: 16px;
}
.raffle-price-tag {
  font-size: 18px;
  font-weight: 700;
  color: #fb923c;
  text-transform: uppercase;
}
.raffle-prizes-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.raffle-prize-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
}
.raffle-num {
  font-size: 14px;
  font-weight: 700;
  color: #f97316;
  width: 28px;
  text-align: center;
}
.raffle-title { font-size: 12px; font-weight: 600; color: #ffffff; flex: 1; }

/* Info harmonika */
.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.info-accordion {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.info-accordion-head {
  padding: 14px 16px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.info-accordion-body {
  padding: 0 16px 14px;
  font-size: 12px;
  color: #cbd5e1;
  line-height: 1.5;
  display: none;
}
.info-accordion.open .info-accordion-body {
  display: block;
}

/* Toast */
.toast-msg {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(15, 23, 42, 0.95);
  border: 1px solid var(--color-zaba-green);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2000;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}
.toast-msg.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Zápatí */
.app-footer {
  margin-top: 24px;
  text-align: center;
  font-size: 11px;
  color: var(--color-text-dim);
}
.footer-zaba-brand {
  color: var(--color-zaba-green);
  font-weight: 700;
  animation: glowPulse 3s ease-in-out infinite;
}

/* ====================================================================
   ANIMACE IKON A EFEKTŮ
   ==================================================================== */
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes frogFlip {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.15); }
  100% { transform: rotate(360deg) scale(1); }
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes iconWiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 10px rgba(132, 204, 22, 0.4); opacity: 1; }
  50% { text-shadow: 0 0 20px rgba(132, 204, 22, 0.8); opacity: 0.85; }
}

@keyframes glowPulseCard {
  0%, 100% { box-shadow: 0 0 15px rgba(132, 204, 22, 0.25); }
  50% { box-shadow: 0 0 24px rgba(132, 204, 22, 0.45); }
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
