/* ----------------- CHRISTMAS (VÁNOČNÍ) POZADÍ ----------------- */
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  height: 100%;
  overflow: hidden;
  /* POZADÍ: Elegantní hluboká červená (Santa/Disney Red) přecházející do tmy */
    background: radial-gradient(circle at 50% 0%, #5e0a0a 0%, #2b0505 60%, #0d0202 100%);
    background-attachment: fixed; /* Pozadí se při scrollu nehýbe */
    color: #fff;
    position: relative;
}
/* Sníh - Vrstva 1 (Malé vločky) */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(3px 3px at 10% 10%, rgba(255, 255, 255, 0.8) 50%, transparent),
    radial-gradient(3px 3px at 20% 40%, rgba(255, 255, 255, 0.6) 50%, transparent),
    radial-gradient(2px 2px at 30% 70%, rgba(255, 255, 255, 0.7) 50%, transparent),
    radial-gradient(3px 3px at 40% 20%, rgba(255, 255, 255, 0.8) 50%, transparent),
    radial-gradient(2px 2px at 60% 80%, rgba(255, 255, 255, 0.6) 50%, transparent),
    radial-gradient(3px 3px at 70% 30%, rgba(255, 255, 255, 0.7) 50%, transparent),
    radial-gradient(2px 2px at 80% 50%, rgba(255, 255, 255, 0.8) 50%, transparent),
    radial-gradient(2px 2px at 90% 10%, rgba(255, 255, 255, 0.6) 50%, transparent);
  background-size: 400px 400px;
  opacity: 0.6;
  z-index: 0;
  pointer-events: none;
}

/* Sníh - Vrstva 2 (Větší vločky / Záře) */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 15% 15%, rgba(255, 215, 0, 0.15) 0%, transparent 20%), /* Zlatá záře */
    radial-gradient(circle at 85% 85%, rgba(255, 0, 0, 0.05) 0%, transparent 25%); /* Červená záře */
  z-index: 0;
  pointer-events: none;
}

.app {
  display: flex;
  height: 100vh;
}

/* ----------------- SIDEBAR (Levý panel - SKLENĚNÝ EFEKT) ----------------- */
.sidebar {
    width: 340px;
    /* Skleněný efekt (Glassmorphism) - ladí s jakýmkoliv pozadím */
    background: rgba(20, 10, 10, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-right: 1px solid rgba(255, 215, 0, 0.2); /* Jemná zlatá linka */
    
    color: #e0e0e0;
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    gap: 20px;
    box-shadow: 5px 0 25px rgba(0,0,0,0.5);
    z-index: 10;
}

.sidebar-inner {
  flex: 1;
  overflow-y: auto;
  padding-right: 4px;
}

/* Scrollbar ve stylu Candy Cane / Zlato */
.sidebar-inner::-webkit-scrollbar {
  width: 8px;
}
.sidebar-inner::-webkit-scrollbar-track {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
}
.sidebar-inner::-webkit-scrollbar-thumb {
  /* Zlatý scrollbar */
  background: linear-gradient(180deg, #d4af37 0%, #f1c40f 50%, #d4af37 100%);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.15);
}
.sidebar-inner::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #edd779 0%, #ffdf60 50%, #edd779 100%);
}

/* ----------------- LOGO HEADER ----------------- */
.logo {
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 20px;
}

.logo h2 {
    font-size: 2rem;
    color: #fff;
    margin: 0;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.6); /* Zlatá záře */
    letter-spacing: 1px;
}

.logo .slogan {
    font-size: 0.85rem;
    color: #ffd700; /* Zlatá */
    opacity: 0.8;
    margin-top: 5px;
    font-style: italic;
}
/* Mobile Skip Link (pro předchozí úpravu HTML) */
.mobile-skip-link {
    display: none;
    font-size: 0.8rem;
    color: #f1c40f;
    text-decoration: underline;
    margin-top: 5px;
}


