:root {
  --bg-deep: #04101d;
  --bg-main: #07192d;
  --panel: rgba(11, 34, 61, 0.92);
  --panel-strong: rgba(13, 40, 71, 0.96);
  --panel-soft: rgba(255, 255, 255, 0.05);
  --text: #eef6ff;
  --muted: #b8cae2;
  --gold: #f1ca54;
  --gold-strong: #fff2a8;
  --gold-deep: #cb8d24;
  --aqua: #22d6f1;
  --aqua-soft: #86efff;
  --border: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(241, 202, 84, 0.28);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.34);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Trebuchet MS", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(34, 214, 241, 0.22), transparent 26%),
    radial-gradient(circle at 85% 10%, rgba(241, 202, 84, 0.18), transparent 22%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-main) 48%, #06111f 100%);
}

a {
  color: var(--gold-strong);
  text-decoration: none;
}

a:hover {
  color: #fff8cb;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

summary {
  cursor: pointer;
}

.container {
  width: min(var(--container), calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  background:
    linear-gradient(180deg, rgba(5, 19, 34, 0.94), rgba(4, 16, 29, 0.9)),
    radial-gradient(circle at left center, rgba(34, 214, 241, 0.08), transparent 24%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-shell {
  padding: 0.85rem 0 1rem;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  padding: 0.4rem 0.55rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(8, 27, 48, 0.84), rgba(6, 18, 33, 0.68));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.brand-logo {
  width: clamp(140px, 18vw, 220px);
  aspect-ratio: 1967 / 800;
  object-fit: contain;
  border-radius: 16px;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.22));
}

.brand-copy {
  display: grid;
  gap: 0.12rem;
}

.brand-copy strong,
.hero h1,
.prose h2,
.footer-brand h2 {
  font-family: "Palatino Linotype", "Book Antiqua", Georgia, serif;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.84rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #241406;
  background: linear-gradient(180deg, #ffeb8f 0%, #f6c54d 54%, #cb8d24 100%);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 30px rgba(229, 173, 36, 0.28);
}

.button-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.button-ghost:hover {
  background: rgba(34, 214, 241, 0.12);
}

.nav-toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.burger {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold-strong);
}

.site-nav {
  margin-top: 0.95rem;
  padding: 0.7rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(11, 34, 61, 0.72);
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  display: block;
  padding: 0.68rem 0.9rem;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1;
}

.nav-list a:hover {
  color: var(--text);
  border-color: rgba(34, 214, 241, 0.22);
  background: rgba(255, 255, 255, 0.05);
}

body.page-index .nav-home,
body.page-recenze .nav-recenze,
body.page-bonus .nav-bonus,
body.page-vip .nav-vip,
body.page-platby .nav-platby,
body.page-kasino .nav-kasino,
body.page-sloty .nav-sloty,
body.page-live .nav-live,
body.page-sport .nav-sport,
body.page-prihlaseni .nav-prihlaseni,
body.page-mobil .nav-mobil,
body.page-zkusenosti .nav-zkusenosti,
body.page-faq .nav-faq {
  color: #241406;
  border-color: rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 238, 151, 0.95), rgba(241, 202, 84, 0.92));
  box-shadow: 0 10px 24px rgba(240, 185, 48, 0.18);
}

.page-main {
  padding: 2rem 0 4rem;
}

.breadcrumbs {
  margin-bottom: 1rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 0;
  padding: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  color: rgba(255, 255, 255, 0.4);
  margin-left: 0.2rem;
}

.breadcrumbs a {
  color: var(--aqua-soft);
}

.breadcrumbs a:hover {
  color: #e9fdff;
}

.breadcrumbs [aria-current="page"] {
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.4rem;
  padding: 1.4rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: linear-gradient(145deg, rgba(14, 38, 67, 0.92), rgba(6, 22, 40, 0.96));
  box-shadow: var(--shadow);
}

.hero-copy {
  align-self: center;
  padding: 1.35rem 0.8rem 1.35rem 0.4rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--aqua-soft);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.03;
  letter-spacing: 0.02em;
}

.hero p {
  margin: 0;
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.35rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  margin: 1.25rem 0 0;
  padding: 0;
}

.hero-badges li {
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: #dff8ff;
  font-size: 0.92rem;
}

.hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
  padding: 0.55rem;
  border-radius: calc(var(--radius-xl) - 8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 12% 50%, rgba(34, 214, 241, 0.18), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.hero-media img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.28);
}

