/* =========================
   ORDO DRACONIS – REBORN STYLE
   Dark fantasy / nostalgia
   ========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow: hidden;
}
body {
  margin: 0;
  background: #000000;
  color: #d4af37;
  font-family: "Georgia", "Times New Roman", serif;
}


.hero-bg {
  flex: 1;
  height: 100vh;
  background: url("../img/war.webp") center top / cover no-repeat;
  position: relative;
}
.hero-server {
  background-image: url("../img/ee.png");
}
.hero-start {
  background-image: url("../img/nm.png");
}

.hero-world {
  background-image: url("../img/elf.webp");
  }
 .hero-donate {
  background-image: url("../img/donate.png");
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.5) 25%,
    rgba(0,0,0,0.5) 40%,
    rgba(0,0,0,0.85) 80%,
    #000 100%
  );
  pointer-events: none;
}
/* =========================
   NAVIGATION
   ========================= */
nav a:hover {
    color: #ffffff;
}

/* =========================
   MAIN CONTENT
   ========================= */

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 40px;
}

h1, h2, h3, h4 {
    font-weight: normal;
    letter-spacing: 1px;
    color: #d4af37;
}

h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

h2 {
    font-size: 26px;
    margin-bottom: 15px;
}

p {
    color: #bfb8a0;
    margin-bottom: 20px;
}

/* =========================
   TABLES (RATES)
   ========================= */

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 30px;
}

th, td {
    border: 1px solid #3a3322;
    padding: 12px 15px;
}

