/* Globální herní design a typografie */
:root {
  --bg-dark-main: #070a13;
  --bg-card-main: #131b2e;
  --border-color: #1e293b;
  --text-gold-main: #fbbf24;
  --text-white-main: #ffffff;
  --text-muted-main: #94a3b8;
  --accent-neon: #ff6b00;
}

body {
  background-color: var(--bg-dark-main);
  color: #cbd5e1;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.site-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Hero sekce a nadpisy */
header {
  text-align: center;
  padding: 40px 20px;
  background: radial-gradient(
    circle at top,
    #1e294a 0%,
    var(--bg-dark-main) 70%
  );
  border-radius: 16px;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 107, 0, 0.1);
}



h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-white-main);
  margin: 0 0 15px 0;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #fff 30%, var(--text-gold-main));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-white-main);
  margin: 40px 0 20px 0;
  border-left: 4px solid var(--accent-neon);
  padding-left: 15px;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-gold-main);
  margin: 25px 0 15px 0;
}

p {
  font-size: 1.05rem;
  color: #cbd5e1;
  margin-bottom: 20px;
}

.intro-text {
  font-size: 1.15rem;
  max-width: 800px;
  margin: 0 auto;
  color: #e2e8f0;
}

.article-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto 20px auto;
  color: var(--text-muted-main);
  font-size: 0.95rem;
}

.article-meta span {
  background: rgba(251, 191, 36, 0.06);
  border: 1px solid rgba(251, 191, 36, 0.18);
  border-radius: 999px;
  padding: 6px 12px;
}

/* Sekce preferencí (Klikací scénáře) */
.preference-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 16px;
  margin: 30px 0;
}

@media (min-width: 768px) {
  .preference-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.preference-card {
  background: #101726;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 20px;
  transition: all 0.2s ease;
}

.preference-card:hover {
  border-color: var(--accent-neon);
  background: #141d30;
  transform: translateY(-2px);
}

.preference-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text-white-main);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
}

.preference-title a {
  color: var(--text-white-main);
  text-decoration: none;
  transition: color 0.2s ease;
}

.preference-card:hover .preference-title a {
  color: var(--text-gold-main);
}

/* Specifické herní tabulky */
.styled-table-wrapper {
  overflow-x: auto;
  margin: 25px 0;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.styled-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card-main);
  text-align: left;
  font-size: 0.95rem;
}

.styled-table th {
  background-color: #1e293b;
  color: var(--text-white-main);
  padding: 14px 16px;
  font-weight: 700;
}

.styled-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border-color);
  color: #e2e8f0;
}

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

/* Seznamy chyb a checklisty */
.styled-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.styled-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 1rem;
}

.styled-list li::before {
  content: "➔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-neon);
  font-weight: bold;
}

/* FAQ harmonika / boxy */
.faq-section,
.faq-container {
  margin-top: 50px;
  background: #0f1524;
  padding: 30px;
  border-radius: 16px;
  border: 1px solid var(--border-color);
}

.faq-item {
  position: relative;
  background: var(--bg-card-main);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
}

.faq-item .toggle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 3;
}

.faq-question {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-white-main);
  margin: 0;
  padding: 20px 56px 20px 20px;
  cursor: pointer;
  position: relative;
  z-index: 1;
}

.faq-item .icon {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--accent-neon);
  z-index: 4;
  pointer-events: none;
}

.faq-item .icon::before,
.faq-item .icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--accent-neon);
}

.faq-item .icon::before {
  width: 10px;
  height: 2px;
}

.faq-item .icon::after {
  width: 2px;
  height: 10px;
  transition: opacity 0.3s ease;
}

.faq-answer {
  height: 0;
  margin: 0;
  padding: 0 20px;
  overflow: hidden;
  opacity: 0;
  font-size: 0.95rem;
  color: #cbd5e1;
  transition: opacity 0.3s ease;
}

.faq-item .toggle:checked ~ .faq-question {
  color: var(--text-gold-main);
}

.faq-item .toggle:checked ~ .icon::after {
  opacity: 0;
}

.faq-item .toggle:checked ~ .faq-answer {
  height: auto;
  opacity: 1;
  padding: 0 20px 20px;
}

.warning-footer {
  background: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
  padding: 15px 20px;
  border-radius: 10px;
  color: #f87171;
  font-size: 0.9rem;
  margin: 20px 0;
}

.provider-cells {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 18px;
  margin: 26px 0;
}

@media (min-width: 900px) {
  .provider-cells {
    grid-template-columns: repeat(3, 1fr);
  }
}

.provider-cell {
  background: #101726;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 22px;
}

.provider-cell h3 {
  margin-top: 0;
}

.provider-cell p {
  margin-bottom: 0;
  font-size: 0.98rem;
}