/* ----------------- SIDEBAR SECTIONS ----------------- */
.sidebar-section h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 6px;
  color: #d4af37; /* Zlatá */
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  padding-bottom: 4px;
  opacity: 1;
}

.sidebar-section label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 500;
  font-size: 13px;
  transition: background 0.2s;
  margin-bottom: 3px;
  color: #e0f2f1; /* Ledově bílá */
}
.sidebar-section label:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.sidebar-section input[type="checkbox"] {
  display: none;
}
/* Checkbox jako ozdoba */
.sidebar-section input[type="checkbox"] + span {
  width: 18px;
  height: 18px;
  border: 2px solid #a5bca5;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  background: rgba(0,0,0,0.2);
  transition: all 0.2s ease;
}
.sidebar-section input[type="checkbox"]:checked + span {
  background-color: #d32f2f; /* Červená koule */
  border-color: #f1c40f; /* Zlatý okraj */
  box-shadow: 0 0 5px #d32f2f;
}

/* Controls buttons */
.sidebar-section .controls {
  display: flex;
  justify-content: flex-start;
  gap: 6px;
  margin-bottom: 8px;
}
.sidebar-section .controls button {
  flex: 1;
  padding: 6px 0;
  font-size: 11px;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  color: #aebdb5;
  cursor: pointer;
  transition: all 0.2s;
}
.sidebar-section .controls button:hover {
  background: #d4af37;
  color: #0f3d26;
}

/* Show more series */
.more-series {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding-top: 0;
}
.more-series.show {
  max-height: 1000px;
  padding-top: 6px;
}

.show-more-btn {
  margin-top: 8px;
  width: 100%;
  border: 1px dashed rgba(255,255,255,0.2);
  background: transparent;
  color: #f9e7a3;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  text-align: center;
  padding: 6px 0;
  border-radius: 8px;
  transition: all 0.25s ease;
}
.show-more-btn:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: #fff;
}

/* ----------------- HLAVNÍ OBSAH ----------------- */
.main-content {
  flex: 1;
  padding: 50px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: ini;
  z-index: 1;
  
  /* Prohození pro mobil - viz tvůj předchozí požadavek */
}

/* Responsivita pro layout (PC vs Mobil) */
@media (max-width: 768px) {
  .app {
    flex-direction: column;
    height: auto;
    overflow: visible;
  }
  .main-content {
    order: 1;
    padding: 20px;
    height: auto;
    overflow: visible;
  }
  .sidebar {
    order: 2;
    width: 100%;
    border-right: none;
    border-top: 2px solid #d4af37;
    height: auto;
    overflow: visible;
  }
}

.main-content h1 {
  margin-top: 0;
  color: #f1c40f; /* Zlatá */
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  font-size: 28px;
  text-align: center;
  font-family: 'Poppins', serif; /* Trochu elegantnější font */
}

#generateBtn {
  padding: 16px 36px;
  border: 2px solid #fff;
  border-radius: 50px;
  /* Vánoční červená */
  background: linear-gradient(135deg, #d32f2f, #b71c1c);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
}
#generateBtn:hover {
  background: linear-gradient(135deg, #e53935, #c62828);
  transform: scale(1.04);
  box-shadow: 0 0 15px rgba(255, 59, 59, 0.6);
}

/* ----------------- EPISODE CARDS ----------------- */
.episode-container {
  width: 100%;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Placeholder */
.placeholder-state {
    text-align: center;
    color: #e0e0e0;
    padding: 40px;
    border: 2px dashed rgba(255,255,255,0.3);
    border-radius: 20px;
    background: rgba(0,0,0,0.2);
}
.tv-icon { font-size: 3rem; margin-bottom: 10px; opacity: 0.8; }

.episode-card {
  background: linear-gradient(135deg, #5c1b1b, #3e1212);
  color: #fff;
  border-radius: 14px;
  border: 1px solid #d4af37;
  overflow: hidden;
  margin-top: 25px;
  width: 100%;
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;

  /* ▶️ Pevná výška karty */
  height: 650px;

  /* ▶️ Flex pro rozdělení na obrázek + obsah */
  display: flex;
  flex-direction: column;
}

/* Mašlička */
.episode-card::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 20px;
    width: 30px;
    height: 50px;
    background: #d4af37;
    z-index: 2;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}
.episode-card::after {
    content: "";
    position: absolute;
    top: 30px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, #d4af37, #f1c40f);
    transform: rotate(45deg);
    z-index: 2;
    border-radius: 0 0 50% 50%;
}



/* Obrázek – pevná výška */
.episode-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-bottom: 4px solid #d4af37;
  flex-shrink: 0;
}