.content-shell {
  display: grid;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.section-panel {
  padding: clamp(1.15rem, 2vw, 1.7rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, var(--panel-strong), rgba(8, 22, 39, 0.95));
  box-shadow: var(--shadow);
}

.content-intro p,
.prose p,
.faq-answer p,
.footer-brand p,
.content-cta p,
.redirect-card p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1.02rem;
}

.section-panel p:last-child,
.section-panel ul:last-child,
.section-panel ol:last-child {
  margin-bottom: 0;
}

.prose section {
  scroll-margin-top: 8.4rem;
}

.prose section + section {
  margin-top: 2rem;
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.prose h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.15;
}

.prose h3 {
  margin: 1.4rem 0 0.85rem;
  color: var(--gold-strong);
  font-size: 1.2rem;
}

.prose ul {
  margin: 0 0 1.2rem;
  padding-left: 1.25rem;
  color: var(--muted);
}

.prose li {
  margin-bottom: 0.5rem;
}

.toc {
  overflow: hidden;
  padding: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
}

.toc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  font-weight: 700;
  color: var(--text);
  list-style: none;
}

.toc summary::-webkit-details-marker,
.faq-item summary::-webkit-details-marker {
  display: none;
}

.toc summary::after,
.faq-item summary::after {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--gold-strong);
  font-size: 1.35rem;
  flex-shrink: 0;
  content: "+";
}

.toc[open] summary::after,
.faq-item[open] summary::after {
  content: "−";
}

.toc-inner {
  padding: 0 1.2rem 1.2rem;
}

.toc ul {
  columns: 2;
  column-gap: 1.5rem;
  margin: 0;
  padding-left: 1.1rem;
}

.toc li {
  break-inside: avoid;
  margin-bottom: 0.65rem;
}

.toc a {
  color: #eafcff;
}

.table-wrap {
  overflow: auto;
  margin: 1rem 0 1.25rem;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background: rgba(4, 16, 29, 0.4);
}

th,
td {
  padding: 0.95rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

th {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
}

tr:last-child td {
  border-bottom: none;
}

.content-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.35rem;
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  background: linear-gradient(120deg, rgba(34, 214, 241, 0.14), rgba(241, 202, 84, 0.12));
}

.footer-shell {
  display: grid;
  gap: 1.4rem;
  padding: 1.6rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(10, 29, 50, 0.94), rgba(5, 16, 29, 0.98));
  box-shadow: var(--shadow);
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-brand {
  max-width: 36rem;
}

.footer-brand h2 {
  margin: 0 0 0.65rem;
  font-size: 1.7rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links a {
  display: block;
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
  border-color: rgba(241, 202, 84, 0.2);
}

.faq-list {
  display: grid;
  gap: 0.9rem;
}

.faq-item {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  color: var(--text);
  font-weight: 700;
  list-style: none;
}

.faq-answer {
  padding: 0 1.1rem 1.1rem;
}

.site-footer {
  padding-bottom: 3rem;
}

.redirect-page .page-main {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem 0;
}

.redirect-card {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.redirect-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-right: 0;
  }

  .toc ul {
    columns: 1;
  }

  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-nav {
    display: none;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 24px;
  }

  .nav-toggle:checked + .site-nav {
    display: block;
  }

  .nav-list {
    flex-direction: column;
  }

  .nav-list a {
    padding: 0.85rem 1rem;
    border-color: rgba(255, 255, 255, 0.06);
    background: rgba(255, 255, 255, 0.04);
  }

  .burger {
    display: inline-flex;
  }

  .brand-copy span {
    display: none;
  }
}

@media (min-width: 821px) {
  .site-nav {
    display: block !important;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(var(--container), calc(100% - 1rem));
  }

  .brand-copy {
    display: none;
  }

  .brand {
    padding: 0.32rem 0.4rem;
    border-radius: 18px;
  }

  .header-actions {
    gap: 0.45rem;
  }

  .header-actions .button {
    min-height: 42px;
    padding: 0.72rem 0.95rem;
    font-size: 0.9rem;
  }

  .hero,
  .section-panel,
  .footer-shell {
    border-radius: 22px;
    padding: 1rem;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .breadcrumbs ol {
    gap: 0.3rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-badges li {
    width: 100%;
    text-align: center;
  }

  .content-cta {
    align-items: flex-start;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

}