.author-quote {
  background: rgba(251, 191, 36, 0.06);
  border-left: 4px solid var(--text-gold-main);
  border-radius: 12px;
  padding: 22px 24px;
  margin: 28px 0 0;
}

.author-quote p {
  margin: 0 0 12px 0;
  color: #e2e8f0;
  font-size: 1.05rem;
}

.author-quote cite {
  display: block;
  color: var(--text-gold-main);
  font-style: normal;
  font-weight: 800;
}

.article-meta a {
  color: var(--text-gold-main);
  text-decoration: none;
  font-weight: 700;
}

.article-meta a:hover {
  color: #ffffff;
}

.author-quote cite a {
  color: inherit;
  text-decoration: none;
}

.author-quote cite a:hover {
  color: #ffffff;
}

.site-footer {
  margin-top: 50px;
  padding: 30px;
  background: #0f1524;
  border: 1px solid var(--border-color);
  border-radius: 16px;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 22px;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

.footer-title {
  margin: 0 0 12px 0;
  color: var(--text-white-main);
  font-size: 1.05rem;
  font-weight: 800;
}

.footer-text {
  margin: 0;
  color: var(--text-muted-main);
  font-size: 0.95rem;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--text-gold-main);
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--text-muted-main);
  font-size: 0.9rem;
}

.logo img {
  display: block;
  max-height: 58px;
  width: auto;
}

.logo-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

body > section.section {
  width: min(1200px, calc(100% - 40px));
  margin-left: auto;
  margin-right: auto;
}

body > section.section:first-of-type {
  margin-top: 30px;
}

body > section.section:last-of-type {
  margin-bottom: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff6b00 0%, #ff4500 100%);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.938rem;
  padding: 12px 20px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  line-height: 1.2;
}

.button:hover {
  opacity: 0.95;
}

.casino-showcase-container {
  --bg-dark: #0b0f19;
  --card-bg: #131b2e;
  --card-border: #1e293b;
  --text-gold: #fbbf24;
  --text-white: #ffffff;
  --text-gray: #94a3b8;
  --btn-glow: rgba(249, 115, 22, 0.4);

  background-color: var(--bg-dark);
  padding: 24px;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  border-radius: 16px;
  -webkit-font-smoothing: antialiased;
}

.casino-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

@media (min-width: 640px) {
  .casino-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .casino-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.casino-card {
  background: linear-gradient(180deg, #18233c 0%, var(--card-bg) 100%);
  border: 1px solid var(--card-border);
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.casino-card:hover {
  transform: translateY(-5px);
  border-color: #334155;
  box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.6);
}

.card-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(90deg, #ff7e40, #ff4500);
  color: #fff;
  font-size: 0.688rem;
  font-weight: 800;
  padding: 4px 12px;
  border-bottom-left-radius: 10px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.casino-brand {
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--text-white);
  margin: 0 0 4px 0;
  letter-spacing: -0.02em;
}

.provider-tags {
  font-size: 0.75rem;
  color: var(--text-gray);
  margin-bottom: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bonus-box {
  background: rgba(251, 191, 36, 0.04);
  border: 1px dashed rgba(251, 191, 36, 0.2);
  border-radius: 10px;
  padding: 14px;
  text-align: center;
  margin-bottom: 20px;
}

.bonus-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--text-gray);
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 2px;
}

.bonus-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text-gold);
  letter-spacing: -0.01em;
}

.features-list {
  margin: 0 0 24px 0;
  padding: 0;
  list-style: none;
  flex-grow: 1;
}

.feature-item {
  font-size: 0.875rem;
  color: #cbd5e1;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.feature-item svg {
  margin-right: 8px;
  color: #10b981;
  flex-shrink: 0;
}

.casino-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff6b00 0%, #ff4500 100%);
  color: var(--text-white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.938rem;
  padding: 12px 20px;
  border-radius: 10px;
  transition:
    opacity 0.15s ease,
    box-shadow 0.15s ease;
  box-shadow: 0 4px 12px var(--btn-glow);
}

.casino-cta:hover {
  opacity: 0.95;
  box-shadow: 0 6px 16px var(--btn-glow);
}

.casino-cta svg {
  margin-left: 6px;
  transition: transform 0.15s ease;
}

.casino-cta:hover svg {
  transform: translateX(3px);
}

.new-casinos-showcase {
  --casino-bg: #0d1222;
  --card-gradient: linear-gradient(180deg, #161f38 0%, #10172a 100%);
  --border-glow: #223156;
  --accent-gold: #f59e0b;
  --accent-orange: #f97316;
  --text-light: #f8fafc;
  --text-muted: #94a3b8;

  background-color: var(--casino-bg);
  padding: 24px;
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  border-radius: 16px;
  -webkit-font-smoothing: antialiased;
}

.casino-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}