/* Info část musí vyplnit zbytek místa */
.episode-info {
  padding: 20px 25px;

  /* ▶️ Zbytek místa v kartě */
  flex: 1;

  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.episode-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: #f1c40f;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
}
.episode-series {
  font-size: 14px;
  color: #ffcccc;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Popis – vlastní scroll, fixní prostor */
.episode-description {
  font-size: 14px;
  color: #e0e0e0;
  line-height: 1.5;
  margin-bottom: 20px;

  /* ▶️ Scrollovací oblast */
  flex: 1;
  overflow-y: auto;
  padding-right: 6px;
}

/* Badges */
.episode-badge {
  display: inline-block;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 12px;
  color: #fff;
  margin-bottom: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}
.episode-badge.halloween { background: #e67e22; color: #fff; }
.episode-badge.christmas { background: #2e7d32; border: 1px solid #81c784; }
.episode-badge.crossover { background: #6a1b9a; }
.episode-badge.finale { background: #c62828; }

/* Tlačítko */
.watch-link {
  display: block;
  text-align: center;
  padding: 12px 16px;
  border-radius: 8px;
  background: #fff;
  color: #b71c1c;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;

  /* ▶️ Tlačítko musí být na konci */
  flex-shrink: 0;
}
.watch-link:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}

/* ----------------- FOOTER ELEMENTS ----------------- */
.donate-section {
    margin-top: 40px;
    padding: 15px 30px;
    background: rgba(0,0,0,0.3);
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.donate-section a {
    text-decoration: none;
    color: #ffd700;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.1);
    padding: 8px 20px;
    border-radius: 20px;
    transition: background 0.3s;
}
.donate-section a:hover {
    background: rgba(255,255,255,0.2);
}

/* ----------------- FOOTER / REPORT ----------------- */
.report-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 30px;
  cursor: pointer;
  backdrop-filter: blur(5px);
  z-index: 100;
}
.report-btn:hover {
  background: rgba(255,255,255,0.2);
}

.legal-footer {
    margin-top: 40px;
    font-size: 0.7rem;
    color: rgba(255,255,255,0.5);
    text-align: center;
    padding-bottom: 20px;
}

/* ----------------- ISSUE PAGE STYLING ----------------- */
.issue-page {
    background: radial-gradient(circle at 50% 0%, #5e0a0a 0%, #2b0505 60%, #0d0202 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.issue-container {
    background: rgba(20, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid #ffd700;
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
}

.issue-container h1 { color: #ffd700; text-align: center; margin-top: 0; }
.issue-container p { color: #ccc; text-align: center; }

.issue-container input, 
.issue-container textarea {
    width: 100%;
    background: rgba(255,255,255,0.05);
    border: 1px solid #555;
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-family: inherit;
}

.issue-container input:focus, 
.issue-container textarea:focus {
    outline: none;
    border-color: #ffd700;
    background: rgba(255,255,255,0.1);
}

.issue-submit {
    width: 100%;
    background: #d32f2f;
    color: #fff;
    border: none;
    padding: 15px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
}
.issue-submit:hover { background: #b71c1c; }

.back-link {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #888;
    text-decoration: none;
}
.back-link:hover { color: #fff; }

/* Placeholder styly - NEUTRÁLNÍ VERZE (Pro standardní epizody) */
.episode-image-placeholder {
    width: 100%;
    height: 250px; /* Musí odpovídat výšce obrázku */
    /* Teplý tmavý gradient (skoro černá/tmavě hnědá, lépe ladí k vínové) */
    background: linear-gradient(135deg, #1f1c1c, #332d2c);
    color: #ecf0f1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* Akcentní linka (jasná červená, která ladí k vánočnímu motivu) */
    border-bottom: 4px solid #ff3333; 
    font-family: 'Poppins', sans-serif;
}

.episode-image-placeholder .placeholder-icon {
    font-size: 4rem; 
    margin-bottom: 10px;
    /* Barva ikony odpovídající akcentu */
    color: #ff5252; 
    line-height: 1; 
}

.episode-image-placeholder .placeholder-text {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #ecf0f1;
}

.episode-image-placeholder .placeholder-subtitle {
    font-size: 1rem;
    font-weight: 500;
    margin: 5px 0 0 0;
    color: #bdc3c7;
}

/* Ujistěte se, že obrázky, pokud se načtou, mají správnou výšku */
.episode-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  /* Linka pod obrázkem, aby odpovídala placeholderu */
  border-bottom: 4px solid #ff3333; 
}

/* ----------------- MOBILNÍ TLAČÍTKA ----------------- */

/* Základní stav: Skryto na Desktopu */
.filter-toggle-btn,
.close-btn {
    display: none; 
}

/* 1. Tlačítko pro OTEVŘENÍ FILTRŮ (#openSidebarBtn) */
.filter-toggle-btn {
    /* Vánoční/Zlatý motiv */
    background: linear-gradient(135deg, #d4af37, #f1c40f); /* Zlatý gradient */
    color: #420b0b; /* Tmavá barva textu, aby se hodila ke zlaté */
    border: none;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: transform 0.2s;
}

.filter-toggle-btn:active {
    transform: scale(0.98);
}


/* 2. Tlačítko pro ZAVŘENÍ MENU (#closeSidebarBtn) */
.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    color: #f7e7a0; /* Krémově bílá/Zlatá */
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 1002; /* Bude vždy nad obsahem sidebaru */
}
.close-btn:hover {
    color: #fff;
}


/* ----------------- MOBILNÍ ZOBRAZENÍ (Aktivuje se POUZE na mobilu) ----------------- */
@media (max-width: 768px) {
    
    /* OPRAVA 1: POVOLENÍ SCROLLOVÁNÍ HLAVNÍHO OBSAHU */
    /* Zruší globální 'overflow: hidden' a fixní výšku, aby se stránka mohla roztáhnout a scrollovat. */
    html, body {
        height: auto; /* Povolit roztáhnutí obsahu */
        overflow: auto; /* Povolit scrollování celého okna prohlížeče */
        overflow-x: hidden; /* Zabrání nechtěnému horizontálnímu scrollování */
    }

    .app {
        flex-direction: column;
        height: auto;
        overflow: visible;
    }

    /* OPRAVA 3: VZHLED A VELIKOST TLAČÍTKA */
    .filter-toggle-btn {
        display: block; 
        width: 90%;
        margin: 20px auto 30px auto; /* Více místa kolem tlačítka */
        
        /* Zvětšení tlačítka */
        padding: 12px 20px; 
        font-size: 16px;
    }
    
    .close-btn {
        display: block;
    }
    
    /* OPRAVA 1: SIDEBAR (FILTRY) */
    .sidebar {
        position: fixed; 
        top: 0;
        left: 0;
        width: 100%;
        max-width: 300px;
        height: 100vh; /* Zachování plné výšky okna pro vysunutí */
        transform: translateX(-100%); 
        transition: transform 0.3s ease-in-out;
        z-index: 1001; 
        
        /* Důležité: Flexbox a 100vh zajistí, že se .sidebar-inner může scrollovat */
        display: flex; /* Zajištění flexboxu, pokud by nebyl přenesen z globálního CSS */
        flex-direction: column;
    }

    /* Scrollable oblast sidebaru */
    .sidebar-inner {
        /* Musí zabírat zbývající prostor a mít vlastní scrollbar */
        flex: 1;
        overflow-y: auto;
        padding-right: 4px; /* Zachování mezery pro scrollbar */
        padding-bottom: 50px;
        margin-top: 25px;
    }

    /* 2. AKTIVNÍ STAV: Zobrazí panel (přidáno JS) */
    .sidebar.open {
        transform: translateX(0); 
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    }
    
    /* 3. MAIN CONTENT: Oprava scrollování */
    .main-content {
        order: 1;
        width: 100%;
        /* Odstranění min-height: 100vh a overflow-y: auto - nyní se scrolluje celý body */
        padding: 20px 10px;
    }
    .episode-card {
      height: 650px;
      width: 400px; /* můžeš upravit pro mobily */
    }
    
  }
  /* ----------------- ISSUE PAGE (Modern Christmas Theme) ----------------- */

/* Základní rozložení pro issue.html */
.issue-page {
  /* Stejné pozadí jako hlavní stránka pro konzistenci */
  background: linear-gradient(135deg, #420b0b 0%, #1a472a 100%);
  color: #fff;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  position: relative;
  overflow-y: auto; /* Povolit scroll, kdyby byl formulář dlouhý */
  padding: 20px;
}

/* Kontejner formuláře - "Skleněný efekt" + Vánoční nádech */
.issue-container {
  background: rgba(15, 61, 38, 0.95); /* Hluboká lesní zelená */
  padding: 40px;
  border-radius: 20px;
  width: 100%;
  max-width: 550px;
  
  /* Zlatý rámeček a stín */
  border: 1px solid #d4af37;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(212, 175, 55, 0.2);
  
  position: relative;
  z-index: 10;
  animation: popIn 0.6s ease-out;
}

/* Nadpisy */
.issue-container h1 {
  text-align: center;
  margin-top: 0;
  margin-bottom: 10px;
  color: #f1c40f; /* Zlatá */
  font-size: 2rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.issue-container p {
  text-align: center;
  color: #e0f2f1; /* Ledově bílá */
  font-size: 0.95rem;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* Vstupní pole (Input & Textarea) */
.issue-container textarea,
.issue-container input {
  width: 100%;
  margin-bottom: 15px;
  padding: 15px;
  border-radius: 12px;
  
  /* Tmavé poloprůhledné pozadí */
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.2);
  
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  resize: vertical; /* Povolit změnu velikosti jen na výšku */
}

/* Efekt při psaní (Focus) */
.issue-container textarea:focus,
.issue-container input:focus {
  outline: none;
  border-color: #f1c40f; /* Zlatý rámeček při psaní */
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 10px rgba(241, 196, 15, 0.3);
}

/* Placeholder text */
.issue-container ::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Tlačítko Odeslat */
.issue-submit {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  border: none;
  
  /* Výrazný červeno-oranžový gradient */
  background: linear-gradient(135deg, #d32f2f, #b71c1c);
  color: #fff;
  
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(211, 47, 47, 0.4);
}

.issue-submit:hover {
  background: linear-gradient(135deg, #e53935, #c62828);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(211, 47, 47, 0.6);
}

.issue-submit:active {
  transform: translateY(1px);
}

.issue-submit:disabled {
  background: #555;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Zpráva o stavu (Úspěch/Chyba) */
.status {
  text-align: center;
  margin-top: 15px;
  font-weight: 600;
  min-height: 20px; /* Aby text neskákal */
}

/* Odkaz zpět */
.back-link {
  display: block;
  text-align: center;
  margin-top: 25px;
  color: #f1c40f; /* Zlatá */
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.back-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* Animace příletu */
@keyframes popIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes snowFall {
    0% { background-position: 0 0; }
    100% { background-position: 50px 500px; }
}