th {
    background-color: #111614;
    color: #d4af37;
    font-weight: normal;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================
   EVENTS
   ========================= */

.event {
    background-color: #0f1412;
    border: 1px solid #2f2a1d;
    padding: 25px;
    margin-bottom: 25px;
}

/* =========================
   FOOTER
   ========================= */

footer {
    border-top: 1px solid #3a3322;
    padding: 25px;
    text-align: center;
    font-size: 14px;
    color: #8f876b;
}
nav {
    margin-top: 20px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav a {
    color: #d4af37;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

nav a:hover {
    color: #000000;
}
.layout {
  display: flex;
  width: 100vw;
  height: 100vh;
}


.right {
  width: 900px;
  padding: 40px 40px;
  position: relative; /* DŮLEŽITÉ */
  display: flex;
  flex-direction: column;
}
.side-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  margin-bottom: 40px;
}

.side-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}
.side-nav a {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.side-nav a:hover {
  color: #ffffff;
  text-shadow: 0 0 6px rgba(255,255,255,0.4);
}
.side-logo {
  font-family: 'Cinzel', serif;
  font-size: 46px;
  letter-spacing: 7px;        /* víc „epické“ */
  text-transform: uppercase;
  color: #d4af37;

  /* jemná fantasy záře */
  text-shadow:
    0 0 4px rgba(212,175,55,0.35),
    0 0 10px rgba(212,175,55,0.25),
    0 0 20px rgba(212,175,55,0.15);

  margin-bottom: 40px;
}
.side-logo:hover {
  text-shadow:
    0 0 6px rgba(212,175,55,0.45),
    0 0 14px rgba(212,175,55,0.35);
}
.side-header .side-logo {
  text-shadow: 0 0 12px red;
}
.top-actions {
  text-align: right;
}
.right-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.top-actions .auth {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 8px;
}
.auth-buttons {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-bottom: 8px;
}
/* ============================
   AUTH PAGE – BACKGROUND EMBLEM
   ============================ */

.auth-page {
    position: relative;
    min-height: 100vh;
    background-color: #000;
    overflow: hidden;
}

.auth-page::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url("/img/clan-emblem.png");
    background-repeat: no-repeat;
    background-position: center 35%;
    background-size: 70%;

    opacity: 0.12;
    pointer-events: none;
    z-index: 0;
}
/* Na některých stránkách nechceme emblem z auth-page (už máme .right::before) */
body.no-auth-emblem::before {
  display: none !important;
  content: none !important;
}

.auth-page .main-header,
.auth-page .top-bar {
    position: relative;
    z-index: 3;
}
.auth-page .logo a,
.auth-page .side-logo a,
.auth-page .main-header .logo a {
    color: #d4af37 !important;
    text-decoration: none;
    font-family: 'Cinzel', serif;
    letter-spacing: 7px;
    text-transform: uppercase;

    text-shadow:
        0 0 4px rgba(212,175,55,0.35),
        0 0 10px rgba(212,175,55,0.25),
        0 0 20px rgba(212,175,55,0.15);

    position: relative;
    z-index: 3; /* NAD tlačítky */
}
.auth-page .logo a:visited,
.auth-page .side-logo a:visited {
    color: #d4af37;
}
.auth-container {
    background: rgba(0, 0, 0, 0.55);
    padding: 40px;
    border-radius: 6px;
}
.auth-page .auth-container {
    max-width: 520px;
    margin-top: 130px;

    background: linear-gradient(
        to bottom,
        rgba(15, 15, 15, 0.85),
        rgba(5, 5, 5, 0.85)
    );

    border: 1px solid rgba(212,175,55,0.25);
    box-shadow:
        0 0 20px rgba(0,0,0,0.9),
        0 0 40px rgba(212,175,55,0.08);

    padding: 44px;
}
.auth-page::after { 
  display: none !important;
}

.auth-page input[type="email"],
.auth-page input[type="password"] {
    width: 100%;
    background: #0e0d0d;
    border: 1px solid #554827;

    color: #e6d8a3;
    padding: 10px 12px;
    font-size: 14px;
    font-family: inherit;

    transition:
        border-color 0.3s,
        box-shadow 0.3s,
        background 0.3s;
}
.auth-page input:focus {
    outline: none;
    background: #0f0e0e;

    border-color: #d4af37;
    box-shadow:
        0 0 0 1px rgba(129, 110, 45, 0.35),
        0 0 10px rgba(212,175,55,0.15);
}
.auth-page .btn-primary {
    width: 100%;
    margin-top: 18px;

    background: linear-gradient(
        to bottom,
        #1a1a1a,
        #0d0d0d
    );

    border: 1px solid #3a3322;
    color: #d4af37;

    padding: 12px 0;
    letter-spacing: 2px;
    text-transform: uppercase;

    transition:
        background 0.3s,
        box-shadow 0.3s,
        border-color 0.3s;
}
.auth-page .btn-primary:hover {
    background: linear-gradient(
        to bottom,
        #2a2a2a,
        #141414
    );

    border-color: #d4af37;
    box-shadow:
        0 0 12px rgba(212,175,55,0.25);
}

.btn-secondary {
  background: transparent;
  border: 1px solid #caa24d;
}


.auth-page .form-error {
    margin-top: 10px;
    color: #d4af37;
    font-size: 13px;
    opacity: 0.85;
}
.auth-page h1 {
    font-size: 44px;
    letter-spacing: 2px;
    margin-bottom: 16px;

    text-shadow:
        0 0 8px rgba(212,175,55,0.25);
}
.auth-page .auth-footer a {
    color: #9f9f9f;
    text-decoration: none;
    transition: color 0.3s, text-shadow 0.3s;
}
.auth-page .auth-footer a:hover {
    color: #d4af37;
    text-shadow: 0 0 6px rgba(212,175,55,0.35);
}

.auth-page .auth .btn,
.auth-page .top-actions .btn {
    background: linear-gradient(to bottom, #111, #0b0b0b);
    border: 1px solid #3a3322;
    color: #d4af37;

    padding: 10px 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;

    box-shadow:
        0 0 10px rgba(0,0,0,0.8),
        inset 0 0 0 rgba(212,175,55,0);

    transition:
        border-color 0.3s,
        box-shadow 0.3s,
        background 0.3s;
}
.auth-page .auth .btn {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;

    font-family: 'Cinzel', serif;
}
.auth-page .auth .btn:hover,
.auth-page .top-actions .btn:hover {
    border-color: #d4af37;
    background: linear-gradient(to bottom, #1a1a1a, #111);

    box-shadow:
        0 0 14px rgba(212,175,55,0.25),
        inset 0 0 12px rgba(212,175,55,0.08);
}

.bug-message {
  background: rgba(0,0,0,.4);
  border: 1px solid #caa24d;
  padding: 10px;
  margin-bottom: 15px;
}

.bug-user-message {
  margin: 20px 0 30px;
  padding: 18px 20px;
  border: 1px solid #caa24d;
  background: rgba(0,0,0,0.55);
}

.bug-user-message h3 {
  margin: 0 0 12px;
  color: #caa24d;
  font-size: 18px;
}

.bug-user-message pre {
  margin: 0;
  color: #f0e6b8;
  font-size: 15px;
  line-height: 1.5;
  white-space: pre-wrap;
}

/* ===== BUG STATUS BADGES ===== */

.status-badge {
  display: inline-block;
  padding: 4px 10px;
  font-size: 12px;
  letter-spacing: 1px;
  border-radius: 4px;
  border: 1px solid #a88b2a;
  background: rgba(0,0,0,0.6);
  color: #d4af37;
  text-transform: uppercase;
}

/* NEW – beze změny */
.status-new {
  opacity: 0.9;
}

/* IN PROGRESS – modro-zlatý nádech */
.status-in_progress {
  border-color: #3a6ea5;
  color: #7fb6ff;
}

/* RESOLVED – zelená */
.status-resolved {
  border-color: #3fa96c;
  color: #6fffa1;
  box-shadow: 0 0 6px rgba(111,255,161,0.3);
}

/* CLOSED – utlumená */
.status-closed {
  border-color: #555;
  color: #999;
  opacity: 0.6;
}



.bug-message pre {
  margin: 0;
  color: #e6d18c;
  white-space: pre-wrap;
}


.top-actions .btn {
  display: inline-block;
  padding: 10px 14px;
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #111;
  color: #d4af37;
  border: 1px solid #2a2a2a;
  text-decoration: none;
}

.top-actions .btn:hover {
  background: #1a1a1a;
  border-color: #d4af37;
}

.lang {
  text-align: right;
  font-size: 13px;
}

.lang a {
  color: #888;
  text-decoration: none;
}

a.btn,
a.btn:visited,
a.btn:hover,
a.btn:active {
  color: #caa24d;
  text-decoration: none;
}


.lang a.active,
.lang a:hover {
  color: #d4af37;
}
.server-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  color: #bfb8a0;
}


.server-status .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

/* ONLINE */
.server-status.online .dot {
  background: #2ecc71;
  box-shadow: 0 0 8px #2ecc71;
  animation: pulse 1.6s infinite;
}

/* OFFLINE */
.server-status.offline .dot {
  background: #e74c3c;
  box-shadow: 0 0 8px #e74c3c;
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.6;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.side-nav a.active {
  color: #ffd36a;
  padding-bottom: 6px;
  border-bottom: 2px solid #d4af37;
  text-shadow: 0 0 4px rgba(212,175,55,0.4);
}
.content-box p {
  text-align: justify;
  line-height: 1.7;
  hyphens: auto;
  margin-bottom: 12px;
}
.music-toggle {
  margin-top: 0px;
  margin-bottom: 0px;
  background: none;
  border: 3px solid #3a3322;
  color: #d4af37;
  padding: 3px 18px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.music-toggle:hover {
  border-color: #d4af37;
  background: #111;
}
/* =========================
   CREDITS WINDOW – FINAL
   ========================= */

.credits-window {
  margin-top: 30px;
  margin-bottom: 20px;
  height: 420px;          /* pevná výška okna */
  overflow: hidden;
  border-left: 2px solid #000000;
  padding-left: 10px;
  position: relative;
}

.credits-content {
  animation: creditsScroll 425s linear infinite;
  animation-play-state: paused;
}
/* samotná animace */
@keyframes creditsScroll {
  0% {
    transform: translateY(1%);
  }
  100% {
    transform: translateY(-150%);
  }
}
.music-toggle .icon {
  display: inline-block;
  font-size: 16px;
  width: 1.2em;
  text-align: center;
  margin-right: 8px;
  line-height: 1;
  transform: translateY(-1px);
}
.download-link {
  display: inline-block;
  margin: 0px 0 30px;
  padding: 3px 38px;
  border: 3px solid #3a3322;
  color: #d4af37;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #111;
}

.download-link:hover {
  border-color: #d4af37;
  background: #1a1a1a;
}
.center {
  text-align: center;
  margin-bottom: 40px;
}

.rates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 30px;   /* ← TOHLE JE KLÍČ */
   margin-bottom: 30px;
}

.rate-card {
  border: 2px solid #3a3322;
  background: #0b0b0b;
  padding: 20px;
  text-align: left;
  transition: border-color 0.3s, box-shadow 0.3s;
}

/* jen jemný hover */
.rate-card:hover {
  border-color: #5a4a2a;
}

/* JEDINÝ otevřený stav */
.rate-card.open {
  border-color: #d4af37;
  box-shadow: 0 0 12px rgba(212,175,55,0.25);
}

.rate-title {
  background: none;
  border: none;
  color: #d4af37;
  font-size: 18px;
  letter-spacing: 2px;
  cursor: pointer;
  text-transform: uppercase;
}

.rate-card.open .rate-title {
  color: #ffd36a;
}

.rate-detail {
  text-align: left;
  margin-top: 15px;
  color: #bfb8a0;
  font-size: 14px;
  line-height: 1.6;

  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);

  transition:
    max-height 0.6s ease,
    opacity 0.4s ease,
    transform 0.3s ease;
}

.rate-card.open .rate-detail {
  max-height: 200px;   /* bohatě stačí na pár řádků */
  opacity: 1;
  transform: translateY(0);
}
.credits-source {
  margin-top: 40px;
  padding-top: 10px;
  font-size: 12px;
  color: #6f6a58;
  border-top: 1px solid #1a1a1a;
}

.credits-source a {
  color: #8f876b;
  text-decoration: none;
}

.credits-source a:hover {
  color: #d4af37;
  text-decoration: underline;
}
.right::before {
  content: "";
  position: absolute;
  top: 120px;
  right: 80px;

  width: 750px;
  height: 750px;

  background: url("../img/clan-emblem.png") center / contain no-repeat;

  opacity: 0.06; /* hodně jemné */
  z-index: 0;
  pointer-events: none;

  filter:
    drop-shadow(0 0 20px rgba(212,175,55,0.15))
    drop-shadow(0 0 60px rgba(212,175,55,0.08));
}

/* ===== ADMIN DASHBOARD ===== */

.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.admin-card {
  background: rgba(0,0,0,0.6);
  border: 1px solid #7a5c1e;
  padding: 24px;
  border-radius: 8px;
  text-align: left;
  transition: transform .2s, box-shadow .2s;
}

.admin-card h3 {
  margin-top: 0;
  color: #d4af37;
}

.admin-card p {
  color: #bbb;
  font-size: 14px;
  min-height: 40px;
}

.admin-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 15px rgba(212,175,55,0.15);
}

/* disabled karty */
.admin-card.disabled {
  opacity: 0.45;
  pointer-events: none;
}

.badge {
  display: inline-block;
  margin-top: 10px;
  padding: 4px 8px;
  font-size: 11px;
  border: 1px solid #555;
  color: #999;
  border-radius: 4px;
}
.gm-row {
  background: rgba(61, 220, 151, 0.08);
}

.gm-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: bold;
  color: #0f5132;
  background: #3ddc97;
  margin-left: 6px;
}
#onlineTable th:hover {
  color: #3ddc97;
  text-decoration: underline;
}
.auth .btn-warning {
  border-color: #caa24d;
  color: #caa24d;
}
.auth-center {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.admin-btn {
  color: #f1c40f;
  border-color: #f1c40f;
}

.admin-btn:hover {
  background: rgba(241, 196, 15, 0.12);
}
.auth {
  display: flex;
  align-items: center;
  gap: 12px;
}

.auth .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.admin-page {
  overflow: auto;
}

.admin-page .auth-container {
  max-width: 1600px; /* admin tabulky chtějí šířku */
}
/* ===== ADMIN PAGE FIX ===== */
body.admin-page {
  overflow: auto;
}
/* ===== ADMIN HEADER BUTTONS FIX ===== */
body.admin-page .auth .btn,
body.admin-page .admin-btn {
  min-height: 42px;
  padding: 0 18px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
body.admin-page .main-header {
  white-space: normal;
}
/* ===== FIX ADMIN HEADER LAYOUT ===== */
body.admin-page .main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body.admin-page .main-header .logo a {
  display: inline-flex;
  align-items: center;
  height: 42px;
  line-height: 1;
}
body.admin-page .main-header {
  white-space: normal;
}
/* ===== ADMIN HEADER FIX ===== */

body.admin-page .main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 24px 40px;
}

body.admin-page .main-header .logo a {
  display: inline-flex;
  align-items: center;

  font-family: 'Cinzel', serif;
  font-size: 22px;
  letter-spacing: 6px;
  text-transform: uppercase;

  color: #d4af37;
}

body.admin-page .main-header .auth {
  display: flex;
  gap: 12px;
}

body.admin-page .main-header .auth .btn {
  background: linear-gradient(to bottom, #111, #0b0b0b);
  border: 1px solid #3a3322;
  color: #d4af37;

  padding: 10px 18px;
  font-family: 'Cinzel', serif;
  letter-spacing: 2px;
  text-transform: uppercase;
}
/* ADMIN BUG REPORTS – stejný header jako admin index */
body.admin-page .main-header {
  justify-content: flex-start;
  gap: 16px;
}
/* ===== ADMIN CONTENT PAGES (BUG REPORTS, DETAIL, ETC.) ===== */
body.profile-page.admin-content {
  overflow: auto;
}

body.profile-page.admin-content .auth-container {
  max-width: 1600px;
}
/* =========================
   MINI LINKS (Discord / Rules / GDPR)
   ========================= */

/* aby šlo footerem tlačit dolů */
.right {
  display: flex;
  flex-direction: column;
}

/* spodní utility oblast vpravo */
.right-footer {
  margin-top: auto;           /* <- tohle ho pošle úplně dolů */
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;      /* vpravo */
  gap: 10px;
}

/* tlačítka */
.mini-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.mini-link {
  background: transparent;
  border: 1px solid rgba(212,175,55,0.35);
  color: #bfb8a0;
  padding: 6px 10px;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color .25s, color .25s, box-shadow .25s, background .25s;
}

.mini-link:hover {
  color: #d4af37;
  border-color: rgba(212,175,55,0.75);
  background: rgba(0,0,0,0.25);
  box-shadow: 0 0 10px rgba(212,175,55,0.10);
}

.mini-link.active {
  color: #ffd36a;
  border-color: #d4af37;
  box-shadow: 0 0 12px rgba(212,175,55,0.18);
}

/* panely se otevřou NAD tlačítky (neposouvají layout) */
.mini-panels {
  position: absolute;
  right: 0;
  bottom: 44px;               /* nad tlačítkama */
  width: min(700px, 100%);
}

.mini-panel {
  display: none;
  background: linear-gradient(to bottom, rgba(15,15,15,0.82), rgba(5,5,5,0.82));
  border: 1px solid rgba(212,175,55,0.25);
  box-shadow: 0 0 20px rgba(0,0,0,0.85), 0 0 40px rgba(212,175,55,0.06);
  padding: 18px 18px 16px;
}

.mini-panel.open { display: block; }

.mini-panel h4 {
  margin: 0 0 10px;
  color: #d4af37;
  letter-spacing: 1px;
  font-size: 16px;
}

.mini-panel p {
  margin: 0 0 10px;
  color: #bfb8a0;
  line-height: 1.6;
}

.mini-list {
  margin: 0;
  padding-left: 18px;
  color: #bfb8a0;
}

.mini-list li {
  margin: 0 0 8px;
  line-height: 1.55;
}

.mini-cta {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid #3a3322;
  background: rgba(0,0,0,0.35);
  color: #d4af37;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  transition: border-color .25s, box-shadow .25s, background .25s;
}

.mini-cta:hover {
  border-color: #d4af37;
  background: rgba(0,0,0,0.55);
  box-shadow: 0 0 12px rgba(212,175,55,0.18);
}
/* aby pravý panel byl flex a footer šel dolů */
.right { display: flex; flex-direction: column; }

/* utility footer vpravo dole */
.right-footer {
  margin-top: auto;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

/* panely se otevírají NAD tlačítky */
.mini-panels {
  position: absolute;
  right: 0;
  bottom: 44px;
  width: min(700px, 100%);
}
.mini-panel { display: none; }
.mini-panel.open { display: block; }
/* ===== Page footer links (Discord / Rules / GDPR) ===== */
.page-footer {
  margin-top: auto;
  padding-top: 18px;
  padding-bottom: 6px;
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  align-items: center;

  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;

  color: #6f6a58;
  position: relative;
  z-index: 3;
}

.page-footer a {
  color: #8f876b;
  text-decoration: none;
  transition: color .25s, text-shadow .25s;
}

.page-footer a:hover {
  color: #d4af37;
  text-shadow: 0 0 6px rgba(212,175,55,0.25);
}

.page-footer a.active {
  color: #ffd36a;
}

.rules-list {
  margin: 12px 0 0;
  padding-left: 18px;
  color: #bfb8a0;
}

.rules-list li {
  margin: 0 0 10px;
  line-height: 1.6;
}

.rules-note {
  margin-top: 16px;
  font-size: 12px;
  color: #8f876b;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 12px;
}

.subhead {
  margin-top: 18px;
  margin-bottom: 10px;
  font-size: 16px;
  color: #d4af37;
  letter-spacing: 1px;
}
.page-footer{
  margin-top: auto;
  padding-top: 18px;
  padding-bottom: 6px;
  display:flex;
  gap:10px;
  justify-content:flex-end;
  align-items:center;
  font-size:12px;
  letter-spacing:2px;
  text-transform:uppercase;
  color:#6f6a58;
  position:relative;
  z-index:3;
}

.page-footer a{
  color:#8f876b;
  text-decoration:none;
  transition: color .25s, text-shadow .25s;
}

.page-footer a:hover{
  color:#d4af37;
  text-shadow: 0 0 6px rgba(212,175,55,0.25);
}
/* ===== SCROLL ONLY RIGHT PANEL (GDPR/RULES) ===== */
body.scroll-right {
  overflow: hidden; /* žádný scroll celé stránky */
}

body.scroll-right .layout {
  height: 100vh; /* celý layout pevně na výšku okna */
}

/* Levý obrázek pořád na plnou výšku */
body.scroll-right .hero-bg {
  height: 100vh;
}

/* Pravá strana bude scrollovat */
body.scroll-right .right {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;

  /* aby scroll nepřetahoval celou stránku (lepší pocit) */
  overscroll-behavior: contain;

  /* ať footer/obsah není nalepený úplně na spodku */
  padding-bottom: 28px;
}

/* Pokud by se ti zdálo, že se to "lámě" kvůli absolutnímu emblému */
body.scroll-right .right::before {
  position: fixed;
  top: 120px;
  right: 80px;
}
/* GDPR/RULES: schovej dekorativní čáru přes celou stránku */
body.scroll-right.auth-page::after {
  display: none !important;
}


/* ===== LOGO PULSE (text glow) ===== */
body.logo-pulse .side-logo{
  /* ať to nemůže přebít jiný styl */
  text-shadow:
    0 0 6px rgba(255, 80, 80, 0.65),
    0 0 16px rgba(255, 60, 60, 0.45),
    0 0 34px rgba(255, 0, 0, 0.28);

  animation: logoGlowPulse 3.2s ease-in-out infinite;
}

/* Pokud je side-logo odkaz (někde máš <a>) */
body.logo-pulse .side-logo a{
  color: inherit;
  text-shadow: inherit;
  animation: logoGlowPulse 3.2s ease-in-out infinite;
}

@keyframes logoGlowPulse{
  0%, 100%{
    /* “slabší” fáze */
    text-shadow:
      0 0 4px rgba(255, 80, 80, 0.35),
      0 0 10px rgba(255, 60, 60, 0.25),
      0 0 18px rgba(255, 0, 0, 0.16);
    filter: saturate(1.05) brightness(1.02);
  }
  50%{
    /* “extrém” – ať to fakt vidíš */
    text-shadow:
      0 0 10px rgba(255, 120, 120, 0.85),
      0 0 26px rgba(255, 60, 60, 0.75),
      0 0 60px rgba(255, 0, 0, 0.45),
      0 0 120px rgba(255, 0, 0, 0.25);
    filter: saturate(1.6) brightness(1.18);
  }
}
/* Checkbox / consent text – register page */
.auth-page .auth-form .form-group label,
.auth-page .auth-form .form-group,
.auth-page .auth-form .form-group .form-hint {
  color: #cfcfcf; /* šedobílá */
}

/* === Register: consent checkboxes - layout fix + subtle colors === */

/* Každý řádek s checkboxem bude na vlastním řádku */
.auth-page .auth-form label {
  display: block;           /* důležité: každý label řádek */
  margin: 6px 0;
  color: #cfcfcf;           /* šedý text */
  line-height: 1.35;
}

/* Checkbox zarovnání s textem */
.auth-page .auth-form label input[type="checkbox"] {
  vertical-align: middle;
  margin-right: 8px;
}

/* Odkazy v těchto textech – šedé, ne zlaté, bez "svícení" */
.auth-page .auth-form label a {
  color: #b7b7b7;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.auth-page .auth-form label a:hover,
.auth-page .auth-form label a:visited {
  color: #b7b7b7; /* stejné i na hover/visited */
}




/* === AUTH (login/register): zrušit zlaté linky nahoře a dole === */
body.auth-page .main-header,
body.auth-page .main-footer {
  border: none !important;
  box-shadow: none !important;
}

/* kdyby byly kreslené pseudo-elementem */
body.auth-page .main-header::before,
body.auth-page .main-header::after,
body.auth-page .main-footer::before,
body.auth-page .main-footer::after {
  content: none !important;
  display: none !important;
}

/* někdy je to ještě “separator” jako <hr> */
body.auth-page hr {
  display: none !important;
}
body.auth-page.no-auth-line::after{
  display:none !important;
  content:none !important;
}

/*bannery */
.page-footer{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.page-footer .footer-links{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.page-footer .dot{
  opacity: 0.6;
}

.page-footer .footer-banners{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.page-footer .footer-banners a{
  display: inline-flex;
  align-items: center;
}

.page-footer .footer-banners img{
  height: 26px;      /* <-- tady zmenšuješ/zvětšuješ (např. 22–32) */
  width: auto;
  display: block;
  opacity: 0.95;
}

.page-footer .footer-banners img:hover{
  opacity: 1;
}
.footer-banners{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.footer-banners .vote-banner{
  height:28px;     /* zkus 24–32 podle vzhledu */
  width:auto;      /* zachová poměr stran */
  display:block;
}