@media (min-width: 768px) {
  .casino-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.casino-card {
  background: var(--card-gradient);
  border: 1px solid var(--border-glow);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.casino-card:hover {
  transform: translateY(-4px);
  border-color: #3b5188;
  box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.7);
}

.card-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(90deg, #10b981, #059669);
  color: #fff;
  font-size: 0.688rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.casino-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-light);
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.promo-box {
  background: rgba(245, 158, 11, 0.05);
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  margin-bottom: 20px;
}

.promo-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 2px;
}

.promo-value {
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--accent-gold);
  letter-spacing: -0.01em;
}

.spec-list {
  margin: 0 0 24px 0;
  padding: 0;
  list-style: none;
  flex-grow: 1;
}

.spec-item {
  font-size: 0.875rem;
  color: #e2e8f0;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
}

.spec-item strong {
  color: var(--text-light);
  margin-right: 4px;
}

.spec-item::before {
  content: "✓";
  color: #10b981;
  font-weight: bold;
  margin-right: 8px;
  flex-shrink: 0;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-orange) 0%, #ea580c 100%);
  color: var(--text-light);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.938rem;
  padding: 12px;
  border-radius: 8px;
  transition: opacity 0.15s ease;
}

.cta-btn:hover {
  opacity: 0.95;
}

/*author*/

.intro-text {
            font-size: 1.15rem;
            max-width: 850px;
            margin: 0 auto 18px auto;
            color: #e2e8f0;
        }

        .author-meta {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
            margin-top: 18px;
        }

        .meta-pill {
            display: inline-flex;
            align-items: center;
            border: 1px solid var(--border-color);
            background: rgba(19, 27, 46, 0.7);
            color: #e2e8f0;
            border-radius: 999px;
            padding: 8px 14px;
            font-size: 0.95rem;
            font-weight: 700;
        }

        .profile-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin: 30px 0;
        }

        @media (min-width: 860px) {
            .profile-grid { grid-template-columns: 0.9fr 1.1fr; }
        }

        .profile-card,
        .content-card,
        .quote-card {
            background: #101726;
            border: 1px solid var(--border-color);
            border-radius: 16px;
            padding: 24px;
        }

        .avatar-box {
            width: 112px;
            height: 112px;
            border-radius: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #ff6b00 0%, #fbbf24 100%);
            color: #070a13;
            font-size: 2.2rem;
            font-weight: 900;
            margin-bottom: 18px;
            box-shadow: 0 12px 28px rgba(255, 107, 0, 0.2);
        }

        .profile-role {
            color: var(--text-gold-main);
            font-size: 1.05rem;
            font-weight: 800;
            margin: 0 0 12px 0;
        }

        .styled-list {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }

        .styled-list li {
            position: relative;
            padding-left: 28px;
            margin-bottom: 14px;
            font-size: 1rem;
            color: #cbd5e1;
        }

        .styled-list li::before {
            content: "➔";
            position: absolute;
            left: 0;
            top: 0;
            color: var(--accent-neon);
            font-weight: bold;
        }

        .styled-table-wrapper {
            overflow-x: auto;
            margin: 25px 0;
            border-radius: 12px;
            border: 1px solid var(--border-color);
        }

        .styled-table {
            width: 100%;
            border-collapse: collapse;
            background: var(--bg-card-main);
            text-align: left;
            font-size: 0.95rem;
        }

        .styled-table th {
            background-color: #1e293b;
            color: var(--text-white-main);
            padding: 14px 16px;
            font-weight: 700;
        }

        .styled-table td {
            padding: 14px 16px;
            border-bottom: 1px solid var(--border-color);
            color: #e2e8f0;
        }

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

        .quote-card {
            border-left: 4px solid var(--accent-neon);
            background: linear-gradient(180deg, #131b2e 0%, #101726 100%);
        }

        .quote-card p {
            margin: 0;
            color: #e2e8f0;
            font-size: 1.08rem;
        }

        .article-link-card {
            display: block;
            background: #101726;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 20px;
            transition: all 0.2s ease;
            margin-bottom: 14px;
        }

        .article-link-card:hover {
            border-color: var(--accent-neon);
            background: #141d30;
            transform: translateY(-2px);
        }

        .article-link-card strong {
            display: block;
            color: var(--text-white-main);
            font-size: 1.1rem;
            margin-bottom: 6px;
        }

        .article-link-card span {
            color: #cbd5e1;
            font-size: 0.98rem;
        }

        .social-links {
            display: grid;
            gap: 10px;
            margin-top: 20px;
        }

        .social-link {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            width: fit-content;
            color: #e2e8f0;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.98rem;
            background: #131b2e;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            padding: 10px 14px;
            transition: all 0.2s ease;
        }

        .social-link:hover {
            border-color: var(--accent-neon);
            color: var(--text-gold-main);
            background: #141d30;
            transform: translateY(-2px);
        }

        .social-icon {
            width: 20px;
            height: 20px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--text-gold-main);
            flex-shrink: 0;
        }