@charset "UTF-8";

/* =============================================================================
   STAVKOVEKANCELARIE.COM — FOUNDATION CSS
   =============================================================================
   Base layer: Custom properties, reset, typography, utilities, components.
   No media queries — all breakpoint-specific rules live in desktop.css
   and responsive.css.
   =========================================================================== */


/* =============================================================================
   0. GOOGLE FONTS
   =========================================================================== */
@font-face {font-display:optional;font-family:'Roboto';font-style:normal;font-weight:400;src:url(/res/fonts/roboto-v50-latin_latin-ext-regular.woff2) format('woff2');}
@font-face {font-display:optional;font-family:'Roboto';font-style:italic;font-weight:400;src:url(/res/fonts/roboto-v50-latin_latin-ext-italic.woff2) format('woff2');}
@font-face {font-display:optional;font-family:'Roboto';font-style:normal;font-weight:700;src:url(/res/fonts/roboto-v50-latin_latin-ext-700.woff2) format('woff2');}
@font-face {font-display:optional;font-family:'Roboto';font-style:italic;font-weight:700;src:url(/res/fonts/roboto-v50-latin_latin-ext-700italic.woff2) format('woff2');}
@font-face {font-display:optional;font-family:'Roboto Condensed';font-style:normal;font-weight:700;src:url(/res/fonts/roboto-condensed-v31-latin_latin-ext-700.woff2) format('woff2');}


/* =============================================================================
   1. CSS CUSTOM PROPERTIES — Design tokens
   -----------------------------------------------------------------------------
   Systém tokens pre celý projekt. Všetko ostatné CSS by malo používať tieto
   premenné namiesto hardcoded hodnôt. Tým zaisťujeme konzistenciu
   (jedna zmena tu → všade sa premietne).

   Štruktúra:
   1. COLOR PALETTE — základné farby (brand, text, bg, status)
   2. BOOKMAKER COLORS — farby + text farby pre každého bookmakera
   3. BRAND SYSTEM — --brand-* premenné (prepíšu sa per body.tipsport atď.)
   4. SPACING — --space-1 až --space-12 (konzistentný rhythm)
   5. TYPOGRAPHY — font families, sizes, line heights
   6. LAYOUT — radius, shadow, transition, z-index
   7. TABLE PRODUCT COLORS — pre kategorizované tabuľky
   =========================================================================== */
:root {
  /* ─── 1. COLOR PALETTE ───────────────────────────────────────────────── */
  /* Brand */
  --primary: #408000;
  --primary-dark: #326400;
  --primary-light: #4b9600;
  --primary-50: #f0f7e6;
  --accent: #64c800;

  /* Text */
  --text: #1f2937;
  --text-muted: #6b7280;
  --text-light: #9ca3af;
  --text-on-primary: #ffffff;
  --text-on-dark: #ffffff;

  /* Backgrounds */
  --bg: #ffffff;
  --bg-light: #f9fafb;
  --bg-gray: #f3f4f6;
  --bg-dark: #222222;
  --bg-dark-menu: #2a2a2a;
  --bg-dark-submenu: #333333;

  /* Borders */
  --border: #e5e7eb;
  --border-dark: #d1d5db;
  --border-subtle: #00000014;    /* rgba(0,0,0,0.08) */
  --border-subtle-light: #ffffff14;

  /* States / Semantic */
  --red: #dc2626;
  --red-light: #fef2f2;
  --red-dark: #b91c1c;
  --green: #16a34a;
  --green-light: #f0fdf4;
  --blue: #2563eb;
  --blue-light: #eff6ff;
  --amber: #f59e0b;
  --amber-light: #fffbeb;
  --purple: #9333ea;
  --purple-light: #f5f3ff;
  --orange: #f97316;

  /* Overlay helpers (použité v headeroch, modaloch, menu hoveroch) */
  --overlay-light-5:  #ffffff0d;   /* rgba(255,255,255,0.05) */
  --overlay-light-8:  #ffffff14;
  --overlay-light-10: #ffffff1a;
  --overlay-light-12: #ffffff1f;
  --overlay-light-15: #ffffff26;
  --overlay-light-20: #ffffff33;
  --overlay-dark-5:   #0000000d;
  --overlay-dark-15:  #00000026;
  --overlay-dark-30:  #0000004d;
  --overlay-dark-55:  #0000008c;
  --overlay-dark-75:  #000000bf;
  --overlay-dark-85:  #000000d9;
  --overlay-dark-95:  #000000f2;


  /* ─── 2. BOOKMAKER COLORS — bg + border + text ───────────────────────── */
  --tipsport: #1e88e5;
  --tipsport-border: #55a5ec;
  --tipsport-text: #ffffff;

  --fortuna: #ffdb01;
  --fortuna-border: #ebc801;
  --fortuna-text: #000000;

  --nike: #f18510;
  --nike-border: #f39f43;
  --nike-text: #ffffff;

  --doxxbet: #202020;
  --doxxbet-border: #3c3c3c;
  --doxxbet-text: #f30d31;

  --synottip: #cf633d;
  --synottip-border: #d98264;
  --synottip-text: #ffffff;

  --tipos: #25247b;
  --tipos-border: #3434b1;
  --tipos-text: #ffffff;

  --chance: #007c4d;
  --chance-border: #00975f;
  --chance-text: #f49900;

  --sazka: #fddd31;
  --sazka-border: #f0cc02;
  --sazka-text: #000066;


  /* ─── 3. BRAND SYSTEM — prepíšu sa podľa body.<bookmaker> ────────────── */
  /* Default = primary (zelená). Body classy nižšie prepíšu. */
  --brand: var(--primary);
  --brand-dark: var(--primary-dark);
  --brand-text: var(--text-on-primary);
  --brand-border: var(--primary-dark);

  /* TOC color (legacy — zachované pre spätnú kompatibilitu) */
  --toc-color: var(--brand);
  --toc-color-rgb: 64, 128, 0;


  /* ─── 4. SPACING SCALE ───────────────────────────────────────────────── */
  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.25rem;   /* 20px */
  --space-6: 1.5rem;    /* 24px */
  --space-8: 2rem;      /* 32px */
  --space-10: 2.5rem;   /* 40px */
  --space-12: 3rem;     /* 48px */


  /* ─── 5. TYPOGRAPHY ──────────────────────────────────────────────────── */
  --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Roboto Condensed', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial Narrow', sans-serif;

  --fs-xs:   0.75rem;    /* 12px */
  --fs-sm:   0.8125rem;  /* 13px */
  --fs-base: 0.875rem;   /* 14px */
  --fs-md:   1rem;       /* 16px */
  --fs-lg:   1.125rem;   /* 18px */
  --fs-xl:   1.25rem;    /* 20px */
  --fs-2xl:  1.5rem;     /* 24px */
  --fs-3xl:  1.75rem;    /* 28px */
  --fs-4xl:  2rem;       /* 32px */

  --lh-tight:   1.3;
  --lh-normal:  1.5;
  --lh-relaxed: 1.7;


  /* ─── 6. LAYOUT — radius, shadow, transition, z-index ────────────────── */
  --radius-sm: 0.25rem;
  --radius:    0.5rem;
  --radius-lg: 0.75rem;

  --shadow-sm: 0 1px 2px #0000000d;
  --shadow-md: 0 4px 6px #00000012;
  --shadow-lg: 0 10px 15px #0000001a;
  --shadow-xl: 0 20px 40px #00000026;

  --transition-fast:   100ms ease;
  --transition:        200ms ease;
  --transition-slow:   300ms ease;

  /* Z-index stack */
  --z-breadcrumb:   1;
  --z-sticky:       50;
  --z-header:       100;
  --z-review-hdr:   101;
  --z-menu:         200;
  --z-tooltip:      9999;
  --z-lightbox:     100000;

  /* Layout */
  --navbar-height: 3.5rem;
  --page-max-width: 1200px;
  --cell-padding-x: 0.75rem;


  /* ─── 7. MENU SECTION COLORS (legacy) ───────────────────────────────── */
  --menu-green:       #326400;
  --menu-green-light: #64c800;
  --menu-red:         #800000;
  --menu-red-light:   #ff0000;
  --menu-blue:        #004080;
  --menu-blue-light:  #0080ff;
  --menu-purple:      #4b0064;
  --menu-purple-light:#af00ea;

  /* Mobilné menu — highlight text pre bonus/casino/code sekcie */
  --menu-bonus-text:  #ff6b6b;
  --menu-casino-text: #c084fc;
  --menu-code-text:   #60a5fa;

  /* CTA Yellow (bonus tlačidlá) — gradient kombinácia */
  --yellow-cta-light: #ffe600;
  --yellow-cta:       #ffcc00;
  --yellow-cta-dark:  #ffb300;
  --yellow-cta-border:#e6b800;

  /* Bonus box pozadie */
  --bonus-bg:         #ffffe1;
  --bonus-bg-border:  #f4e4b7;
  --bonus-text:       #806513;

  /* Dark mode table */
  --table-dark-even:  #444444;
  --table-dark-odd:   #555555;
  --table-dark-footer:#333333;
  --table-dark-border:#666666;

  /* Primary dark variants (používa sa v api-copy3-1.css Tipsport widgetoch) */
  --primary-deep:     #306000;

  /* Neutrálne sivé pozadia (formuláre, neutral rows) */
  --bg-neutral:       #f5f5f5;
  --gray-700:         #374151;
  --gray-200:         #e5e5e5;

  /* Menu sekcií tmavé pozadia pre desktop */
  --menu-bonus-bg:    #382222;
  --menu-bonus-brd:   #5a2323;
  --menu-faq-bg:      #222a3a;
  --menu-faq-brd:     #23365e;
  --menu-casino-bg:   #39254a;
  --menu-casino-brd:  #552a7c;
  --menu-code-bg:     #222a3a;
  --menu-code-brd:    #23365e;
  --menu-green-bg:    #2a361e;
  --menu-green-brd:   #365418;

  /* Accent semantic */
  --yellow-accent:    #fbbf24;
  --yellow-dark:      #eab308;
  --magenta:          #ff00ff;

  /* Table product colors */
  --table-green-even: #e9ffd2;
  --table-green-odd: #f8fff0;
  --table-green-border: #aaff55;
  --table-purple-even: #f4d2ff;
  --table-purple-odd: #fcf0ff;
  --table-purple-border: #f1b9ff;
  --table-red-even: #ffd2d2;
  --table-red-odd: #fff0f0;
  --table-red-border: #ffb9b9;
  --table-blue-even: #d2e9ff;
  --table-blue-odd: #f0f8ff;
  --table-blue-border: #b9dcff;
  --table-orange-even: #ffd2a6;
  --table-orange-odd: #fff0e1;
  --table-orange-border: #ffb973;
  --table-yellow-even: #ffffd2;
  --table-yellow-odd: #fffff0;
  --table-yellow-border: #f0f000;
  --table-grey-even: #d2d2d2;
  --table-grey-odd: #f0f0f0;
  --table-grey-border: #b9b9b9;
  --table-pink-even: #ffd2ff;
  --table-pink-odd: #fff0ff;
  --table-pink-border: #ffb9ff;
}


/* =============================================================================
   1b. BRAND SYSTEM — per-bookmaker body classes prepíšu --brand-* premenné
   -----------------------------------------------------------------------------
   Použitie v komponentoch (namiesto zoznamu .tipsport, .fortuna atď.):

     .review-header        { background: var(--brand); color: var(--brand-text); }
     #review .button       { background: var(--brand); color: var(--brand-text); }
     table th              { background: var(--brand); color: var(--brand-text); }

   Automaticky sa prispôsobí farbe bookmakera cez <body class="tipsport">.
   =========================================================================== */
body.tipsport,
body.tipsport-casino {
  --brand: var(--tipsport);
  --brand-text: var(--tipsport-text);
  --brand-border: var(--tipsport-border);
  --toc-color: var(--tipsport);
  --toc-color-rgb: 30, 136, 229;
}

body.fortuna,
body.fortuna-casino {
  --brand: var(--fortuna);
  --brand-text: var(--fortuna-text);
  --brand-border: var(--fortuna-border);
  --toc-color: var(--fortuna);
  --toc-color-rgb: 255, 219, 1;
}

body.nike,
body.nike-casino {
  --brand: var(--nike);
  --brand-text: var(--nike-text);
  --brand-border: var(--nike-border);
  --toc-color: var(--nike);
  --toc-color-rgb: 241, 133, 16;
}

body.doxxbet,
body.doxxbet-casino {
  --brand: var(--doxxbet);
  --brand-text: var(--doxxbet-text);
  --brand-border: var(--doxxbet-border);
  --toc-color: var(--doxxbet);
  --toc-color-rgb: 32, 32, 32;
}

body.synottip,
body.synottip-casino {
  --brand: var(--synottip);
  --brand-text: var(--synottip-text);
  --brand-border: var(--synottip-border);
  --toc-color: var(--synottip);
  --toc-color-rgb: 207, 99, 61;
}

body.tipos,
body.tipos-casino {
  --brand: var(--tipos);
  --brand-text: var(--tipos-text);
  --brand-border: var(--tipos-border);
  --toc-color: var(--tipos);
  --toc-color-rgb: 37, 36, 123;
}

body.chance,
body.chance-casino {
  --brand: var(--chance);
  --brand-text: var(--chance-text);
  --brand-border: var(--chance-border);
  --toc-color: var(--chance);
  --toc-color-rgb: 0, 124, 77;
}

body.sazka,
body.sazka-casino {
  --brand: var(--sazka);
  --brand-text: var(--sazka-text);
  --brand-border: var(--sazka-border);
  --toc-color: var(--sazka);
  --toc-color-rgb: 253, 221, 49;
}


/* =============================================================================
   2. CSS RESET
   =========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { line-height: 1.5; -webkit-text-size-adjust: 100%; scroll-behavior: auto; background: #222; }
body { margin: 0; font-family: var(--font-body); font-size: 15px; line-height: 1.7; color: var(--text); background: #222; -webkit-font-smoothing: antialiased; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; }
iframe { display: block; border: 0; max-width: 100%; }


/* =============================================================================
   3. BASE TYPOGRAPHY
   =========================================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--primary);
}

h1 { font-size: 1.75rem; margin: 0 0 1rem; }
h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem; }
h3 { font-size: 1.25rem; margin: 2rem 0 0.75rem; }
h4 { font-size: 1.125rem; margin: 1.5rem 0 0.75rem; }
h5, h6 { font-size: 1rem; margin: 1rem 0 0.5rem; }

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--primary); text-decoration: underline; transition: color var(--transition); }
a:hover { color: var(--primary-dark); text-decoration: none; }

ul { list-style-type: square; padding-left: 1.25rem; margin: 0.5rem 0 1rem; }
ol { list-style-type: decimal; padding-left: 1.5rem; margin: 0.5rem 0 1rem; }
li { margin: 0.25rem 0; }

small, .small { font-size: 0.857rem; }
.left-col small, .content small { display: block; margin-bottom: 0.5rem; }
.big { font-size: 1.143rem; }
.bold { font-weight: 700 !important; }
.center { text-align: center !important; }
.left { text-align: left !important; }
.right { text-align: right !important; }
.middle { vertical-align: middle !important; }
.hidden { display: none !important; }
.underline { text-decoration: underline; }

hr {
  border: 0;
  height: 1px;
  background: var(--border);
  margin: 2rem 0;
}

del { text-decoration: line-through; color: var(--red); }
time { white-space: nowrap; }


/* =============================================================================
   4. UTILITY CLASSES
   =========================================================================== */
.l { float: left !important; }
.r { float: right !important; }
.c { margin: 0 auto; }
.l-margin { margin-left: 7px; }
.r-margin { margin-right: 7px; }
.b-margin { margin-bottom: 5px; }
.t-margin { margin-top: 2px; }
.l-r-margin { margin: 0 7px; }
.relative { position: relative; }
.inline { display: inline !important; }
.no-wrap { white-space: nowrap; }
.clear { clear: both; }
.offscreen { position: absolute; width: 1px; height: 1px; clip: rect(0,0,0,0); overflow: hidden; margin: -1px; padding: 0; border: 0; }

.cf::after, .header::after, .main::after, .footer::after, .post::after, .share-box::after {
  content: '';
  display: table;
  clear: both;
}

/* Text colors */
.red-text { color: var(--red) !important; }
.green-text { color: var(--green) !important; }
.blue-text { color: var(--blue) !important; }
.yellow-text { color: #FFFF00 !important; }
.purple-text { color: var(--purple) !important; }
.orange-text { color: var(--orange) !important; }

.inactive { filter: grayscale(100%); opacity: 0.5; }
.no-benefit { opacity: 0.3; }


/* =============================================================================
   5. LAYOUT — Mobile-first base
   =========================================================================== */
.container {
  width: 100% !important;
  max-width: var(--page-max-width) !important;
  margin: 0 auto;
  padding: 0;
  background: var(--bg);
  box-shadow: 0 0 30px #0000004c;
  box-sizing: border-box !important;
}

.main-container {
  width: 100% !important;
  max-width: var(--page-max-width) !important;
  box-sizing: border-box !important;
}

body > .container,
body::before {
  background: #222;
}

/* Header */
.header {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 0.75rem 0.5rem 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
  background: #222;
  border-bottom: none;
  gap: 0.5rem;
  transition: transform 0.3s ease;
  box-shadow: none;
}

.header-logo { color: var(--bg); flex: 1 !important; min-width: 0; }
.jump-menu button { color: var(--bg); border-color: var(--bg); }

.header-hidden {
  transform: translateY(-100%);
}

.main {
  background: var(--bg);
  display: flex;
  flex-direction: column;
}

/* CMSMS content wrapper */
.content {
  padding: 5px 5px 100px 5px;
  overflow-x: auto;
}

/* Left column */
.left-col {
  width: 100%;
  padding: 1rem;
  background: var(--bg);
  overflow-x: auto;
  min-width: 0;
}

/* Right column */
.right-col {
  width: 100%;
  padding: 1rem;
  background: var(--bg-light);
}

/* Wide template */
#wide .main {
  display: block;
  padding: 1rem;
}

#wide .left-col {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

/* Header logo */
.header-logo {
  display: block;
  height: 40px;
  overflow: hidden;
  text-indent: -9999px;
  background: url(/res/img/logo.svg) no-repeat 0 50% / contain;
  width: 200px;
  flex-shrink: 0;
}

.header-logo span { display: none; }

/* Header right — search + hamburger */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-left: auto;
}

/* Header search button */
.header-search {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 2px solid #ffffff66;
  border-radius: var(--radius);
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: var(--bg);
  transition: all var(--transition);
}
.header-search:hover { border-color: var(--primary); color: var(--primary); }
.header-search svg { width: 20px; height: 20px; }

.header-hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border: none;
  border-radius: var(--radius);
  width: 44px;
  height: 44px;
  cursor: pointer;
  color: var(--bg);
  transition: background var(--transition);
}
.header-hamburger:hover { background: var(--primary-dark); }

/* Hamburger icon — 3 lines */
.header-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bg);
  position: relative;
}
.header-hamburger span::before,
.header-hamburger span::after {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--bg);
  position: absolute;
  left: 0;
}
.header-hamburger span::before { top: -7px; }
.header-hamburger span::after { top: 7px; }

/* Jump menu — hidden on mobile */
.jump-menu { display: none; }


/* =============================================================================
   DISCLAIMER (18+ upozornenie)
   =========================================================================== */
.disclaimer {
  width: 100%;
  text-align: center;
  padding: 13px 20px;
  background: linear-gradient(180deg, #64748b0f, #64748b03);
  border-top: 2px solid #64748b40;
  font-size: 12.5px;
  line-height: 1.6;
  color: #7a7f88;
}

.disclaimer .age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 22px;
  background: var(--gray-700, #374151);
  border-radius: var(--radius-sm, 0.25rem);
  font-size: 10.5px;
  font-weight: 700;
  color: var(--bg);
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  padding: 0 5px;
}


/* =============================================================================
   BLOCKQUOTE
   =========================================================================== */
blockquote {
  position: relative;
  margin: 2rem 0;
  padding: 2.5rem 2rem 2rem;
  text-align: center;
  font-style: italic;
  color: var(--text, #374151);
  line-height: 1.7;
  background: var(--bg-light, #f9fafb);
  border-top: 2px solid var(--border, #e5e7eb);
  border-bottom: 2px solid var(--border, #e5e7eb);
  border-radius: var(--radius, 0.5rem);
}

blockquote::before {
  content: '\201C';
  position: absolute;
  top: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 4rem;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--primary, #408000);
  opacity: 0.35;
  line-height: 1;
  background: var(--bg, #fff);
  padding: 0 0.75rem;
  pointer-events: none;
}

blockquote::after { content: none; }

blockquote cite,
blockquote footer {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.875rem;
  font-style: normal;
  color: var(--text-muted, #6b7280);
  text-align: center;
}

blockquote cite::before,
blockquote footer::before {
  content: "\2014\00A0";
}

@media (min-width: 768px) {
  blockquote {
    padding: 3rem 3rem 2.5rem;
    font-size: 1.125rem;
  }
  blockquote::before {
    font-size: 5rem;
    top: -1.5rem;
  }
}
/* Stylesheet: 1. Foundations Modified On 2026-04-17 14:40:23 */
/* =============================================================================
   STAVKOVEKANCELARIE.COM COMPONENTS CORE
   =============================================================================
   Obsahuje: Navigation, Breadcrumb, Review Header, Rating, Tables (+ Hanging Indent),
   Buttons, Sidebar boxes, Notice boxes, Content boxes, Figures, Tabs, Meta box.
   
   Poradie načítania CSS:
     foundation-copy3-1.css
     → components-copy3-1-core.css    (ten súbor)
     → components-copy3-1-toc.css
     → components-copy3-1-extras.css
     → theme-copy3-1.css
     → desktop-copy3-1.css
     → responsive-copy3-1.css
     → api-copy3-1.css
   
   Bez media queries — breakpoint pravidlá sú v desktop-copy3-1.css / responsive-copy3-1.css.
   =========================================================================== */


/* =============================================================================
   7. NAVIGATION — Base styles
   =========================================================================== */
.menu {
  border-bottom: none;
  background: #222;
  position: relative;
  z-index: 90;
}

.menu .sub-menu {
  border-bottom: none;
}

.menu-toggle {
  display: none;
}

/* Mobile menu overlay */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: #0000008c;
  z-index: 190;
  -webkit-tap-highlight-color: transparent;
}
.menu-overlay.active { display: block; backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px); }

body.menu-open {
  overflow: hidden;
}

/* Slide-in panel — mobile base */
.main-menu {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 82%;
  max-width: 380px;
  background: #222;
  z-index: 200;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -6px 0 32px #00000099;
  padding-bottom: 3rem;
}
.main-menu.open {
  transform: translateX(0);
}

.main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.main-menu ul li { margin: 0; }

.main-menu ul li a,
.search-button {
  display: flex;
  align-items: center;
  padding: 1rem 1.25rem;
  color: #ffffffe6 !important;
  text-decoration: none !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.125rem;
  border-bottom: 1px solid #ffffff14;
  transition: background var(--transition), color var(--transition);
  min-height: 56px;
}

.main-menu ul li a:hover { background: #ffffff12; color: var(--bg); }

/* Special menu items — color 1st level only */
.main-menu > ul > li.bonus > a { color: var(--menu-bonus-text) !important; }
.main-menu > ul > li.casino > a { color: var(--menu-casino-text) !important; }
.main-menu > ul > li.code > a { color: var(--menu-code-text) !important; }
.main-menu ul li.live a span { background: var(--red); color: var(--bg); padding: 2px 8px; border-radius: var(--radius-sm); font-size: 0.875rem; font-weight: 700; }

/* Hide some items on mobile */
.main-menu ul li.search,
.main-menu ul li.feed,
.main-menu ul li.forum,
.main-menu ul li.facebook,
.main-menu ul li.instagram,
.main-menu ul li.x,
.main-menu ul li.tipsport-tv { display: none !important; }

/* Sub-menu base */
.sub-menu {
  background-color: transparent;
  background-image: none !important;
  padding: 0.2rem 0.75rem;
  border-bottom: none;
  line-height: 1.2;
}

.sub-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
}

.sub-menu ul li a {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  color: #ffffffcc;
  text-decoration: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8125rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: all var(--transition);
}

.sub-menu ul li a:hover { color: var(--bg); background: #ffffff1f; }

/* Section color hover variants */
.menu.bonus .sub-menu ul li a:hover { color: var(--bg); background: #ffffff33; }
.menu.casino .sub-menu ul li a { color: #ffffffd9; }
.menu.casino .sub-menu ul li a:hover { color: var(--bg); background: #ffffff26; }

/* Menu icon sprites */
.home a > span, .search-button > span, .feed a > span, .forum a > span,
.facebook a > span, .instagram a > span, .x a > span,
.whatsapp a > span, .pinterest a > span { display: none; }

.main-menu .home a > span {
  display: inline-block !important;
  width: 20px !important;
  height: 20px !important;
  background-image: url('/res/img/menu-icons.svg?v=3') !important;
  background-repeat: no-repeat !important;
  background-size: auto !important;
  background-position: 2px 50% !important;
  vertical-align: middle !important;
  filter: brightness(0) invert(1) !important;
}

.main-menu ul li a svg {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
}
.main-menu ul li a svg path,
.main-menu ul li a svg line,
.main-menu ul li a svg circle,
.main-menu ul li a svg polyline,
.main-menu ul li a svg polygon {
  color: var(--bg) !important;
  stroke: var(--bg) !important;
  fill: none !important;
}
.main-menu ul li a svg rect {
  stroke: none !important;
  fill: none !important;
}

.search-button { cursor: pointer; }


/* =============================================================================
   8. BREADCRUMB
   =========================================================================== */
.breadcrumb {
  background: var(--bg-light);
  padding: 0.15rem 1rem;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.75rem;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--text-muted);
  height: 1.75rem;
  line-height: 1.75rem;
}

.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: flex; align-items: center; height: 100%; }
.breadcrumb ol li { display: inline-flex; align-items: center; }
.breadcrumb ol li:not(:last-child)::after { content: "›"; color: var(--text-muted); margin: 0 0.35rem; }
.breadcrumb a { color: var(--text); text-decoration: none; transition: color var(--transition); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb li:last-child { color: var(--text-muted); }
.breadcrumb li:last-child a { color: inherit; }
.breadcrumb h1, .breadcrumb h2, .breadcrumb h3, .breadcrumb h4, .breadcrumb h5, .breadcrumb h6 { margin: 0; padding: 0; font-family: inherit; font-size: inherit; font-weight: inherit; line-height: inherit; color: inherit; display: inline; letter-spacing: normal; }
.breadcrumb .r { display: none; }


/* =============================================================================
   9. REVIEW HEADER
   =========================================================================== */
.review-header {
  border-bottom: 1px solid var(--border);
  padding: 0;
  background: var(--primary);
  color: var(--bg);
  position: -webkit-sticky;
  position: sticky;
  top: var(--sticky-top, 0px);
  z-index: 101;
  transition: none;
}

.review-header.is-sticking {
  box-shadow: var(--shadow-md);
}

.review-header > a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  padding: 0.75rem 1rem;
  color: var(--bg);
  flex: 1;
  min-width: 0;
}

.review-header img {
  height: 35px;
  width: auto;
}

.review-header .button {
  margin-left: auto;
  flex-shrink: 0;
  background: var(--red) !important;
  color: var(--bg) !important;
}
.review-header .button:hover {
  background: var(--red-dark) !important;
}

/* Review red buttons */
#review .left-col .button,
#review .content .button {
  background: var(--red) !important;
  color: var(--bg) !important;
}
#review .left-col .button:hover,
#review .content .button:hover {
  background: var(--red-dark) !important;
}
/* Yellow button exceptions */
#review .left-col .button.yellow,
#review .content .button.yellow,
#review .bonus-info-box .button,
#review #bonus-info-footer {
  background: linear-gradient(to bottom, var(--yellow-cta-light), var(--yellow-cta)) !important;
  color: #000 !important;
  border: 2px solid var(--yellow-cta-border);
  white-space: normal !important;
  word-break: keep-all;
  overflow-wrap: break-word;
}
#review .left-col .button.yellow:hover,
#review .content .button.yellow:hover,
#review .bonus-info-box .button:hover,
#review #bonus-info-footer:hover {
  background: linear-gradient(to bottom, var(--yellow-cta), var(--yellow-cta-dark)) !important;
}

.review-rating {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: #0000004c;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--bg);
  flex-shrink: 0;
}

.rating-text { font-size: 2rem; white-space: nowrap; }
.rating-value { font-size: 2rem; line-height: 1; display: inline-flex; align-items: baseline; }
.best-rating { display: inline; font-size: 0.875rem; color: #ffffffb2; vertical-align: baseline; }

.mobile-icons {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0.75rem;
  vertical-align: middle;
}

.mobile-icon {
  display: block;
  width: 25px;
  height: 32px;
  background: no-repeat 50% 50% / contain;
  opacity: 0.85;
  transition: opacity var(--transition);
  filter: brightness(0) invert(1);
}
.mobile-icon:hover { opacity: 1; }

.mobile-icon.android { background-image: url(/res/img/icon-android.svg); }
.mobile-icon.ios { background-image: url(/res/img/icon-apple.svg); }
.mobile-icon.huawei { background-image: url(/res/img/icon-huawei.svg); }

.review-header .share-buttons,
.review-header.is-sticking .share-buttons { display: none !important; }

.review-menu {
  display: none;
  background: #000000cc;
  color: var(--bg);
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.75rem;
  padding: 0.5rem 1rem;
  overflow-x: auto;
  white-space: nowrap;
}

.review-header.is-sticking .review-menu {
  display: flex;
  align-items: center;
  flex: 0 0 100%;
  padding: 0.25rem 1rem;
  font-size: 0.7rem;
  background: #000000b2;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.review-header.is-sticking .review-menu::-webkit-scrollbar { display: none; }

.review-menu ul { list-style: none; display: flex; gap: 1rem; padding: 0; margin: 0; white-space: nowrap; flex-wrap: nowrap; }
.review-menu li a { color: var(--bg) !important; text-decoration: none; }
.review-menu li a.yellow-text { color: #FFFF00 !important; }
.review-menu li a:hover { text-decoration: underline; }

.share-buttons { display: flex; gap: 0.25rem; margin-left: auto; }
.share-buttons a { display: flex; align-items: center; padding: 2px; }
.share-buttons svg { width: 14px; height: 14px; fill: var(--bg); border-radius: 2px; }
.share-buttons.big svg { width: 22px; height: 22px; padding: 4px; }
.icon-facebook { background-color: #3b5998; }
.icon-x { background-color: #1da1f2; }


/* =============================================================================
   10. RATING SYSTEM
   =========================================================================== */
.rating {
  background: url(/res/img/rating.svg) repeat-x 0 0 / 20px auto;
  height: 20px;
  width: 100px;
  display: inline-block;
  overflow: hidden;
}

.rating.big { background-size: 32px auto; height: 32px; width: 160px; }
.rating.bar { background-image: url(/res/img/rating-bar.svg); background-size: auto; width: 80px; }

.rating span {
  background: url(/res/img/rating.svg) repeat-x 0 -26px / 20px auto;
  height: 20px;
  display: block;
}
.rating.big span { background-position: 0 -42px; background-size: 32px auto; height: 32px; }
.rating.bar span { background-image: url(/res/img/rating-bar.svg); background-position: 0 -26px; background-size: auto; }
.rating span span, .logo span, .icon span, .sport-icon span, .payment-icon span { display: none; }

.bar-5 { width: 100%; } .bar-4 { width: 80%; } .bar-3 { width: 60%; } .bar-2 { width: 40%; } .bar-1 { width: 20%; }

.overall-rating {
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: center;
  padding: 0.5rem;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin: 5px auto;
  width: auto;
}
.overall-rating .rating-stars.rating { margin: 0; }

.sub-rating {
  display: inline-block;
  width: 40px;
  text-align: right;
  margin-left: 0.5rem;
}

.overall-rating .rating-value,
.overall-rating strong {
  font-size: 2rem;
  line-height: 1;
}
.overall-rating .best-rating {
  font-size: 1.125rem;
  vertical-align: baseline;
}

/* Best-rating in tfoot */
.overall-rating .best-rating,
table tfoot .best-rating,
.review-table .best-rating {
  color: var(--text-muted) !important;
}


/* =============================================================================
   11. TABLES
   =========================================================================== */
table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  font-size: 0.875rem;
  margin: 1rem 0 2rem;
}

table:has(+ small) { margin-bottom: 0.35rem; }
.recommended-box table:has(+ small) { margin-bottom: 0; }

table th {
  padding: 0.5rem 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  text-align: center;
  background: var(--primary);
  color: var(--bg);
  border: 1px solid var(--primary-dark);
  white-space: normal;
}

table th a { color: inherit !important; }

table td {
  padding: 0.5rem 0.75rem;
  vertical-align: middle;
  text-align: left;
  border: 1px solid var(--border);
  white-space: normal;
}

/* Utility triedy — manuálne prepísanie zalamovania per-tabuľka alebo per-bunka */
table.nowrap th, table.nowrap td,
th.nowrap, td.nowrap { white-space: nowrap !important; }

table.wrap th, table.wrap td,
th.wrap, td.wrap { white-space: normal !important; }

/* Buttony v tabuľkách — tiež nezalamovať */
table .button { white-space: nowrap !important; }

table tbody tr:nth-child(odd of :not(.hidden-row)) td { background: var(--bg); }
table tbody tr:nth-child(even of :not(.hidden-row)) td { background: var(--bg-light); }

table tbody tr.dark td,
table tbody tr td.dark,
table.dark tbody tr:nth-child(odd) td,
table.dark tbody tr:nth-child(even) td { background: var(--table-dark-even) !important; color: var(--bg) !important; border-color: var(--table-dark-border) !important; }
table.dark tbody tr:nth-child(odd) td { background: var(--table-dark-odd) !important; }

table tbody tr.hidden-row td { background: var(--bg-gray); }

table tfoot td {
  background: var(--bg-gray);
  font-weight: 700;
  border-radius: 0 !important;
  text-align: center;
}

table tfoot tr:last-child td {
  box-shadow: inset 0 3px 6px #00000014;
  border-top: 2px solid var(--border);
}

table caption {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  padding: 0.75rem;
  text-align: center;
  caption-side: top;
}

.table-wrap {
  position: relative;
  overflow-x: auto !important;
  -webkit-overflow-scrolling: touch !important;
  margin: 1rem 0 2rem;
  max-width: 100% !important;
}

.table-wrap table { margin: 0; }

.table-wrap table[id*="comparison"] {
  table-layout: auto;
}

table.compact { width: auto; }
table.compact.c { margin-left: auto; margin-right: auto; }

table.no-border, table.no-border td, table.no-border th { border: none !important; }
.no-border th, .no-border td { border-left: 0; border-right: 0; }

.fit tr td { padding: 0.35rem; }

table.highlight tr:hover td { background-color: #ffffc8 !important; }

.vertical th, .review-table th {
  text-align: left;
  background: var(--primary);
  color: var(--bg);
}


/* =============================================================================
   HANGING INDENT — ikony v prvom stĺpci vertical a non-vertical tabuliek
   -----------------------------------------------------------------------------
   Logika:
   - JS obalí emoji na začiatku bunky do <span class="cell-icon">
   - JS pridá .has-emoji alebo .has-svg na bunku, .has-icons na tabuľku
   - Bunka má padding-left (priestor pre ikonu) + .cell-icon je absolute
   - Výsledok: ikona vľavo od textu, text s druhým riadkom pod prvým
   =========================================================================== */

/* --- TH/TD s ikonami: relative position + padding pre ikonu --- */
table.vertical.has-icons tbody :is(td, th):first-child,
table:not(.vertical).has-icons tbody th {
  position: relative;
  padding-left: calc(var(--cell-padding-x, 0.75rem) + 1.5em);
}

/* --- Ikonka — absolute pozícia vľavo --- */
/* Default (1 riadok): vertikálne na strede bunky */
/* Pri viacriadkovom obsahu: JS pridá .is-multiline na bunku → ikona hore zarovno prvého riadku */
.cell-icon {
  position: absolute;
  left: var(--cell-padding-x, 0.75rem);
  top: 50%;
  transform: translateY(-50%);
  width: 1.15em;
  height: 1.15em;
  line-height: 1.15em;
  text-align: center;
  font-size: 1em;
}

/* Viacriadková bunka → ikona zarovno prvého riadku textu.
   Text zostáva vertikálne centrovaný v bunke (default vertical-align: middle).
   Pozíciu ikony (top) dopočítava JS (detectMultilineCells) aby presne
   sedela s prvým riadkom textu. */
table.has-icons tbody td.is-multiline > .cell-icon,
table.has-icons tbody th.is-multiline > .cell-icon,
table.has-icons tbody td.is-multiline > svg:first-child,
table.has-icons tbody th.is-multiline > svg:first-child {
  transform: none;
  /* top nastavuje JS inline style */
}

/* SVG v prvej bunke — rovnako ako emoji */
.vertical tbody :is(td, th):first-child > svg:first-child,
tbody th > svg:first-child {
  position: absolute;
  left: var(--cell-padding-x, 0.75rem);
  top: 50%;
  transform: translateY(-50%);
  width: 1.15em;
  height: 1.15em;
}

/* :has() fallback — bunka so SVG má padding aj bez JS */
table.vertical tbody :is(td, th):first-child:has(> svg:first-child),
table:not(.vertical) tbody th:has(> svg:first-child) {
  position: relative;
  padding-left: calc(var(--cell-padding-x, 0.75rem) + 1.5em);
}


.w3{width:3%}.w5{width:5%}.w9{width:9%}.w10{width:10%}.w14{width:14%}.w15{width:15%}.w20{width:20%}.w25{width:25%}.w26{width:26%}.w30{width:30%}.w35{width:35%}.w40{width:40%}.w45{width:45%}.w50{width:50%}.w55{width:55%}.w60{width:60%}

.table-rank { text-align: center; font-family: var(--font-heading); font-weight: 700; }
.table-button { text-align: center; padding: 0.35rem; }
.table-button a { font-size: 0.875rem; }

/* Medzera medzi buttonmi v bunke (aby sa neprilepili pri zalomení) */
.table-button .button { margin: 0.2rem; }
.table-button.left { text-align: left; }
.table-button.left .button { margin: 0.2rem 0.3rem 0.2rem 0; }

table .button {
  font-size: 0.8125rem;
  padding: 0.25rem 0.625rem;
}
.table-rating { text-align: center; font-family: var(--font-heading); font-weight: 700; }

.table-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  white-space: nowrap;
  overflow: visible;
  line-height: 25px;
  text-align: left;
  vertical-align: middle;
}

.table-logo a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  vertical-align: middle;
  font-size: 0;
}
.table-logo a .logo { font-size: 0.875rem; }
.table-logo a:hover { text-decoration: underline; }

.table-logo .recommended-bookmaker,
.table-logo .icon.recommended-bookmaker { display: none !important; }

.table-logo .tag.recommended,
.table-logo .recommended { display: none !important; }

.html-tip { cursor: help; }
.html-tip + .hidden { display: none !important; }

/* Info icons in tables */
table th .html-tip,
table td .html-tip,
table th .icon.info,
table td .icon.info {
  float: right;
  margin-left: 0.25rem;
  margin-top: -0.1rem;
  opacity: 0.6;
}
table th .html-tip:hover,
table td .html-tip:hover,
table th .icon.info:hover,
table td .icon.info:hover {
  opacity: 1;
}

.table-logo .l, .table-logo .r { float: none !important; }

.table-logo .tag {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  font-size: 0.55rem;
  padding: 3px 5px;
  border-radius: 4px;
  z-index: 10;
  line-height: 1.2;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 4px #0000004c;
  border: 1px solid #ffffff4c;
  transform: translate(-30px, -14px) rotate(8deg);
  margin-right: -28px;
}

table tr:hover .table-logo .tag {
  transform: translate(-30px, -14px) rotate(0deg) scale(1.05);
  transition: transform 0.2s ease;
}

table.dark th, table.dark td { color: var(--bg) !important; }
table.dark, table.dark td { border-color: var(--table-dark-border) !important; }
table.dark tr:nth-child(odd) td { background: var(--table-dark-odd) !important; }
table.dark tr:nth-child(even) td { background: var(--table-dark-even) !important; }
table.dark tfoot td { background: var(--table-dark-footer) !important; }
.dark a:not(.button) { color: inherit !important; text-decoration: underline !important; }
.dark a:not(.button):hover { text-decoration: none !important; }

td.dark, th.dark, tr.dark th, tr.dark td { background: var(--table-dark-even) !important; color: var(--bg) !important; border-color: var(--table-dark-border) !important; }

.horizontal-th { background: #1e3a5f !important; color: var(--bg) !important; text-align: center; padding: 0.6rem 1rem !important; white-space: normal !important; }
.horizontal-th a { color: var(--bg) !important; text-decoration: none; }
.horizontal-th a:hover { text-decoration: underline; }

/* Horizontal-th brand colors */
.tipsport .horizontal-th, .tipsport-casino .horizontal-th { background: var(--tipsport) !important; color: var(--bg) !important; }
.fortuna .horizontal-th, .fortuna-casino .horizontal-th { background: var(--fortuna) !important; color: #000 !important; }
.fortuna .horizontal-th a, .fortuna-casino .horizontal-th a { color: #000 !important; }
.nike .horizontal-th, .nike-casino .horizontal-th { background: var(--nike) !important; color: var(--bg) !important; }
.doxxbet .horizontal-th, .doxxbet-casino .horizontal-th { background: var(--doxxbet) !important; color: var(--bg) !important; }
.synottip .horizontal-th, .synottip-casino .horizontal-th { background: var(--synottip) !important; color: var(--bg) !important; }
.tipos .horizontal-th, .tipos-casino .horizontal-th { background: var(--tipos) !important; color: var(--bg) !important; }
.chance .horizontal-th, .chance-casino .horizontal-th { background: var(--chance) !important; color: var(--bg) !important; }
.sazka .horizontal-th, .sazka-casino .horizontal-th { background: var(--sazka) !important; color: var(--sazka-text) !important; }
.sazka .horizontal-th a, .sazka-casino .horizontal-th a { color: var(--sazka-text) !important; }

/* Tfoot th brand colors */
.tipsport .review-table tfoot th, .tipsport-casino .review-table tfoot th, .tipsport table tfoot th, .tipsport-casino table tfoot th { background: var(--tipsport) !important; color: var(--bg) !important; }
.fortuna .review-table tfoot th, .fortuna-casino .review-table tfoot th, .fortuna table tfoot th, .fortuna-casino table tfoot th { background: var(--fortuna) !important; color: #000 !important; }
.nike .review-table tfoot th, .nike-casino .review-table tfoot th, .nike table tfoot th, .nike-casino table tfoot th { background: var(--nike) !important; color: var(--bg) !important; }
.doxxbet .review-table tfoot th, .doxxbet-casino .review-table tfoot th, .doxxbet table tfoot th, .doxxbet-casino table tfoot th { background: var(--doxxbet) !important; color: var(--bg) !important; }
.synottip .review-table tfoot th, .synottip-casino .review-table tfoot th, .synottip table tfoot th, .synottip-casino table tfoot th { background: var(--synottip) !important; color: var(--bg) !important; }
.tipos .review-table tfoot th, .tipos-casino .review-table tfoot th, .tipos table tfoot th, .tipos-casino table tfoot th { background: var(--tipos) !important; color: var(--bg) !important; }
.chance .review-table tfoot th, .chance-casino .review-table tfoot th, .chance table tfoot th, .chance-casino table tfoot th { background: var(--chance) !important; color: var(--bg) !important; }
.sazka .review-table tfoot th, .sazka-casino .review-table tfoot th, .sazka table tfoot th, .sazka-casino table tfoot th { background: var(--sazka) !important; color: var(--sazka-text) !important; }

#hide-rows, #show-rows, .hidden-row { display: none; }

#show-bonus-terms-conditions,
#hide-bonus-terms-conditions { 
  text-align: center !important; 
  cursor: pointer;
  color: var(--bg) !important;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 0.5rem;
}
#show-bonus-terms-conditions::before,
#hide-bonus-terms-conditions::before {
  display: none !important;
}
#show-bonus-terms-conditions:hover,
#hide-bonus-terms-conditions:hover { 
  text-decoration: underline !important; 
}

/* Bonus terms colors per company */
.fortuna #show-bonus-terms-conditions, .fortuna-casino #show-bonus-terms-conditions,
.fortuna #hide-bonus-terms-conditions, .fortuna-casino #hide-bonus-terms-conditions { color: #000 !important; }
.doxxbet #show-bonus-terms-conditions, .doxxbet-casino #show-bonus-terms-conditions,
.doxxbet #hide-bonus-terms-conditions, .doxxbet-casino #hide-bonus-terms-conditions { color: var(--doxxbet-text) !important; }
.chance #show-bonus-terms-conditions, .chance-casino #show-bonus-terms-conditions,
.chance #hide-bonus-terms-conditions, .chance-casino #hide-bonus-terms-conditions { color: var(--chance-text) !important; }
.sazka #show-bonus-terms-conditions, .sazka-casino #show-bonus-terms-conditions,
.sazka #hide-bonus-terms-conditions, .sazka-casino #hide-bonus-terms-conditions { color: var(--sazka-text) !important; }

#bonus-terms-conditions { display: none; }
#bonus-terms-conditions > td { background: var(--bg-neutral); border-left: none; }

.sort th { cursor: pointer; position: relative; padding-bottom: 1rem; background: var(--primary); }

.table-skrill td { background: var(--green-light) !important; text-align: center; font-weight: 700; font-family: var(--font-heading); }
.table-skrill td a { color: var(--primary) !important; }

.other-payments td { padding: 0.75rem; }



/* =============================================================================
   14. BUTTONS
   =========================================================================== */
.button {
  display: inline-block;
  padding: 0.4rem 1rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--bg) !important;
  text-decoration: none !important;
  text-align: center;
  white-space: nowrap;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  background: var(--text-muted);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.button:hover { background: #4b5563; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.button:active { transform: translateY(0); }

.button.big { font-size: 1.125rem; padding: 0.625rem 1.5rem; }

.button.green { background: var(--green); }
.button.green:hover { background: #15803d; }
.button.red { background: var(--red); }
.button.red:hover { background: var(--red-dark); }
.button.blue { background: var(--blue); }
.button.blue:hover { background: #1d4ed8; }
.button.yellow { background: var(--yellow-dark); color: #000 !important; }
.button.yellow:hover { background: #ca8a04; }
.button.orange { background: var(--orange); }
.button.orange:hover { background: #ea580c; }
.button.purple { background: var(--purple); }
.button.purple:hover { background: #7e22ce; }

.button[class*="color-"] { box-shadow: var(--shadow-sm); }
.button[class*="color-"]:hover { filter: brightness(1.1); }
.button.color-tipsport { background: var(--tipsport) !important; color: var(--bg) !important; }
.button.color-fortuna { background: var(--fortuna) !important; color: #000 !important; }
.button.color-nike { background: var(--nike) !important; color: var(--bg) !important; }
.button.color-doxxbet { background: var(--doxxbet) !important; color: var(--doxxbet-text) !important; }
.button.color-synottip { background: var(--synottip) !important; color: var(--bg) !important; }
.button.color-tipos { background: var(--tipos) !important; color: var(--bg) !important; }
.button.color-chance { background: var(--chance) !important; color: var(--bg) !important; }
.button.color-sazka { background: var(--sazka) !important; color: var(--sazka-text) !important; }

.button-block { text-align: center; margin: 2rem 0; }
.button-block br { display: none; }
.button-block .button { margin: 0.25rem; }
.button-block small { display: block; margin-top: 0.5rem; font-size: 0.8125rem; color: var(--text-muted); }

.button-img { display: inline-block; margin: 0.25rem; }
.button-img img { border-radius: var(--radius); }

input.button { padding: 0.5rem 1rem; height: auto; }

/* Bonus CTA footer button */
#bonus-info-footer {
  display: block;
  text-align: center;
  padding: 1rem 1.5rem;
  margin: 2rem 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  color: #000 !important;
  text-decoration: none !important;
  white-space: normal !important;
  background: linear-gradient(to bottom, var(--yellow-cta-light), var(--yellow-cta));
  border: 2px solid var(--yellow-cta-border);
  border-radius: var(--radius);
  box-shadow: 0 3px 8px #00000026;
  transition: all var(--transition);
}
#bonus-info-footer:hover {
  background: linear-gradient(to bottom, var(--yellow-cta), var(--yellow-cta-dark));
  box-shadow: 0 4px 12px #00000033;
  transform: translateY(-1px);
}
#bonus-info-footer + small,
#bonus-info-footer + br + small {
  display: block;
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}


/* =============================================================================
   15. SIDEBAR BOXES
   =========================================================================== */
.box { margin-bottom: 1.5rem; }

.box > table,
.box > .review-table,
.bonus-box > table,
.bonus-box > .review-table {
  margin-top: 0;
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
}

.box-title + table,
.box-title + .review-table {
  margin-top: 0 !important;
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
}

.box-title + .box-content {
  margin-top: 0;
}

.box-title {
  background: var(--text);
  border-radius: var(--radius) var(--radius) 0 0;
  padding: 0;
}

.box-title h2, .box-title div {
  color: var(--bg);
  padding: 0.625rem 1rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

.box-content {
  background: var(--bg);
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-top: none;
  border-radius: 0 0 var(--radius) var(--radius);
}

.menu-box .box-title { background: var(--primary); }

.menu-box ul, .content-box ul, .useful-links-box ul { list-style: none; padding: 0; }
.menu-box ul li { padding: 0; border-bottom: 1px solid var(--border); }
.menu-box ul li:last-child { border-bottom: none; }
.menu-box a { display: block; padding: 0.5rem 0.75rem; text-decoration: none; color: var(--primary); font-family: var(--font-heading); font-size: 0.875rem; transition: background var(--transition); }
.menu-box a:hover { background: var(--bg-gray); color: var(--primary-dark); }

.website-box {
  position: relative;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.website-box a { text-decoration: none; display: block; }
.website-box img { width: 100%; height: auto; opacity: 0.9; transition: opacity var(--transition); }
.website-box:hover img { opacity: 1; }

.register-button {
  display: block;
  text-align: center;
  padding: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: #000;
  background: linear-gradient(var(--yellow-cta-light), #ffaa00);
  transition: all var(--transition);
}

.website-box:hover .register-button { background: var(--blue); color: var(--bg); }

.label {
  color: var(--bg);
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 0.2rem 0.625rem;
  position: absolute;
  right: 0;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  z-index: 10;
  max-width: 90%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  box-shadow: var(--shadow-sm);
}
.label-tip { background: var(--purple); top: 0.5rem; }
.label-recommended { background: var(--blue); top: 2.5rem; }
.label-no-fees { background: var(--accent); top: 4.5rem; }
.label-bonus { background: var(--red); top: 6.5rem; }
.label-extra-bonus { background: #000; top: 8.5rem; }
.label-limited { background: var(--magenta); top: 10.5rem; }
.label-new { background: var(--red); top: 12.5rem; }

.local-website { display: none; }

.bonus-box .box-title { background: var(--red); }
.bonus-box .box-title .yellow-text {
  text-shadow: 
    -1px -1px 0 #0000004c,
    1px -1px 0 #0000004c,
    -1px 1px 0 #0000004c,
    1px 1px 0 #0000004c,
    0 0 6px #00000033;
}

.benefits-box ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 0.25rem; }
.benefits-box li { padding-left: 22px; width: calc(50% - 0.5rem); font-family: var(--font-heading); font-size: 0.8125rem; background-repeat: no-repeat; background-size: 16px; background-position: 0 2px; }

.news-item, .promo-item { display: flex; gap: 0.75rem; padding: 0.75rem 0; border-bottom: 1px solid var(--border); align-items: flex-start; }
.news-item:last-child, .promo-item:last-child { border-bottom: none; }
.news-item img, .news-item .thumb { flex-shrink: 0; width: 80px; height: auto; border-radius: var(--radius-sm); }
.news-text, .promo-text { flex: 1; min-width: 0; }
.news-text h3, .news-item h3 { margin: 0; font-size: 0.875rem; }
.news-text a, .promo-text a { text-decoration: none; font-family: var(--font-heading); font-weight: 700; color: var(--primary); line-height: 1.35; display: block; }
.news-text a:hover, .promo-text a:hover { color: var(--text); }
.news-text small { font-size: 0.75rem; color: var(--text-muted); display: block; margin-top: 0.25rem; }
.news-dots { color: var(--text-muted); }
.news-more { color: var(--text-muted); font-size: 0.8125em; font-weight: 400; cursor: pointer; }
.news-more:hover { color: var(--primary); text-decoration: underline; }
.news-expand { display: none; }

.bonuses-box h3 { color: var(--bonus-text); }
.bonuses-box .box-content { background: var(--bonus-bg); border-color: var(--bonus-bg-border); }

.payment-methods-box img { height: 25px; margin: 0.25rem 0.25rem; border-radius: var(--radius-sm); display: inline-block; vertical-align: middle; }
.deposit-box img, .withdrawal-box img { height: 25px; margin-right: 5px; margin-bottom: 5px; border-radius: var(--radius-sm); display: inline-block; }

.arrow { font-family: var(--font-heading); text-decoration: none !important; color: var(--primary); font-weight: 700; font-size: 0.875rem; display: block; text-align: right; clear: both; padding-top: 0.5rem; }
.arrow::before { content: "▶"; font-size: 0.625rem; margin-right: 0.35rem; }
.arrow:hover { color: var(--text); }
tfoot .arrow { text-align: inherit; display: inline-block; padding-top: 0; white-space: normal; }

.line { border-bottom: 1px solid var(--border); padding-top: 0.75rem; margin-bottom: 0.75rem; clear: both; }


/* =============================================================================
   16. NOTICE BOXES
   =========================================================================== */
.notice-success, .notice-error, .notice-warning, .notice-info {
  margin: 1rem 0;
  padding: 0.75rem 1rem 0.75rem 3rem;
  background: no-repeat 0.75rem 50% / 24px auto;
  border: 1px solid;
  border-left-width: 4px;
  border-radius: var(--radius);
  font-size: 0.875rem;
  line-height: 1.5;
}

.notice-success { background: var(--green-light) url(/res/img/icon-notice-success.svg) no-repeat 0.75rem 50% / 24px auto; border-color: #86efac; border-left-color: var(--green); color: #166534; }
.notice-error { background: var(--red-light) url(/res/img/icon-notice-error.svg) no-repeat 0.75rem 50% / 24px auto; border-color: #fca5a5; border-left-color: var(--red); color: #991b1b; }
.notice-warning { background: var(--amber-light) url(/res/img/icon-notice-warning.svg) no-repeat 0.75rem 50% / 24px auto; border-color: #fde68a; border-left-color: var(--amber); color: #92400e; }
.notice-info { background: var(--blue-light) url(/res/img/icon-notice-info.svg) no-repeat 0.75rem 50% / 24px auto; border-color: #bfdbfe; border-left-color: var(--blue); color: #1e3a8a; }

.notice-success a, .notice-error a, .notice-warning a, .notice-info a { color: inherit; }


/* =============================================================================
   16b. DISCLAIMER — 18+ hazardné hry (Slate Fade)
   Full-width minimalistický disclaimer s horizontálnym fade pozadím
   a tenkou horizontálnou čiarou. Nezávisí od .notice-* — samostatný komponent.
   =========================================================================== */
.disclaimer {
  width: 100%;
  text-align: center;
  padding: 13px 20px;
  font-size: 12.5px;
  line-height: 1.6;
  color: #7a7f88;
  position: relative;
  background: linear-gradient(90deg,
    transparent 0%,
    #64748b0a 25%,
    #64748b12 50%,
    #64748b0a 75%,
    transparent 100%
  );
}
.disclaimer::before {
  content: "18+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 22px;
  background: #475569;
  border-radius: 4px;
  font-size: 10.5px;
  font-weight: 700;
  color: #fff;
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  padding: 0 5px;
}
.disclaimer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg,
    transparent,
    #64748b59 30%,
    #64748b59 70%,
    transparent
  );
}
.disclaimer a { color: inherit; }


/* =============================================================================
   17. CONTENT BOXES
   =========================================================================== */
.example-box, .note-box, .warning-box, .tip-box, .faq-box, .instruction-box {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem 1rem 5rem;
  background: no-repeat 1rem 1rem / 42px auto;
  border: 1px solid;
  border-left-width: 5px;
  border-radius: var(--radius);
  overflow: hidden;
}

.tip-box { background-image: url(/res/img/icon-tip.png); }
.warning-box { background-image: url(/res/img/icon-warning.png); }
.note-box { background-image: url(/res/img/icon-note.png); }
.example-box { background-image: url(/res/img/icon-example.png); background-position: 1rem 1.25rem; }
.faq-box { background-image: url(/res/img/icon-faq.png); }
.instruction-box { background-image: url(/res/img/icon-instruction.png); }

.pros-box, .cons-box {
  margin: 1.5rem 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.example-box h2, .note-box h2, .warning-box h2, .tip-box h2, .pros-box h2, .cons-box h2, .faq-box h2, .instruction-box h2,
.example-box h3, .note-box h3, .warning-box h3, .tip-box h3, .pros-box h3, .cons-box h3, .faq-box h3, .instruction-box h3 {
  margin-top: 0.25rem;
  color: inherit;
}

.title { display: block; font-family: var(--font-heading); font-size: 1.25rem; margin: 0 0 0.5rem; line-height: 1.3; font-weight: 700; }

.tip-box { background-color: var(--green-light); border-color: #86efac; border-left-color: var(--primary); color: #166534; }
.warning-box { background-color: var(--red-light); border-color: #fca5a5; border-left-color: var(--red); color: #991b1b; }
.note-box { background-color: var(--amber-light); border-color: #fde68a; border-left-color: var(--amber); color: #92400e; }
.example-box, .faq-box { background-color: var(--blue-light); border-color: #bfdbfe; border-left-color: var(--blue); color: #1e3a8a; }
.instruction-box { background-color: var(--purple-light); border-color: #c4b5fd; border-left-color: var(--purple); color: #5b21b6; }

.pros-box {
  background: var(--bg);
  border: 2px solid #4ade80 !important;
  padding: 0 !important;
  border-left-width: 2px !important;
}
.pros-box > h2, .pros-box > h3, .pros-box > strong.title { margin: 0 !important; padding: 0.75rem 1rem !important; background: #22c55e !important; color: var(--bg) !important; font-size: 1.125rem !important; display: block; }
.pros-box > ul { padding: 1rem 1rem 1rem 2rem; list-style-type: disc; }
.pros-box > ul li { color: var(--text); margin-bottom: 0.25rem; }
.pros-box > ul li::marker { color: #22c55e; }

.cons-box {
  background: var(--bg);
  border: 2px solid #f87171 !important;
  padding: 0 !important;
  border-left-width: 2px !important;
}
.cons-box > h2, .cons-box > h3, .cons-box > strong.title { margin: 0 !important; padding: 0.75rem 1rem !important; background: #ef4444 !important; color: var(--bg) !important; font-size: 1.125rem !important; display: block; }
.cons-box > ul { padding: 1rem 1rem 1rem 2rem; list-style-type: disc; }
.cons-box > ul li { color: var(--text); margin-bottom: 0.25rem; }
.cons-box > ul li::marker { color: #ef4444; }

.example-box a, .note-box a, .warning-box a, .tip-box a, .pros-box a, .cons-box a, .faq-box a, .instruction-box a { color: inherit; }

.faq-box h3 { font-size: 1.25rem; }
.faq-box div[itemprop="acceptedAnswer"] { margin: 1rem 0; }

.notice-promo {
  margin: 1rem 0;
  padding: 0;
  border-radius: var(--radius);
  background: #0080ff url(/res/img/bg-promo.png) no-repeat 105% 50% / 128px auto;
  color: var(--bg);
  font-family: var(--font-heading);
  font-size: 1rem;
  text-shadow: 1px 1px 3px #000;
  line-height: 1.3;
  display: flex;
  align-items: center;
  min-height: 2.75rem;
  overflow: hidden;
}
.notice-promo > strong {
  flex-shrink: 0;
  padding: 0.5rem 0.75rem;
  align-self: stretch;
  display: flex;
  align-items: center;
  background: #00000026;
  white-space: nowrap;
}
.notice-promo > a {
  color: var(--bg);
  flex: 1;
  min-width: 0;
  padding: 0.5rem 0.75rem;
  text-decoration: underline;
}
.notice-promo > a:hover { text-decoration: none; }
.notice-promo a { color: var(--bg); }

.close-box { padding-right: 2.75rem !important; position: relative; }
.close-box.notice-promo { padding-right: 0 !important; }
.close-box.notice-promo > .close { position: relative; top: auto; transform: none; flex-shrink: 0; padding: 0 0.75rem; height: auto; width: auto; align-self: stretch; display: flex; align-items: center; }
.close {
  background: none;
  border: 0;
  height: 24px;
  padding: 0;
  position: absolute;
  right: 0.625rem;
  top: 50%;
  transform: translateY(-50%);
  width: 19px;
  cursor: pointer;
}
.close svg { opacity: 0.5; fill: var(--bg); width: 14px; height: 14px; }
.close:hover svg { opacity: 1; fill: #ff0000; }


/* =============================================================================
   18. FIGURES & IMAGES
   =========================================================================== */
figure { margin: 1.5rem 0; clear: both; }
figcaption { clear: both; margin-top: 0.5rem; font-size: 0.8125rem; color: var(--text-muted); text-align: center; font-style: italic; }

.c-box, .c-img { text-align: center; margin: 1.5rem auto; clear: both; }
.c-box img, .c-img img, .l-box img, .r-box img { border-radius: var(--radius); }

.c-box *, .l-box *, .r-box * { margin: 0 auto 5px !important; }
.c-box { font-family: var(--font-heading); font-weight: 700; text-align: center; overflow: hidden; }

.l-box, .l-img { margin: 0 0 1rem; }
.r-box, .r-img { margin: 0 0 1rem; }

.mosaic { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.mosaic img { flex: 1 1 auto; max-width: calc(50% - 0.25rem); height: auto; }
.mosaic a { display: contents; }
.mosaic * { margin: 0 !important; }

.article-img, .page-img { width: 100%; height: auto; border-radius: var(--radius); margin-bottom: 1.5rem; }
div.article-img { background: var(--table-dark-even) url(/res/img/logo.svg) no-repeat 50% 50% / 75% auto; height: 200px; border-radius: var(--radius); }

.qr-code { display: block; margin: 1.5rem auto 0; padding: 0.75rem; background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius); max-width: 200px; }


/* =============================================================================
   19. TABS
   =========================================================================== */
.tabs { 
  margin-top: 1.5rem; 
  margin-bottom: 0 !important; 
  width: 100% !important;
  overflow-x: auto !important; 
  -webkit-overflow-scrolling: touch !important; 
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
  border-bottom: none !important;
  position: relative;
  z-index: 2;
}
.tabs::-webkit-scrollbar { display: none !important; }
.tabs ul { 
  list-style: none; 
  display: flex !important; 
  flex-wrap: nowrap !important; 
  width: max-content !important; 
  min-width: 100% !important; 
  margin: 0 !important; 
  padding: 0 1.5rem 0 0 !important; 
  gap: 0.25rem !important; 
}
.tabs ul li {
  display: block !important;
  flex: 0 0 auto !important;
}
.tabs ul li a {
  white-space: nowrap !important;
  display: block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: var(--text-muted);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  transition: all var(--transition);
}
.tabs ul li a:hover { background: var(--bg-gray); color: var(--primary); }
.tabs ul li.active a { background: var(--primary); color: var(--bg); }

.tab-content { display: none; padding: 1rem; border: 1px solid var(--border); border-top: none; border-radius: 0 0 var(--radius) var(--radius); overflow-x: auto; -webkit-overflow-scrolling: touch; }
.tab-content.first { display: block; }

.tabs + p, 
.tabs + br,
.tabs + div:empty {
  display: none !important;
  margin: 0 !important;
}


/* =============================================================================
   20. META BOX — info o aktualizácii a autorovi pod nadpisom
   -----------------------------------------------------------------------------
   HTML: <div class="meta-box">Aktualizované: 14. 4. 2026 | Autor článku:
         <a href="/o-nas/#redakcia">Michal Moravec</a></div>
   =========================================================================== */
.meta-box {
  display: block;
  padding: 0.5rem 0.875rem;
  margin: 0 0 1.25rem;
  background: var(--bg-light, #f9fafb);
  border: 1px solid var(--border, #e5e7eb);
  border-left: 3px solid var(--primary, #408000);
  border-radius: var(--radius, 0.5rem);
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--text-muted, #6b7280);
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

/* Tenký scrollbar */
.meta-box::-webkit-scrollbar { height: 4px; }
.meta-box::-webkit-scrollbar-thumb { background: var(--border, #e5e7eb); border-radius: 2px; }

.meta-box a {
  color: var(--primary, #408000) !important;
  text-decoration: none;
  font-weight: 600;
  white-space: nowrap;
}

.meta-box a:hover {
  text-decoration: underline;
  color: var(--primary-dark, #326400) !important;
}

.meta-box + table,
.meta-box + .table-wrap { margin-top: 0.5rem; }
.meta-box + h2 { margin-top: 1.25rem; }


.intro { font-size: 1rem; line-height: 1.7; margin-bottom: 1rem; }
.intro a[rel~="sponsored"] { color: var(--red); }
/* Stylesheet: 2. Components - core Modified On 2026-04-17 14:43:14 */
/* =============================================================================
   STAVKOVEKANCELARIE.COM — COMPONENTS TOC
   =============================================================================
   Premium Table of Contents s timeline, collapsible, badge a watermark.
   
   Obsahuje:
   - FOUC prevencia (pre-JS initial state)
   - Gradient header s SVG hamburger ikonou (prispôsobuje sa cez --toc-color)
   - Badge "X sekcií" vpravo
   - Timeline čiara vľavo s bodkami pri každej položke
   - Fade-out overlay a toggle button (Zobraziť viac / menej)
   - Watermark lupa + dokument (decent dekorácia)
   - #review → TOC skrytý (obsah je v fixed review headeri)
   - Bookmaker-specific --toc-color override (tipsport, fortuna, nike)
   
   Poradie načítania CSS:
     foundation-copy3-1.css
     → components-copy3-1-core.css
     → components-copy3-1-toc.css     (ten súbor)
     → components-copy3-1-extras.css
     → theme-copy3-1.css
     ...
   =========================================================================== */


/* =============================================================================
   21. TOC — Premium Table of Contents (timeline + collapsible + badge + watermark)
   =========================================================================== */

/* FOUC prevencia — pred JS inicializáciou skry 4. a ďalšie <li>.
   JS potom odoberie starý stav a pridá .toc-hidden-item triedu,
   takže CSS prechod prebehne z predpočítaného 0fr stavu.
   Aplikuje sa na mobile aj desktop (rovnaké správanie). */
nav.toc:not(.toc-ready) .box-content ul > li:nth-child(n+4) {
  display: grid;
  grid-template-rows: 0fr;
  min-height: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
  overflow: hidden;
}
nav.toc:not(.toc-ready) .box-content ul > li:nth-child(n+4) > a {
  overflow: hidden;
  min-height: 0;
  height: 0;
  padding: 0;
}
nav.toc:not(.toc-ready) .box-content ul > li:nth-child(n+4)::before {
  display: none;
}

nav.toc {
  display: block;
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 100%;
  margin: 1rem 0 1.5rem 0;
  padding: 0;
  background: var(--bg);
  border: 1px solid var(--border);
  box-shadow: 0 1px 3px #0000000d;
  border-radius: var(--radius);
  overflow: hidden;
}

#review .toc {
  position: relative;
  background: var(--bg);
  width: 100%;
  max-width: 100%;
  height: auto;
  float: none;
  margin: 0 0 1.5rem;
}

/* --- HEADER (box-title) --- */
nav.toc .box-title {
  background: linear-gradient(to bottom, var(--border) 0%, var(--border) 60%, var(--bg-gray) 100%);
  border: 0;
  height: 44px;
  padding: 0 1rem;
  cursor: default;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  margin: 0;
  border-radius: var(--radius) var(--radius) 0 0;
}

nav.toc .box-title h2,
nav.toc .box-title div {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: normal;
  color: var(--text);
  margin: 0;
  height: 100%;
  line-height: 1.2;
  padding-left: 40px;
  padding-right: 0;
  background-size: 28px 28px;
  background-position: left center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Crect width='28' height='28' rx='6' fill='%23408000'/%3E%3Cline x1='8' y1='9' x2='20' y2='9' stroke='%23fff' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='8' y1='14' x2='20' y2='14' stroke='%23fff' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='8' y1='19' x2='16' y2='19' stroke='%23fff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  text-shadow: 0 1px 2px #0000001a;
  text-decoration: underline;
  text-underline-offset: 3px;
  display: flex;
  align-items: center;
}

/* Bookmaker varianty SVG ikony (override pre body class) */
body.tipsport nav.toc .box-title h2,
body.tipsport nav.toc .box-title div,
body.tipsport-casino nav.toc .box-title h2,
body.tipsport-casino nav.toc .box-title div {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Crect width='28' height='28' rx='6' fill='%231e88e5'/%3E%3Cline x1='8' y1='9' x2='20' y2='9' stroke='%23fff' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='8' y1='14' x2='20' y2='14' stroke='%23fff' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='8' y1='19' x2='16' y2='19' stroke='%23fff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

body.fortuna nav.toc .box-title h2,
body.fortuna nav.toc .box-title div,
body.fortuna-casino nav.toc .box-title h2,
body.fortuna-casino nav.toc .box-title div {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Crect width='28' height='28' rx='6' fill='%23ffdb01'/%3E%3Cline x1='8' y1='9' x2='20' y2='9' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='8' y1='14' x2='20' y2='14' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='8' y1='19' x2='16' y2='19' stroke='%23000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

body.nike nav.toc .box-title h2,
body.nike nav.toc .box-title div,
body.nike-casino nav.toc .box-title h2,
body.nike-casino nav.toc .box-title div {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Crect width='28' height='28' rx='6' fill='%23f18510'/%3E%3Cline x1='8' y1='9' x2='20' y2='9' stroke='%23fff' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='8' y1='14' x2='20' y2='14' stroke='%23fff' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='8' y1='19' x2='16' y2='19' stroke='%23fff' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

/* --- BADGE "X sekcií" (JS vloží .toc-badge do .box-title) --- */
nav.toc .box-title .toc-badge {
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--text-muted);
  background: #ffffffb2;
  padding: 2px 10px;
  border-radius: 1rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* --- BOX CONTENT --- */
nav.toc .box-content {
  position: relative;
  padding: 0.5rem 1rem 3rem 1rem;
  background: linear-gradient(to bottom, var(--bg-gray) 0%, var(--bg) 20px, var(--bg) 100%);
  text-align: left;
  border-radius: 0 0 var(--radius) var(--radius);
  border: none;
}

/* Keď TOC má <= 3 položky (JS nepridá .toc-hidden-item a toggle nevytvorí),
   padding-bottom netreba, len 0.75rem */
nav.toc:not(:has(.toc-hidden-item)) .box-content {
  padding-bottom: 0.75rem;
}

/* --- FADE-OUT overlay (mobile, keď nie je expanded) --- */
nav.toc .box-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5.5rem;
  background: linear-gradient(to bottom, #ffffff00 0%, #ffffff66 35%, #ffffff99 55%, #ffffffcc 75%, var(--bg) 100%);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 4;
}

nav.toc.expanded .box-content::after { opacity: 0; }
nav.toc.expanded .box-content { padding-bottom: 0.75rem; }

/* --- WATERMARK (decent lupa + dokument, desktop only) --- */
nav.toc .box-content::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 130px;
  height: 130px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 130 130'%3E%3Crect x='15' y='10' width='65' height='85' rx='4' fill='none' stroke='%23374151' stroke-width='2.5'/%3E%3Cline x1='28' y1='30' x2='65' y2='30' stroke='%23374151' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='28' y1='42' x2='60' y2='42' stroke='%23374151' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='28' y1='54' x2='55' y2='54' stroke='%23374151' stroke-width='2' stroke-linecap='round'/%3E%3Cline x1='28' y1='66' x2='45' y2='66' stroke='%23374151' stroke-width='2' stroke-linecap='round'/%3E%3Ccircle cx='90' cy='75' r='25' fill='none' stroke='%23374151' stroke-width='3'/%3E%3Cline x1='108' y1='93' x2='122' y2='107' stroke='%23374151' stroke-width='4' stroke-linecap='round'/%3E%3Ccircle cx='90' cy='75' r='15' fill='none' stroke='%23374151' stroke-width='1' stroke-dasharray='3 3'/%3E%3C/svg%3E");
}

@media (max-width: 767px) {
  nav.toc .box-content::before { display: none; }
}

/* --- UL + TIMELINE čiara --- */
nav.toc .box-content ul {
  list-style: none;
  padding: 0 0 0 32px;
  margin: 0;
  position: relative;
}

nav.toc .box-content > ul::before {
  content: '';
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 16px;
  width: 2px;
  background: linear-gradient(to bottom, var(--toc-color), var(--border));
  border-radius: 1px;
  pointer-events: none;
}

/* --- LI + bodky na timeline --- */
nav.toc .box-content ul li {
  display: block;
  position: relative;
  padding: 0;
  margin: 0;
}

nav.toc .box-content ul li:last-child { padding-bottom: 0; }

/* Opacity klesajúca pri prvých 3 položkách (mobile, not expanded) */
nav.toc:not(.expanded) .box-content ul li:nth-child(2) { opacity: 0.93; }
nav.toc:not(.expanded) .box-content ul li:nth-child(3) { opacity: 0.86; }
nav.toc.expanded .box-content ul li { opacity: 1; }

/* Bodka — prázdny krúžok */
nav.toc .box-content ul li::before {
  content: '';
  position: absolute;
  left: -19px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--text-light);
  z-index: 1;
  transition: all 0.2s ease;
  font-size: 0;
  line-height: 0;
  color: transparent;
  font-weight: normal;
  margin: 0;
}

nav.toc .box-content ul li:hover::before {
  border-color: var(--toc-color);
  background: var(--toc-color);
  box-shadow: 0 0 6px rgba(var(--toc-color-rgb), 0.35);
}

/* Review (bookmaker farba sa dedí cez body class → --toc-color) */
#review nav.toc .box-content > ul::before {
  background: linear-gradient(to bottom, var(--toc-color), var(--border));
}

#review nav.toc .box-content ul li:hover::before {
  border-color: var(--toc-color);
  background: var(--toc-color);
  box-shadow: 0 0 6px rgba(var(--toc-color-rgb), 0.35);
}

/* --- LINKY --- */
nav.toc a {
  display: block;
  padding: 0.3125rem 0.5rem;
  border-radius: var(--radius-sm);
  color: var(--text);
  text-shadow: none;
  line-height: 1.4;
  font-weight: 400;
  text-decoration: none;
  font-size: 0.8125rem;
  text-align: left;
  transition: color 0.2s ease, font-weight 0.15s ease;
}

nav.toc a:hover {
  color: var(--toc-color);
  text-decoration: none;
  background: none;
  font-weight: 600;
}

#review nav.toc a:hover { color: var(--toc-color); }

/* --- HIDDEN ITEMS (mobile, keď nie je expanded) --- */
nav.toc .box-content ul li.toc-hidden-item {
  display: grid;
  grid-template-rows: 0fr;
  min-height: 0;
  padding: 0;
  margin: 0;
  opacity: 0;
  overflow: hidden;
  transition: grid-template-rows 0.3s ease, opacity 0.3s ease;
}

nav.toc .box-content ul li.toc-hidden-item::before {
  display: none;
}

nav.toc .box-content ul li.toc-hidden-item > a {
  overflow: hidden;
  min-height: 0;
  height: 0;
  padding: 0;
}

nav.toc.expanded .box-content ul li.toc-hidden-item {
  grid-template-rows: 1fr;
  opacity: 1;
  overflow: visible;
}

nav.toc.expanded .box-content ul li.toc-hidden-item::before {
  display: block;
}

nav.toc.expanded .box-content ul li.toc-hidden-item > a {
  height: auto;
  min-height: auto;
  padding: 0.3125rem 0.5rem;
  overflow: visible;
  line-height: 1.4;
}

/* --- TOGGLE BUTTON "Zobraziť viac / menej" --- */
nav.toc .toc-toggle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0.5rem;
  width: auto;
  padding: 4px 12px;
  background: var(--border);
  border: 1px solid var(--text);
  color: var(--text-muted);
  font-size: 0.6875rem;
  font-weight: 700;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.2s, color 0.2s;
  user-select: none;
  border-radius: 1rem;
  z-index: 5;
  box-shadow: 0 2px 6px #0000001a;
}

nav.toc.expanded .toc-toggle {
  position: relative;
  left: auto;
  bottom: auto;
  transform: none;
  display: block;
  margin: 1rem auto 0.75rem auto;
}

nav.toc .toc-toggle:hover {
  background: var(--border-dark);
  color: var(--text);
}

nav.toc .toc-toggle::after {
  content: " \25BC";
  font-size: 0.85em;
  margin-left: 6px;
  display: inline-block;
  transition: transform 0.3s;
}

nav.toc.expanded .toc-toggle::after { transform: rotate(180deg); }

nav.toc .toc-toggle .show-text { display: inline; }
nav.toc .toc-toggle .hide-text { display: none; }
nav.toc.expanded .toc-toggle .show-text { display: none; }
nav.toc.expanded .toc-toggle .hide-text { display: inline; }

/* --- REVIEW šablóna — TOC skrytý (obsah je v fixed review headeri) --- */
#review nav.toc {
  display: none !important;
}


/* Bookmaker --toc-color overrides sú teraz v foundation-copy3-1.css
   (sekcia 1b. BRAND SYSTEM) — všetky bookmakery naraz, nie len 3. */
/* Stylesheet: 3.Components - toc Modified On 2026-04-17 14:43:27 */
/* =============================================================================
   STAVKOVEKANCELARIE.COM — COMPONENTS EXTRAS
   =============================================================================
   Ďalšie komponenty, utility a vychytávky:
   - Footer, Share Footer, Forms
   - Scroll-to-top, Animations
   - Code chip (kopírovateľné promo kódy)
   - Anchor linky, Download linky
   - Bookmaker zvýrazňovač a pilulky
   - Zoznamy (zelené bodky, číselné kruhy)
   - Author Quote
   - Button-img (obrázok ako button)
   - Underline utility
   - Share komponent
   - Screenshot + GLightbox (lightbox pre obrázky)
   - GLightbox Custom Toolbar (counter + zoom + close)
   
   Poradie načítania CSS:
     foundation-copy3-1.css
     → components-copy3-1-core.css
     → components-copy3-1-toc.css
     → components-copy3-1-extras.css  (ten súbor)
     → theme-copy3-1.css
     ...
   =========================================================================== */

/* =============================================================================
   23. FOOTER
   =========================================================================== */
.footer {
  color: #aaa;
  padding: 1rem;
  background: #222;
  border-top: 4px solid var(--primary);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  line-height: 1.5;
  text-align: center;
}

.footer a { color: var(--bg); text-decoration: none; padding: 0 3px; }
.footer a:hover { text-decoration: underline; }

.footer .l, .footer .r { float: none !important; display: block !important; margin-bottom: 0.25rem; text-align: center !important; width: 100%; }

.footer-legal {
  color: #888;
  text-align: center;
  font-size: 0.75rem;
  padding: 0.75rem 1rem;
  clear: both;
  border-top: 1px solid var(--table-dark-footer);
  margin-top: 0.75rem;
}
.footer-legal a { color: inherit; text-decoration: underline; }
.footer-legal a:hover { color: var(--bg); }

.footer .center {
  text-align: center;
  font-size: 0.75rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--table-dark-footer);
  width: 100%;
}


/* =============================================================================
   24. SHARE FOOTER
   =========================================================================== */
.share-footer {
  background: var(--bg-gray);
  border-top: 3px solid var(--primary);
  text-align: center;
  padding: 1.5rem 1rem;
  clear: both;
  margin-top: 3rem;
}

.share-footer p { font-family: var(--font-heading); font-size: 1.25rem; margin: 0 0 0.75rem; }


/* =============================================================================
   25. FORMS
   =========================================================================== */
textarea { resize: vertical; }
label, button, select { cursor: pointer; }

input:not([type="button"]):not([type="submit"]):not([type="reset"]):not([type="checkbox"]):not([type="radio"]):not([type="file"]),
textarea, select {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 0.625rem 1rem;
  border-radius: var(--radius);
  width: 100%;
  max-width: 100%;
  transition: border-color var(--transition);
}

input:focus, select:focus, textarea:focus { border-color: var(--primary); outline: none; }



/* =============================================================================
   29. SCROLL TO TOP
   =========================================================================== */
.scroll-top {
  display: none;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: var(--bg);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  z-index: 1000;
  box-shadow: var(--shadow-md);
  transition: background var(--transition);
  align-items: center;
  justify-content: center;
}
.scroll-top:hover { background: var(--primary-dark); }
.scroll-top::after { 
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-top: 3px solid var(--bg);
  border-right: 3px solid var(--bg);
  transform: rotate(-45deg);
  margin-top: 4px;
}

.side-box, .banner-side, .cb, .lh, .rh { display: none; }
.banner-top { text-align: center; padding: 0.5rem; background: #222 !important; }
.banner-sidebar { text-align: center; margin: 1rem 0; }
.banner-home { text-align: center; margin: 0.5rem 0; }

.banner-box { text-align: center; margin: 1rem 0; }
.banner-box iframe, .banner-box img { margin: 0 auto !important; max-width: 100%; }

.video { position: relative; overflow: hidden; padding-bottom: 56.25%; margin: 1.5rem 0; }
.video iframe { position: absolute; left: 0; top: 0; width: 100%; height: 100%; }

.widget { margin: 1.5rem 0; }
.widget iframe { width: 100%; }

.loading { text-align: center; padding-top: 3rem; }


/* =============================================================================
   30. ANIMATIONS
   =========================================================================== */
.animate, .button.big, .button-img, .website-box { animation: none !important; }


/* =============================================================================
   31. CODE CHIP — inline promo kód pilulka s copy efektom
   =========================================================================== */
.code-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.2rem 0.625rem;
  background: var(--bg-gray, #f3f4f6);
  border: 1px dashed var(--border-dark, #d1d5db);
  border-radius: 2rem;
  font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, monospace;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--red, #dc2626);
  line-height: 1.5;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  user-select: all;
  white-space: nowrap;
}

.code-chip:hover {
  background: var(--bg-light, #e5e7eb);
  border-color: var(--primary, #408000);
}

.code-chip::before {
  content: "";
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M15.75 17.25v3.375c0 .621-.504 1.125-1.125 1.125h-9.75a1.125 1.125 0 0 1-1.125-1.125V7.875c0-.621.504-1.125 1.125-1.125H6.75a9.06 9.06 0 0 1 1.5.124m7.5 10.376h3.375c.621 0 1.125-.504 1.125-1.125V11.25c0-4.46-3.243-8.161-7.5-8.876a9.06 9.06 0 0 0-1.5-.124H9.375c-.621 0-1.125.504-1.125 1.125v3.5m7.5 10.375H9.375a1.125 1.125 0 0 1-1.125-1.125v-9.25m12 6.625v-1.875a3.375 3.375 0 0 0-3.375-3.375h-1.5a1.125 1.125 0 0 1-1.125-1.125v-1.5a3.375 3.375 0 0 0-3.375-3.375H9.75'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
  opacity: 0.5;
}

.code-chip:hover::before { opacity: 0.8; }

.code-chip.copied {
  background: var(--primary-50, #f0f7e6);
  border-color: var(--primary, #408000);
  border-style: solid;
  color: var(--primary-dark, #326400);
}

.code-chip.copied::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='%23408000'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m4.5 12.75 6 6 9-13.5'/%3E%3C/svg%3E");
  opacity: 1;
}


/* =============================================================================
   32. ANCHOR LINKY — mriežka # + dashed underline pre href="#" linky
   =========================================================================== */
.left-col a[href^="#"]:not(.toc a):not(.tabs a):not(.jump-menu a),
.content a[href^="#"]:not(.toc a):not(.tabs a):not(.jump-menu a) {
  text-decoration: underline;
  text-decoration-style: dashed;
  text-decoration-color: var(--primary, #408000);
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
}

.left-col a[href^="#"]:not(.toc a):not(.tabs a):not(.jump-menu a):hover,
.content a[href^="#"]:not(.toc a):not(.tabs a):not(.jump-menu a):hover {
  text-decoration-color: var(--primary-dark, #326400);
}

.left-col a[href^="#"]:not(.toc a):not(.tabs a):not(.jump-menu a)::before,
.content a[href^="#"]:not(.toc a):not(.tabs a):not(.jump-menu a)::before {
  content: "";
  display: inline-block;
  width: 0.75em;
  height: 0.75em;
  margin-right: 0.25em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5.25 8.25h15m-16.5 7.5h15m-1.8-13.5-3.9 19.5m-2.1-19.5-3.9 19.5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.7;
  vertical-align: middle;
}

.left-col a[href^="#"]:not(.toc a):not(.tabs a):not(.jump-menu a):hover::before,
.content a[href^="#"]:not(.toc a):not(.tabs a):not(.jump-menu a):hover::before {
  opacity: 1;
}


/* =============================================================================
   33. DOWNLOAD LINKY — ikona stiahnutia
   =========================================================================== */
a.download {
  color: var(--primary, #408000);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-thickness: 1px;
}

a.download:hover {
  color: var(--primary-dark, #326400);
  text-decoration: none;
}

a.download::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.35em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='currentColor'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M3 16.5v2.25A2.25 2.25 0 0 0 5.25 21h13.5A2.25 2.25 0 0 0 21 18.75V16.5M16.5 12 12 16.5m0 0L7.5 12m4.5 4.5V3'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  opacity: 0.7;
}

a.download:hover::before { opacity: 1; }


/* =============================================================================
   34. BOOKMAKER ZVÝRAZŇOVAČ — span[class*="color-"] marker efekt
   =========================================================================== */
span[class*="color-"] {
  color: var(--company-bg, inherit);
  font-weight: 700;
  font-variant: small-caps;
  position: relative;
  padding: 0 0.15em;
}

span[class*="color-"]::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 35%;
  height: 40%;
  background: var(--company-bg, currentColor);
  opacity: 0.10;
  z-index: -1;
}


/* =============================================================================
   35. BOOKMAKER PILULKY — a[class*="color-"] automatické pills
   Pilulkový vizuál (padding, radius, weight) — farby dedí z theme-copy3-1.css
   kde sú definované konkrétne .color-tipsport, .color-fortuna-casino atď.
   =========================================================================== */
a[class*="color-"]:not(.button) {
  display: inline-block;
  text-decoration: none;
  padding: 0.2em 0.6em;
  border-radius: var(--radius-sm, 0.25rem);
  font-weight: 700;
  font-size: 0.85em;
  line-height: 1.4;
  white-space: nowrap;
  transition: filter 0.15s ease;
  margin: 0.15em 0.1em;
}

/* Hover — zachovaj pôvodnú farbu (globálne a:hover by ju prepísalo na zelenú).
   Re-definuje farbu per-bookmaker cez :hover selektor so špecificitou. */
a[class*="color-"]:not(.button):hover {
  filter: brightness(1.1);
  text-decoration: none;
}

a.color-tipsport:hover, a.color-tipsport-casino:hover { color: var(--bg); }
a.color-fortuna:hover, a.color-fortuna-casino:hover { color: #000; }
a.color-nike:hover, a.color-nike-casino:hover { color: var(--bg); }
a.color-doxxbet:hover, a.color-doxxbet-casino:hover { color: var(--doxxbet-text); }
a.color-synottip:hover, a.color-synottip-casino:hover { color: var(--bg); }
a.color-tipos:hover, a.color-tipos-casino:hover { color: var(--bg); }
a.color-chance:hover, a.color-chance-casino:hover { color: var(--chance-text); }
a.color-sazka:hover, a.color-sazka-casino:hover { color: var(--sazka-text); }


/* =============================================================================
   36. ZOZNAMY — zelené bodky (ul) a číselné kruhy (ol)
   =========================================================================== */

/* --- ul: zelené bodky, 3 úrovne (vylúčené .toc aby neprekrývalo TOC timeline) --- */
.left-col > ul:not([class]),
.left-col :not(.toc) > .box-content ul:not([class]),
.content > ul:not([class]) {
  margin: 0.5rem 0 1.25rem;
  padding-left: 1.5rem;
  list-style: none;
}

.left-col > ul:not([class]) li,
.left-col :not(.toc) > .box-content ul:not([class]) li,
.content > ul:not([class]) li {
  position: relative;
  padding: 0.25rem 0 0.25rem 0.25rem;
  line-height: 1.6;
}

.left-col > ul:not([class]) li::before,
.left-col :not(.toc) > .box-content ul:not([class]) li::before,
.content > ul:not([class]) li::before {
  content: '';
  position: absolute;
  left: -1.25rem;
  top: 1.05rem;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary, #408000);
}

/* 2. úroveň — prázdne krúžky */
.left-col > ul:not([class]) ul li::before,
.content > ul:not([class]) ul li::before {
  width: 5px;
  height: 5px;
  background: transparent;
  border: 1.5px solid var(--primary, #408000);
}

/* 3. úroveň — sivé štvorčeky */
.left-col > ul:not([class]) ul ul li::before,
.content > ul:not([class]) ul ul li::before {
  width: 5px;
  height: 5px;
  border-radius: 0;
  background: var(--text-light, #9ca3af);
  border: none;
}

/* --- ol: číselné kruhy --- */
.left-col > ol:not([class]),
.content > ol:not([class]) {
  margin: 0.5rem 0 1.25rem;
  padding-left: 0;
  list-style: none;
  counter-reset: list-counter;
}

.left-col > ol:not([class]) > li,
.content > ol:not([class]) > li {
  position: relative;
  padding: 0.35rem 0 0.35rem 2.25rem;
  line-height: 1.6;
  counter-increment: list-counter;
}

.left-col > ol:not([class]) > li::before,
.content > ol:not([class]) > li::before {
  content: counter(list-counter);
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary, #408000);
  color: var(--bg);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  line-height: 1;
}

/* Vnorený ol — šípky */
.left-col > ol:not([class]) ol > li::before,
.content > ol:not([class]) ol > li::before {
  content: '\203A';
  position: absolute;
  left: -1rem;
  top: 0.45rem;
  width: auto; height: auto;
  display: block;
  background: none;
  color: var(--primary, #408000);
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 0;
}


/* =============================================================================
   37. AUTHOR QUOTE — citácia s avatarom
   =========================================================================== */
.author-quote {
  position: relative;
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem 1.5rem;
  border-left: 4px solid var(--primary, #408000);
  background: var(--bg, #fff);
}

.author-quote .author-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.author-quote .author-avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--border, #e5e7eb);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-quote .author-avatar::before {
  content: '';
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%236b7280' viewBox='0 0 24 24'%3E%3Cpath d='M20 2H4c-1.1 0-2 .9-2 2v18l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm0 14H6l-2 2V4h16v12z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.author-quote .author-avatar img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.author-quote .author-avatar:has(img)::before { display: none; }

.author-quote .author-name {
  font-weight: 700;
  color: var(--text, #1f2937);
  font-size: 1rem;
  line-height: 1.3;
}

.author-quote .author-role {
  font-size: 0.8125rem;
  color: var(--text-muted, #6b7280);
  line-height: 1.3;
}

.author-quote .quote-text {
  font-style: italic;
  color: var(--text, #374151);
  line-height: 1.7;
  margin: 0;
}

.author-quote::after {
  content: '\201C';
  position: absolute;
  top: 0.75rem;
  right: 1rem;
  font-size: 3rem;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text-muted, #6b7280);
  opacity: 0.2;
  line-height: 1;
}

@media (min-width: 768px) {
  .author-quote { padding: 1.5rem 2rem 2rem; }
  .author-quote .author-avatar { width: 3rem; height: 3rem; }
  .author-quote .quote-text { font-size: 1.0625rem; }
  .author-quote::after { font-size: 4rem; right: 1.5rem; }
}


/* =============================================================================
   38. BUTTON-IMG — obrázok ako button s hover efektom
   =========================================================================== */
.button-img {
  display: inline-block;
  margin: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border-radius: var(--radius, 0.5rem);
  overflow: hidden;
}

.button-img:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px #00000026;
}

.button-img:active {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px #00000026;
}

.button-img img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius, 0.5rem);
}


/* =============================================================================
   39. UNDERLINE UTILITY — pre CMS generované <span class="underline">
   =========================================================================== */
.underline {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}


/* =============================================================================
   40. SHARE KOMPONENT — zdieľanie na konci článku
   =========================================================================== */
.share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  margin-top: 2.5rem;
  margin-bottom: 1.5rem;
  background: #f1f3f5;
  border-radius: var(--radius, 0.5rem);
}

.share-label {
  font-family: var(--font-heading, 'Roboto Condensed', sans-serif);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted, #6b7280);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.share-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.share-icons .share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 50%;
  color: var(--text-light, #9ca3af);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease, transform 0.2s ease;
}

.share-icons .share-btn svg { width: 22px; height: 22px; }
.share-icons .share-btn:hover { transform: scale(1.15); }
.share-icons .share-btn.facebook:hover { color: #1877f2; }
.share-icons .share-btn.x:hover { color: #000; }
.share-icons .share-btn.email:hover { color: var(--primary, #408000); }

@media (max-width: 640px) {
  .share { padding: 0.75rem 1rem; margin-top: 2rem; }
  .share-label { font-size: 0.75rem; }
  .share-icons { gap: 0.5rem; }
  .share-icons .share-btn { width: 36px; height: 36px; }
  .share-icons .share-btn svg { width: 20px; height: 20px; }
}


/* =============================================================================
   41. SCREENSHOT + GLIGHTBOX
   =========================================================================== */

/* --- Screenshot link --- */
a.screenshot {
  display: block;
  width: fit-content;
  margin: 0 auto;
  line-height: 0;
  font-size: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius, 0.5rem);
  cursor: zoom-in;
  box-shadow: 0 4px 6px #0000001a;
}

a.screenshot img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

a.screenshot:hover img {
  transform: scale(1.03);
  filter: brightness(0.92);
}

/* Lupa ikona — vpravo dole */
a.screenshot::after {
  content: "";
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-sm, 0.25rem);
  background-color: #00000080;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='%23ffffff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M3.75 3.75v4.5m0-4.5h4.5m-4.5 0L9 9m11.25-5.25v4.5m0-4.5h-4.5m4.5 0L15 9m-11.25 11.25v-4.5m0 4.5h4.5m-4.5 0L9 15m11.25 5.25v-4.5m0 4.5h-4.5m4.5 0L15 15'/%3E%3C/svg%3E");
  background-size: 1.25rem;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  z-index: 2;
}

a.screenshot:hover::after {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  a.screenshot::after {
    width: 2rem;
    height: 2rem;
    bottom: 0.5rem;
    right: 0.5rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='%23fff'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='m21 21-5.197-5.197m0 0A7.5 7.5 0 1 0 5.196 5.196a7.5 7.5 0 0 0 10.607 10.607ZM10.5 7.5v6m3-3h-6'/%3E%3C/svg%3E");
    background-size: 1.25rem;
    border-radius: 50%;
    opacity: 1;
    transform: none;
  }
}

/* --- GLightbox overrides --- */
/* Overlay ostane úplne vzadu (z-index 0), obrázok dopredu.
   Bez explicitného z-index môže pri niektorých breakpointoch/skinoch
   overlay prekryť obsah ako "čierna fólia". */
.goverlay {
  background: #000000f2 !important;
  backdrop-filter: none !important;
  z-index: 0 !important;
}

.glightbox-container .gslider {
  z-index: 10 !important;
}

/* Uistiť sa že obrázok v lightboxe nemá žiadne filtre/opacity */
.glightbox-container .gslide-image img {
  opacity: 1 !important;
  filter: none !important;
}

.glightbox-container .gnext,
.glightbox-container .gprev {
  background-color: #0000008c;
  border: 2px solid #ffffffd9;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1 !important;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.glightbox-container .gnext:hover,
.glightbox-container .gprev:hover {
  background-color: var(--primary, #408000);
  border-color: var(--primary, #408000);
  transform: translateY(-50%) scale(1.1);
}

.glightbox-container .gnext svg,
.glightbox-container .gprev svg {
  width: 28px;
  height: 28px;
  fill: var(--bg);
  filter: drop-shadow(0 1px 3px #000000b2);
}

.glightbox-container .gslide-image img {
  max-height: 85vh !important;
  max-width: 95vw !important;
  object-fit: contain !important;
  border-radius: var(--radius, 0.5rem);
  box-shadow: 0 10px 30px #0000004c;
}

/* Caption skrytý */
.glightbox-container .gslide-description {
  display: none !important;
}

.glightbox-container .gclose {
  background-color: #0000008c;
  border: 2px solid #ffffffd9;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  opacity: 1;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.glightbox-container .gclose:hover {
  background-color: var(--primary, #408000);
  border-color: var(--primary, #408000);
  transform: scale(1.1);
}

.glightbox-container .gclose svg {
  width: 22px;
  height: 22px;
  fill: var(--bg);
}

@media (max-width: 768px) {
  .glightbox-container .gnext,
  .glightbox-container .gprev {
    width: 44px;
    height: 44px;
  }

  .glightbox-container .gnext svg,
  .glightbox-container .gprev svg {
    width: 22px;
    height: 22px;
  }

  .glightbox-container .gclose {
    width: 42px;
    height: 42px;
  }

  .glightbox-container .gclose svg {
    width: 18px;
    height: 18px;
  }

  .glightbox-container .gslide-image img {
    max-height: 65vh !important;
  }
}


/* =============================================================================
   GLIGHTBOX CUSTOM TOOLBAR (counter + zoom button + close v pravom hornom rohu)
   =========================================================================== */
.glightbox-container .glightbox-toolbar {
  position: fixed;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  z-index: 9999;
  transition: opacity 0.3s ease;
}

body.glightbox-closing .glightbox-toolbar,
body.glightbox-closing .gprev,
body.glightbox-closing .gnext {
  opacity: 0;
}

/* Counter "1 / 5" */
.glightbox-container .gslide-counter {
  color: var(--bg);
  font-family: var(--font-heading, sans-serif);
  font-size: 0.875rem;
  font-weight: 600;
  text-shadow: 0 1px 3px #000000b2;
  background: #0000008c;
  padding: 6px 14px;
  border-radius: 2rem;
  border: 2px solid #ffffffd9;
}

.glightbox-container .gslide-counter:empty { display: none; }

/* Zoom button — lupa s plus/mínus */
.glightbox-container .gzoom-btn {
  background-color: #0000008c;
  border: 2px solid #ffffffd9;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.glightbox-container .gzoom-btn:hover {
  background-color: var(--primary, #408000);
  border-color: var(--primary, #408000);
  transform: scale(1.1);
}

.glightbox-container .gzoom-btn svg {
  width: 22px;
  height: 22px;
  stroke: var(--bg);
  fill: none;
}

/* Toggle medzi zoom-in a zoom-out ikonou */
.glightbox-container .gzoom-btn .zoom-in-icon { display: block; }
.glightbox-container .gzoom-btn .zoom-out-icon { display: none; }
.glightbox-container .gzoom-btn.zoomed .zoom-in-icon { display: none; }
.glightbox-container .gzoom-btn.zoomed .zoom-out-icon { display: block; }

/* Gslide image transition pre plynulý zoom */
.glightbox-container .gslide-image img {
  transition: transform 0.25s ease;
  transform-origin: center center;
}

.glightbox-container .gslide-image img.is-zoomed {
  cursor: zoom-out;
}

/* Description hidden pri zoome */
.glightbox-container .gslide-description.zoom-hidden {
  display: none !important;
}

/* Pozicionovať close button lepšie (ak nie je v toolbari z customLightboxHTML) */
.glightbox-container .glightbox-toolbar .gclose {
  position: static;
  top: auto;
  right: auto;
}

@media (max-width: 768px) {
  .glightbox-container .glightbox-toolbar {
    top: 0.5rem;
    right: 0.5rem;
    gap: 0.5rem;
  }

  .glightbox-container .gslide-counter {
    font-size: 0.75rem;
    padding: 4px 10px;
  }

  .glightbox-container .gzoom-btn {
    width: 42px;
    height: 42px;
  }

  .glightbox-container .gzoom-btn svg {
    width: 18px;
    height: 18px;
  }
}
/* Stylesheet: 4. Components - extras Modified On 2026-04-17 14:43:35 */
/* =============================================================================
   STAVKOVEKANCELARIE.COM — THEME CSS
   =============================================================================
   Branding: bookmaker colors, icons, sprites, badges, review colors,
   promo notices, tooltips, posts, home template, newsletter, lightbox.
   No media queries — breakpoint rules live in desktop.css and responsive.css.
   =========================================================================== */

/* =============================================================================
   12. TABLE PRODUCT COLORS
   =========================================================================== */
table tr:nth-child(even) td.table-betting, table.green tr:nth-child(even) td, tr.green td, td.green { background: var(--table-green-even) !important; border-color: var(--table-green-border); }
table tr:nth-child(odd) td.table-betting, table.green tr:nth-child(odd) td, td.green { background: var(--table-green-odd) !important; border-color: var(--table-green-border); }
table tr:nth-child(even) td.green { background: var(--table-green-even) !important; }
table tr:nth-child(odd) td.green { background: var(--table-green-odd) !important; }

table tr:nth-child(even) td.table-casino, table.purple tr:nth-child(even) td, tr.purple td, td.purple { background: var(--table-purple-even) !important; border-color: var(--table-purple-border); }
table tr:nth-child(odd) td.table-casino, table.purple tr:nth-child(odd) td, td.purple { background: var(--table-purple-odd) !important; border-color: var(--table-purple-border); }
table tr:nth-child(even) td.purple { background: var(--table-purple-even) !important; }
table tr:nth-child(odd) td.purple { background: var(--table-purple-odd) !important; }

table tr:nth-child(even) td.table-bingo, table.red tr:nth-child(even) td, tr.red td, td.red { background: var(--table-red-even) !important; border-color: var(--table-red-border); }
table tr:nth-child(odd) td.table-bingo, table.red tr:nth-child(odd) td, td.red { background: var(--table-red-odd) !important; border-color: var(--table-red-border); }
table tr:nth-child(even) td.red { background: var(--table-red-even) !important; }
table tr:nth-child(odd) td.red { background: var(--table-red-odd) !important; }

table tr:nth-child(even) td.table-keno, table.blue tr:nth-child(even) td, tr.blue td, td.blue { background: var(--table-blue-even) !important; border-color: var(--table-blue-border); }
table tr:nth-child(odd) td.table-keno, table.blue tr:nth-child(odd) td, td.blue { background: var(--table-blue-odd) !important; border-color: var(--table-blue-border); }
table tr:nth-child(even) td.blue { background: var(--table-blue-even) !important; }
table tr:nth-child(odd) td.blue { background: var(--table-blue-odd) !important; }

table tr:nth-child(even) td.table-scratch-cards, table.orange tr:nth-child(even) td, tr.orange td, td.orange { background: var(--table-orange-even) !important; border-color: var(--table-orange-border); }
table tr:nth-child(odd) td.table-scratch-cards, table.orange tr:nth-child(odd) td, td.orange { background: var(--table-orange-odd) !important; border-color: var(--table-orange-border); }
table tr:nth-child(even) td.orange { background: var(--table-orange-even) !important; }
table tr:nth-child(odd) td.orange { background: var(--table-orange-odd) !important; }

table.yellow tr:nth-child(even) td, tr.yellow td, td.yellow { background: var(--table-yellow-even) !important; border-color: var(--table-yellow-border); }
table.yellow tr:nth-child(odd) td, td.yellow { background: var(--table-yellow-odd) !important; border-color: var(--table-yellow-border); }
table tr:nth-child(even) td.yellow { background: var(--table-yellow-even) !important; }
table tr:nth-child(odd) td.yellow { background: var(--table-yellow-odd) !important; }

table tr:nth-child(even) td.table-poker, table.grey tr:nth-child(even) td, tr.grey td, td.grey { background: var(--table-grey-even) !important; border-color: var(--table-grey-border); }
table tr:nth-child(odd) td.table-poker, table.grey tr:nth-child(odd) td, td.grey { background: var(--table-grey-odd) !important; border-color: var(--table-grey-border); }
table tr:nth-child(even) td.grey { background: var(--table-grey-even) !important; }
table tr:nth-child(odd) td.grey { background: var(--table-grey-odd) !important; }

table tr:nth-child(even) td.table-lottery, table.pink tr:nth-child(even) td, tr.pink td, td.pink { background: var(--table-pink-even) !important; border-color: var(--table-pink-border); }
table tr:nth-child(odd) td.table-lottery, table.pink tr:nth-child(odd) td, td.pink { background: var(--table-pink-odd) !important; border-color: var(--table-pink-border); }
table tr:nth-child(even) td.pink { background: var(--table-pink-even) !important; }
table tr:nth-child(odd) td.pink { background: var(--table-pink-odd) !important; }


/* =============================================================================
   13. BOOKMAKER COLORS
   -----------------------------------------------------------------------------
   Pravidlá sú rozdelené na dve skupiny:

   A) GENERICKÉ CEZ --brand — aplikuje sa keď <body> má class="tipsport" atď.
      Všetky review-headery a table th automaticky dostanú farby bookmakera.

   B) EXPLICITNÉ FARBY — triedy .color-tipsport, a.color-tipsport-casino atď.
      Používajú sa v inline HTML (napr. tlačidlá v článku) keď nechceme
      farby meniť podľa body classy, ale priamo.
   =========================================================================== */

/* A) --- body.<bookmaker> — review header + všetky table th --- */
body[class*="tipsport"] .review-header,
body[class*="tipsport"] table th,
body[class*="fortuna"] .review-header,
body[class*="fortuna"] table th,
body[class*="nike"] .review-header,
body[class*="nike"] table th,
body[class*="doxxbet"] .review-header,
body[class*="doxxbet"] table th,
body[class*="synottip"] .review-header,
body[class*="synottip"] table th,
body[class*="tipos"] .review-header,
body[class*="tipos"] table th,
body[class*="chance"] .review-header,
body[class*="chance"] table th,
body[class*="sazka"] .review-header,
body[class*="sazka"] table th {
  background: var(--brand);
  color: var(--brand-text);
  border-color: var(--brand-border);
}

/* B) --- Explicitné triedy .color-<bookmaker> (tlačidlá, links, inline bunky) ---
   :not(table) — keď je class priamo na <table> (napr. <table class="color-synottip">),
   pravidlo by sa aplikovalo na celú tabuľku vrátane <td>, čo by spravilo všetky
   bunky v bookmakerovej farbe. Vylučujeme tabuľky, lebo pre tabuľky máme
   samostatné pravidlá pre th/td nižšie. */
.color-tipsport:not(table),
a.color-tipsport,
table.color-tipsport th,
table tr.color-tipsport td,
td.color-tipsport,
th.color-tipsport { background: var(--tipsport); color: var(--tipsport-text); border-color: var(--tipsport-border); }

.color-fortuna:not(table),
a.color-fortuna,
table.color-fortuna th,
table tr.color-fortuna td,
td.color-fortuna,
th.color-fortuna { background: var(--fortuna); color: var(--fortuna-text); border-color: var(--fortuna-border); }

.color-nike:not(table),
a.color-nike,
table.color-nike th,
table tr.color-nike td,
td.color-nike,
th.color-nike { background: var(--nike); color: var(--nike-text); border-color: var(--nike-border); }

.color-doxxbet:not(table),
a.color-doxxbet,
table.color-doxxbet th,
table tr.color-doxxbet td,
td.color-doxxbet,
th.color-doxxbet { background: var(--doxxbet); color: var(--doxxbet-text); border-color: var(--doxxbet-border); }

.color-synottip:not(table),
a.color-synottip,
table.color-synottip th,
table tr.color-synottip td,
td.color-synottip,
th.color-synottip { background: var(--synottip); color: var(--synottip-text); border-color: var(--synottip-border); }

.color-tipos:not(table),
a.color-tipos,
table.color-tipos th,
table tr.color-tipos td,
td.color-tipos,
th.color-tipos { background: var(--tipos); color: var(--tipos-text); border-color: var(--tipos-border); }

.color-chance:not(table),
a.color-chance,
table.color-chance th,
table tr.color-chance td,
td.color-chance,
th.color-chance { background: var(--chance); color: var(--chance-text); border-color: var(--chance-border); }

.color-sazka:not(table),
a.color-sazka,
table.color-sazka th,
table tr.color-sazka td,
td.color-sazka,
th.color-sazka { background: var(--sazka); color: var(--sazka-text); border-color: var(--sazka-border); }

/* --- Casino variant pills --- */
.color-tipsport-casino  { background: var(--tipsport);  color: var(--tipsport-text);  }
.color-fortuna-casino   { background: var(--fortuna);   color: var(--fortuna-text);   }
.color-nike-casino      { background: var(--nike);      color: var(--nike-text);      }
.color-doxxbet-casino   { background: var(--doxxbet);   color: var(--doxxbet-text);   }
.color-synottip-casino  { background: var(--synottip);  color: var(--synottip-text);  }
.color-tipos-casino     { background: var(--tipos);     color: var(--tipos-text);     }
.color-chance-casino    { background: var(--chance);    color: var(--chance-text);    }
.color-sazka-casino     { background: var(--sazka);     color: var(--sazka-text);     }

/* Pill shape — spoločný pre .color-* a .color-*-casino */
a[class*="color-"]:not(.button) {
  display: inline-block;
  padding: 1px 6px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  line-height: 1.5;
}

a[class*="color-"][class*="-casino"] {
  display: inline-block;
  padding: 1px 6px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  text-decoration: none;
  line-height: 1.5;
  margin: 1px;
}

table [class*="color-"] td { border-width: 1px 0; }
table [class*="color-"] .logo { border: 0; margin: 0 5px; }

table:has(+ small),
.table-wrap:has(+ small) {
  margin-bottom: 0.25rem;
}
.recommended-box table:has(+ small) { margin-bottom: 0; }

table + small,
.table-wrap + small {
  display: block;
  margin-top: 0;
  margin-bottom: 2rem;
  font-size: 0.75rem;
  color: var(--text-light);
}
table + small + em,
.table-wrap + small + em {
  display: block;
  margin-top: 0;
  margin-bottom: 2rem;
  font-size: 0.75rem;
  color: var(--text-light);
}

table + p, table + div:not(.table-wrap),
.table-wrap + p, .table-wrap + div {
  margin-top: 0.5rem;
}
small + h2, small + h3, small + p, small + div { margin-top: 2rem; }
table + h2, table + h3, .table-wrap + h2, .table-wrap + h3 { margin-top: 2.5rem; }
figure + p, figure + h2, figure + h3 { margin-top: 1.5rem; }
.button-block + p { margin-top: 1rem; }
.faq-box + h2 { margin-top: 2.5rem; }
hr + h2 { margin-top: 1.5rem; }



/* =============================================================================
   26. ICON SPRITES
   =========================================================================== */
.icon, .sport-icon { display: inline-block; height: 16px; width: 16px; vertical-align: middle; }
.icon { background: url(/res/img/icons.png?v=8) no-repeat 0 16px; }
.sport-icon { background: url(/res/img/sport-icons.png) no-repeat 0 16px; }

.icon.android{background-position:0 0}.asian-handicap{background-position:0 -26px}.audio-commentary{background-position:0 -52px}.award{background-position:0 -78px}.banker{background-position:0 -104px}.icon.basketball{background-position:0 -130px}.blackberry{background-position:0 -156px}.icon.bonus{background-position:0 -182px}.branch{background-position:0 -208px}.fees{background-position:0 -234px}.friend-bonus{background-position:0 -260px}.icon.greyhound-racing{background-position:0 -286px}.help:hover{background-position:0 -312px}.help{background-position:0 -338px}.high-bets{background-position:0 -364px}.high-odds{background-position:0 -390px}.high-winnings{background-position:0 -416px}.icon.hockey,.benefits-box .hockey{background-position:0 -442px}.community{background-position:0 -468px}.info:hover{background-position:0 -494px}.info{background-position:0 -520px}.icon.ios{background-position:0 -546px}.live-betting{background-position:0 -572px}.live-chat{background-position:0 -598px}.live-streaming{background-position:0 -624px}.local-currency{background-position:0 -650px}.local-support{background-position:0 -676px}.local-web{background-position:0 -702px}.loyalty-program{background-position:0 -728px}.mobile-betting{background-position:0 -754px}.mobile-bonus{background-position:0 -780px}.mobile-live-streaming{background-position:0 -806px}.no-fees{background-position:0 -832px}.no{background-position:0 -858px}.professional-bookmaker{background-position:0 -884px}.recommended-bookmaker{background-position:0 -910px}.sms-notification{background-position:0 -936px}.icon.soccer{background-position:0 -962px}.statistics{background-position:0 -988px}.superscore{background-position:0 -1014px}.supertoto{background-position:0 -1040px}.support{background-position:0 -1066px}.icon.tennis{background-position:0 -1092px}.virtual-sports{background-position:0 -1118px}.warning{background-position:0 -1144px}.website:hover{background-position:0 -1170px}.website{background-position:0 -1196px}.windows-phone{background-position:0 -1222px}.multi-view-live-betting{background-position:0 -1248px}.quick-bet{background-position:0 -1274px}.group-bet{background-position:0 -1300px}.cash-out{background-position:0 -1326px}.popular-bookmaker{background-position:0 -1352px}.betting-exchange{background-position:0 -1378px}.bet-builder{background-position:0 -1404px}.match-tracker{background-position:0 -1430px}.yes{background-position:0 -1456px}

.american-football{background-position:0 0}.australian-rules{background-position:0 -26px}.badminton{background-position:0 -52px}.bandy{background-position:0 -79px}.baseball{background-position:0 -105px}.basketball{background-position:0 -131px}.beach-soccer{background-position:0 -157px}.beach-volleyball{background-position:0 -183px}.bowling{background-position:0 -209px}.bowls{background-position:0 -235px}.boxing{background-position:0 -261px}.cricket{background-position:0 -287px}.cycling{background-position:0 -313px}.darts{background-position:0 -339px}.field-hockey{background-position:0 -365px}.floorball{background-position:0 -392px}.futsal{background-position:0 -418px}.golf{background-position:0 -444px}.greyhound-racing{background-position:0 -470px}.handball{background-position:0 -496px}.horse-racing{background-position:0 -522px}.hockey{background-position:0 -548px}.lacrosse{background-position:0 -574px}.mma{background-position:0 -600px}.motorsport{background-position:0 -626px}.netball{background-position:0 -652px}.pool{background-position:0 -678px}.rugby-league{background-position:0 -704px}.rugby-union{background-position:0 -730px}.snooker{background-position:0 -756px}.soccer{background-position:0 -782px}.squash{background-position:0 -808px}.table-tennis{background-position:0 -834px}.tennis{background-position:0 -860px}.volleyball{background-position:0 -886px}.water-polo{background-position:0 -912px}.winter-sports{background-position:0 -938px}


/* =============================================================================
   27. LOGO SPRITES
   =========================================================================== */
.logo {
  display: inline-block;
  height: 25px;
  width: 75px;
  border: 1px solid var(--border);
  background-image: url(/res/img/bookmakers-logos.svg?v=5);
  background-repeat: no-repeat;
  border-radius: var(--radius-sm);
  vertical-align: middle;
  line-height: 25px;
}
a > .logo { margin-right: 7px; }
.logo span { display: none; }

.logo-tipsport{background-position:0 0}.logo-fortuna{background-position:0 -35px}.logo-nike{background-position:0 -70px}.logo-doxxbet{background-position:0 -105px}.logo-synottip{background-position:0 -140px}.logo-tipos{background-position:0 -175px}.logo-chance{background-position:0 -210px}

.payment-icon, .logo-bank-transfer, .logo-instant-bank-transfer, .logo-neteller, .logo-payment-card, .logo-skrill, .logo-branch {
  display: inline-block;
  background: url(/res/img/payment-logos.svg) no-repeat;
  width: 50px;
  height: 25px;
  line-height: 25px;
  margin-right: 7px;
  vertical-align: middle;
}
.logo-bank-transfer{background-position:0 0}.logo-instant-bank-transfer{background-position:0 -35px}.logo-neteller{background-position:0 -70px}.logo-payment-card{background-position:0 -105px}.logo-skrill{background-position:0 -140px}.logo-branch{background-position:0 -175px}


/* =============================================================================
   28. TAGS & BADGES
   =========================================================================== */
.new {
  background: var(--red);
  color: var(--bg);
  font-family: var(--font-heading);
  font-size: 0.5rem;
  border-radius: var(--radius-sm);
  padding: 1px 3px;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.03em;
  position: absolute;
  top: -0.4em;
  right: -0.6em;
  z-index: 2;
}

.sub-menu ul li { position: relative; overflow: visible; }
.sub-menu ul li a { position: relative; }

.tag {
  color: var(--bg);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  padding: 2px 5px;
  display: inline-block;
  vertical-align: middle;
}
.tag + .tag { margin-left: 5px; }
.recommended { background: var(--blue); }
.license-obtain { background: var(--magenta); }
.license-waiting { background: var(--table-dark-even); }
.tip-top, .professional { background: var(--purple); }



/* =============================================================================
   32. DEPOSIT / WITHDRAWAL TABLES
   =========================================================================== */
.deposit-box, .withdrawal-box { margin: 2rem 0; }
.deposit-box .box-title, .withdrawal-box .box-title { background: var(--text); }

.deposit-box table, .withdrawal-box table { margin: 0; }
.deposit-box .table-wrap, .withdrawal-box .table-wrap { margin: 0; }
.box .table-wrap { margin: 0; }
.deposit-box table thead th, .withdrawal-box table thead th {
  background: var(--bg-gray);
  color: var(--text);
  border-color: var(--border);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.deposit-box .table-logo, .withdrawal-box .table-logo {
  line-height: 25px;
}

.deposit-box .table-logo a,
.withdrawal-box .table-logo a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.deposit-box .logo, .withdrawal-box .logo {
  flex-shrink: 0;
}

.deposit-box td[colspan] ul, .withdrawal-box td[colspan] ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.deposit-box td[colspan] ul li, .withdrawal-box td[colspan] ul li {
  width: auto;
  float: none;
  margin: 0;
  background: var(--bg) !important;
  border: 1px solid var(--border-dark);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.75rem;
  color: var(--text-light);
  box-shadow: 0 1px 2px #0000000f;
}

.table-skrill td {
  background: var(--green-light) !important;
  text-align: center;
  font-weight: 700;
  font-family: var(--font-heading);
  border-top: none !important;
}
.table-skrill td a { color: var(--primary) !important; font-weight: 700; }

.other-payments td {
  padding: 0.75rem !important;
  text-align: center;
}
.other-payments img {
  height: 28px !important;
  width: auto !important;
  margin: 0.35rem 0.5rem !important;
  display: inline-block !important;
  vertical-align: middle;
  transition: transform var(--transition);
}
.other-payments img:hover { transform: scale(1.1); }


/* =============================================================================
   33. BENEFITS BOX
   =========================================================================== */
.benefits-box { margin: 2rem 0; clear: both; }
.benefits-box .box-title { background: var(--text); }

.benefits-box .box-content { padding: 0.75rem; }

.benefits-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.125rem 0.75rem;
}

.benefits-box li {
  padding: 0.25rem 0 0.25rem 22px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  line-height: 1.4;
  position: relative;
  background: none !important;
}

.benefits-box li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background: url(/res/img/icons.png?v=7) no-repeat;
  background-size: 16px auto;
  background-position: inherit;
}

.benefits-box-home {
  background: var(--bonus-bg);
  border: 1px solid var(--bonus-bg-border);
  border-radius: var(--radius);
  padding: 0.75rem;
  margin: 1rem 0;
}

.benefits-box-home.wide { width: auto; float: none; }
.benefits-box-home h2, .benefits-box-home h3 { color: var(--bonus-text); margin-top: 0; }
.benefits-box-home ul { list-style: none; padding: 0; }
.benefits-box-home li {
  padding-left: 22px;
  position: relative;
  clear: both;
  line-height: 1.6;
}
.benefits-box-home li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background: url(/res/img/icons.png?v=7) no-repeat 0 -1456px;
  background-size: 16px auto;
}
.benefits-box-home .button { display: block; }


/* =============================================================================
   34. BOOKMAKER REVIEW COLORS
   -----------------------------------------------------------------------------
   Pravidlá pre .review-header a table th sú riešené cez --brand* systém
   v sekcii 13 vyššie (body[class*="tipsport"] ... { background: var(--brand) }).
   Tu sú len link farby v review headeri (tie potrebujú špecifickú farbu
   textu namiesto --brand-text, napr. fortuna/sazka majú čierny/modrý text).
   =========================================================================== */
body[class*="tipsport"] .review-header a,
body[class*="nike"] .review-header a,
body[class*="doxxbet"] .review-header a,
body[class*="synottip"] .review-header a,
body[class*="tipos"] .review-header a,
body[class*="chance"] .review-header a {
  color: var(--text-on-dark);
}

body[class*="fortuna"] .review-header a {
  color: var(--fortuna-text);
}

body[class*="sazka"] .review-header a {
  color: var(--sazka-text);
}

.right-col .review-table th {
  text-align: left;
  white-space: normal;
  width: 145px;
  min-width: 145px;
  max-width: 145px;
  position: relative;
}

.review-table th .html-tip,
.review-table th .icon.info {
  float: none !important;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.25rem;
  margin-top: 0;
}


/* =============================================================================
   35. PROMO NOTICE VARIANTS
   =========================================================================== */
#promo-facebook a, #promo-x a, #promo-instagram a, #promo-whatsapp a, #promo-pinterest a, #newsletter-lobby a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.625rem 1rem 0.625rem 3rem;
  color: var(--bg);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  line-height: 1.3;
  background-repeat: no-repeat;
  background-position: 0.75rem 50%;
  background-size: 24px 24px;
  transition: filter var(--transition);
}
#promo-facebook a:hover, #promo-x a:hover, #promo-instagram a:hover, #promo-whatsapp a:hover, #promo-pinterest a:hover, #newsletter-lobby a:hover { filter: brightness(1.15); }

#promo-facebook { background-color: #4267b2; }
#promo-facebook a { background-image: url(/res/img/icon-facebook.svg); }
#promo-x { background-color: #0a78ba; }
#promo-x a { background-image: url(/res/img/icon-x.svg); }
#promo-instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
#promo-instagram a { background-image: url(/res/img/icon-instagram.svg); }
#promo-whatsapp { background-color: #25d366; }
#promo-whatsapp a { background-image: url(/res/img/icon-whatsapp.svg); }
#promo-pinterest { background-color: #e60023; }
#promo-pinterest a { background-image: url(/res/img/icon-pinterest.svg); }

#newsletter-lobby { background: var(--accent) url(/res/img/bg-newsletter.png) no-repeat 105% 50% / 128px auto; }


/* =============================================================================
   36. TOOLTIP
   =========================================================================== */
.tooltip {
  position: fixed;
  display: none;
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--bg);
  z-index: 9999999;
  width: max-content;
  max-width: calc(100vw - 30px);
}

.tooltip-content {
  padding: 0.75rem 1rem;
  background: var(--text);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

.tooltip-content strong { color: var(--yellow-dark); }
.tooltip-content .line { border-bottom: 1px solid var(--table-dark-odd); margin: 0.35rem 0; padding-top: 0.35rem; }
.tooltip-content ul { list-style: none; padding: 0; }
.tooltip-content ul li { display: inline; margin: 0; }
.tooltip-content ul li::after { content: ', '; }
.tooltip-content ul li:last-child::after { content: none; }
.tooltip-content img[src*="/payment-methods/"] { float: left; margin: 2px; height: 18px; border-radius: 3px; }

.tip:not(a) { cursor: default; }

/* Hide tooltip arrows */
.tooltip .tooltip-tip { display: none !important; }
.qtip-tip { display: none !important; }
.qtip .qtip-tip { display: none !important; }


/* =============================================================================
   37. POST / BLOG LAYOUT
   =========================================================================== */
.post { border-top: 1px solid var(--border); padding: 1rem 0; overflow: hidden; }
.posts .post:first-child { border-top: 0; }
.posts.box-content { padding: 0 1rem 0.75rem; }

.post h2, .post h3 { font-size: 1.125rem; margin: 0 0 0.25rem; }
.post p { margin: 0; font-size: 0.875rem; color: var(--text-muted); }
.post time { font-weight: 700; font-size: 0.8125rem; color: var(--text-muted); }

.post a { text-decoration: none; display: block; }
.post a:hover h2, .post a:hover h3 { color: var(--text); text-decoration: underline; }
.post a:hover .thumb { opacity: 0.9; }

.post .thumb {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-sm);
}

.post div.thumb, div.article-img {
  background: var(--table-dark-even) url(/res/img/logo.svg) no-repeat 50% 50% / 75% auto;
}

.jscroll-added { border-top: 1px solid var(--border); }

.related, .discussion { margin-top: 3rem; clear: both; font-family: var(--font-heading); }
.related strong { text-align: center; font-size: 1.5rem; display: block; margin-bottom: 0.75rem; }
.related hr { margin: 0 0 0.75rem; }

.related ul { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.related a { text-decoration: none; font-size: 0.875rem; line-height: 1.4; display: block; }
.related a:hover { text-decoration: underline; color: var(--text); }
.related img, .related div.thumb {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  margin-bottom: 0.5rem;
}
.related div.thumb { height: 100px; background: var(--table-dark-even) url(/res/img/logo.svg) no-repeat 50% 50% / 75% auto; }


/* =============================================================================
   39. HOME TEMPLATE (#home)
   =========================================================================== */
#home .left-col .banner-box {
  background: var(--bg-gray);
  border: 1px solid var(--border);
  margin: 0 -1rem;
  padding: 0.75rem;
  text-align: center;
}

.recommended-box {
  background: linear-gradient(135deg, #003264 0%, #0064c8 100%);
  border-radius: var(--radius);
  padding: 0.75rem 0.75rem 0.25rem;
  color: var(--bg);
  margin-bottom: 1.5rem;
}

.recommended-box > div:first-child {
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.recommended-box table { border: none; margin: 0; }
.recommended-box table td { border: none; border-bottom: 1px dashed #ffffff33; padding: 0.35rem 0.25rem; background: transparent !important; }
.recommended-box table tr { background: transparent !important; }
.recommended-box table tr:nth-child(odd) td, .recommended-box table tr:nth-child(even) td { background: transparent !important; }
.recommended-box .table-logo a, .recommended-box .table-rating a { color: var(--bg); }
.recommended-box .table-button { padding-right: 0; }
.recommended-box .logo { border-color: #ffffff4c; }
.recommended-box small,
.recommended-box small + em,
.recommended-box > small,
.recommended-box > em,
.recommended-box table + small,
.recommended-box table + small + em {
  font-size: 0.7rem;
  opacity: 0.7;
  display: block;
  margin: 0.25rem 0 0 !important;
  padding: 0 !important;
  line-height: 1.3;
  color: #ffffffb2 !important;
}
.recommended-box > *:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.skrill-box {
  background: #942169;
  border-radius: var(--radius);
  padding: 0.75rem;
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.skrill-box a { color: var(--bg); }
.skrill-box span { font-family: var(--font-heading); font-weight: 700; font-size: 0.875rem; }

.content-box ul { list-style: none; padding: 0; margin: 0; }
.content-box ul li {
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: 0.875rem;
}
.content-box ul li:last-child { border-bottom: none; }
.content-box a {
  text-decoration: none;
  color: var(--primary);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.content-box a:hover { color: var(--text); }

.useful-links-box ul { list-style: none; padding: 0; }
.useful-links-box ul li { padding: 0.35rem 0; font-family: var(--font-heading); font-size: 0.875rem; }
.useful-links-box a { text-decoration: none; color: var(--primary); }
.useful-links-box a:hover { color: var(--text); }

.links-box ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 0.75rem;
}
.links-box ul li { padding: 0.35rem 0; }
.links-box a { text-decoration: none; color: var(--primary); font-size: 0.875rem; }
.links-box a:hover { color: var(--text); }

.promo-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.promo-item:last-child { border-bottom: none; }
.promo-item img { flex-shrink: 0; width: 100px; height: 56px; border-radius: var(--radius-sm); border: 1px solid var(--border); }
.promo-text { flex: 1; min-width: 0; }
.promo-text a { text-decoration: none; font-family: var(--font-heading); font-weight: 700; color: var(--primary); display: block; line-height: 1.3; }
.promo-text a:hover { color: var(--text); }
.promo-text p { margin: 0.25rem 0 0; font-size: 0.8125rem; color: var(--text-muted); }
.promo-item h3 { margin: 0; font-size: 0.875rem; }

.promo-top { font-family: var(--font-heading); font-size: 0.875rem; margin: 0.75rem 0; }
.promo-top a { text-decoration: none; color: var(--primary); }
.promo-top a:hover { text-decoration: underline; }


/* =============================================================================
   40. EXTERNAL LINKS
   =========================================================================== */
a.external {
  padding-right: 14px;
  background: url(/res/img/icon-external.svg) no-repeat 100% 2px / auto 8px;
}


/* =============================================================================
   41. SEARCH WRAP (MODAL OVERLAY)
   =========================================================================== */
.search-wrap { 
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: fixed !important;
  top: 0 !important; 
  left: 0 !important; 
  right: 0 !important; 
  bottom: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: #000000d9 !important;
  backdrop-filter: blur(5px);
  z-index: -1 !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease, visibility 0.3s ease, z-index 0s 0.3s !important;
}

.search-wrap.active {
  z-index: 9999999 !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transition: opacity 0.3s ease, visibility 0.3s ease, z-index 0s 0s !important;
}

.search-wrap > div {
  width: 100%;
  display: flex;
  justify-content: center;
}

.search-wrap form.search-form {
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 600px;
  background: var(--bg);
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px #00000080;
  transform: scale(0.95);
  transition: transform 0.3s ease;
  margin: auto;
}

.search-wrap.active form.search-form {
  transform: scale(1);
}

.search-wrap form.search-form div.search-form {
  display: none !important;
}

.search-close-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  color: var(--bg);
  font-size: 2.5rem;
  cursor: pointer;
  z-index: 10000000;
  line-height: 1;
  font-family: sans-serif;
  transition: color 0.2s;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-close-btn:hover {
  color: var(--primary, #408000);
}

.search-wrap form.search-form input[type="search"] {
  width: 100%;
  max-width: 100%;
  font-size: 1.25rem;
  padding: 1rem;
  border: 2px solid var(--primary, #408000);
  border-radius: 8px;
  margin-bottom: 1rem;
  background: var(--bg);
  color: #000;
}

.search-wrap form.search-form input[type="submit"] {
  width: 100%;
  font-size: 1.25rem;
  padding: 0.85rem;
  margin-top: 0;
  cursor: pointer;
}


/* =============================================================================
   42. GEO WEB NOTICE
   =========================================================================== */
.geo-web {
  background: #ffd700;
  border: 1px solid #eec900;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  padding: 1rem;
  margin-bottom: 0.75rem;
  border-radius: var(--radius);
  color: var(--text);
}
.geo-web a { color: var(--red); }


/* =============================================================================
   43. CONTACT FORM
   =========================================================================== */
.contact-form label {
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 0.25rem;
}

.contact-form textarea { min-height: 120px; }
.contact-form input.button { display: block; clear: both; width: auto; }
.required { color: var(--red); cursor: help; }


/* =============================================================================
   44. LIVE STREAM
   =========================================================================== */
.live-stream {
  height: 200px;
  margin: 0.75rem 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.instagram { margin: 1.5rem 0; }
.instagram iframe { width: 100%; max-width: 500px; margin: 0 auto; }


/* =============================================================================
   45. VERTICAL TEXT IN TABLES
   =========================================================================== */
.vertical-th {
  text-align: center;
  vertical-align: bottom;
  padding: 0.75rem 0.35rem !important;
  border-color: var(--primary-dark) !important;
}

.vertical-th span {
  display: inline-block;
  white-space: nowrap;
  writing-mode: vertical-lr;
  transform: rotate(180deg);
}


/* =============================================================================
   46. POST COMMENTS
   =========================================================================== */
.post-item { position: relative; margin: 0.75rem 0; }
.post-user { display: block; width: 40px; height: 40px; float: left; background: url(/res/img/post-user.svg) no-repeat 0 0 / 40px auto; }
.post-title { font-size: 0.75rem; color: var(--text-muted); text-align: right; margin-bottom: 0.25rem; }
.post-content {
  background: var(--bonus-bg);
  border: 1px solid var(--bonus-bg-border);
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius);
  font-size: 0.8125rem;
  line-height: 1.5;
  margin-left: 50px;
  word-wrap: break-word;
}
.post-date { font-size: 0.75rem; color: var(--text-muted); }


/* =============================================================================
   47. NEWSLETTER
   =========================================================================== */
#newsletter .box-content {
  background: var(--bonus-bg);
  border-color: var(--bonus-bg-border);
}
#newsletter {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 2rem;
}
#newsletter > div {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}
#newsletter > div > div,
#newsletter > div > div > div,
#newsletter > div > div > form,
#newsletter > div > div > div > div,
#newsletter > div > div > form > div {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}
#newsletter [id^="mlb2-"],
#newsletter [id^="mlb2-"] div:not(.form-section) {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}
#newsletter #mlb2-7054960 .subscribe-form.horizontal,
#newsletter [id^="mlb2-"] .subscribe-form.horizontal {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  gap: 10px !important;
  background: var(--accent) url(/res/img/bg-newsletter.png) no-repeat 115% 55% !important;
  border-radius: 4px !important;
  color: var(--primary-dark) !important;
  padding: 15px 20px !important;
  width: 100% !important;
  max-width: 100% !important;
}
#newsletter #mlb2-7054960 .form-section.mb10,
#newsletter [id^="mlb2-"] .form-section.mb10 {
  flex: 0 0 100% !important;
  width: 100% !important;
  max-width: 100% !important;
}
#newsletter #mlb2-7054960 .form-section.horizontal:not(.ml-button-position),
#newsletter [id^="mlb2-"] .form-section.horizontal:not(.ml-button-position) {
  flex: 1 1 0% !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
}
#newsletter #mlb2-7054960 .form-section.ml-button-position,
#newsletter [id^="mlb2-"] .form-section.ml-button-position {
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: none !important;
}
#newsletter #mlb2-7054960 .form-section.horizontal,
#newsletter [id^="mlb2-"] .form-section.horizontal,
#newsletter #mlb2-7054960 .form-group,
#newsletter [id^="mlb2-"] .form-group {
  margin: 0 !important;
  padding: 0 !important;
}
#newsletter #mlb2-7054960 .clearfix,
#newsletter [id^="mlb2-"] .clearfix {
  flex: 0 0 100% !important;
}
#newsletter #mlb2-7054960 input[type="email"],
#newsletter [id^="mlb2-"] input[type="email"] {
  border: 0 !important;
  border-radius: 4px !important;
  box-shadow: 1px 1px 3px #00000080 !important;
  font-size: 1.143rem !important;
  padding: 9px 10px 8px !important;
  cursor: auto !important;
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
}
#newsletter #mlb2-7054960 button[type="submit"],
#newsletter [id^="mlb2-"] button[type="submit"] {
  font-size: 1.714rem !important;
  padding: 4px 15px !important;
  border-radius: 4px !important;
  font-family: 'Roboto Condensed', sans-serif !important;
  text-shadow: 1px 1px 3px #000 !important;
  white-space: nowrap !important;
  float: none !important;
}
#newsletter #mlb2-7054960 h4,
#newsletter [id^="mlb2-"] h4 {
  margin-top: 0 !important;
  color: #ffff80 !important;
  text-shadow: 1px 1px 3px #000 !important;
  font-family: 'Roboto Condensed', sans-serif !important;
  line-height: 1.3 !important;
  font-weight: 700 !important;
  font-size: 28px !important;
}


/* =============================================================================
   48b. MISSING UTILITIES & COMPONENTS
   =========================================================================== */
.sorting::after { content: "⇅"; position: absolute; left: 50%; bottom: 0.1rem; transform: translateX(-50%); font-size: 0.6rem; opacity: 0.4; color: #fff; }
.sorting-asc::after { content: "▲"; position: absolute; left: 50%; bottom: 0.1rem; transform: translateX(-50%); font-size: 0.5rem; color: #fff; opacity: 1; }
.sorting-desc::after { content: "▼"; position: absolute; left: 50%; bottom: 0.1rem; transform: translateX(-50%); font-size: 0.5rem; color: #fff; opacity: 1; }
.sorting-asc-disabled::after { content: "▲"; position: absolute; left: 50%; bottom: 0.1rem; transform: translateX(-50%); font-size: 0.5rem; color: #fff; opacity: 0.3; }
.sorting-desc-disabled::after { content: "▼"; position: absolute; left: 50%; bottom: 0.1rem; transform: translateX(-50%); font-size: 0.5rem; color: #fff; opacity: 0.3; }

/* DataTables používa podtržníky namiesto pomlčiek */
th.sorting, th.sorting_asc, th.sorting_desc, th.sorting_asc_disabled, th.sorting_desc_disabled { position: relative; padding-bottom: 1rem; cursor: pointer; }
.sorting_asc::after { content: "▲"; position: absolute; left: 50%; bottom: 0.1rem; transform: translateX(-50%); font-size: 0.5rem; color: #fff; opacity: 1; }
.sorting_desc::after { content: "▼"; position: absolute; left: 50%; bottom: 0.1rem; transform: translateX(-50%); font-size: 0.5rem; color: #fff; opacity: 1; }
.sorting_asc_disabled::after { content: "▲"; position: absolute; left: 50%; bottom: 0.1rem; transform: translateX(-50%); font-size: 0.5rem; color: #fff; opacity: 0.3; }
.sorting_desc_disabled::after { content: "▼"; position: absolute; left: 50%; bottom: 0.1rem; transform: translateX(-50%); font-size: 0.5rem; color: #fff; opacity: 0.3; }

.needs-scroll { position: relative; }
.needs-scroll::after {
  content: "→";
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, transparent, #0000000f);
  color: var(--text-muted);
  font-size: 1.25rem;
  pointer-events: none;
  z-index: 1;
}

.fade-right { position: relative; }
.fade-right::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 2rem;
  background: linear-gradient(90deg, transparent, var(--bg));
  pointer-events: none;
  z-index: 1;
}


/* =============================================================================
   BONUS COMPARISON TABLE (#bonus-comparison)
   =========================================================================== */
#bonus-comparison col.w3 { width: 2.5%; }
#bonus-comparison col.w5 { width: 5.5%; }
#bonus-comparison col.w10 { width: 9%; }

#bonus-comparison {
  border-top: 3px solid var(--primary) !important;
  margin-top: 0 !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.table-wrap:has(#bonus-comparison) {
  margin-top: -2px !important;
  position: relative;
  z-index: 1;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

#bonus-comparison th {
  border-top: none !important;
}

#bonus-comparison td:nth-child(4) {
  font-size: 0.75rem;
  line-height: 1.3;
  white-space: normal;
  min-width: 95px;
  word-break: keep-all;
}

.bonus-code {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-gray);
  color: var(--red);
  font-family: 'Courier New', Courier, monospace;
  font-weight: 700;
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px dashed var(--border);
  cursor: pointer;
  transition: background var(--transition);
  position: relative;
}

.bonus-code:hover {
  background: var(--border);
}

.bonus-code::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  position: relative;
  border: 1.5px solid currentColor;
  border-radius: 2px;
  opacity: 0.4;
  transition: opacity var(--transition);
  box-shadow: 2px -2px 0 -0.5px currentColor, 2px -2px 0 0px currentColor;
  margin-left: 2px;
}

.bonus-code:hover::after {
  opacity: 0.8;
}

.bonus-code.copied {
  background: var(--green-light);
  border-color: var(--green);
}

.bonus-code.copied::after {
  content: "✓";
  display: inline;
  width: auto;
  height: auto;
  border: none;
  box-shadow: none;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  opacity: 1;
}

.view-options {
  display: inline-flex;
  gap: 0.25rem;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
}
.view-options a {
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.view-options a.active { background: var(--primary); color: var(--bg); border-color: var(--primary); }

del::before { content: attr(data-original); }


/* =============================================================================
   49. GLIGHTBOX
   =========================================================================== */
.goverlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #000000e0;
  z-index: 99999;
  will-change: opacity;
}

.glightbox-container {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gslide-image img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px #00000080;
}

.gclose, .gnext, .gprev {
  position: absolute;
  background: #00000099;
  color: var(--bg);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100001;
  transition: background var(--transition);
}

.gclose:hover, .gnext:hover, .gprev:hover { background: #000000e6; }
.gclose { top: 1rem; right: 1rem; }
.gnext { right: 1rem; top: 50%; transform: translateY(-50%); }
.gprev { left: 1rem; top: 50%; transform: translateY(-50%); }

.gdesc-inner {
  color: var(--bg);
  text-align: center;
  padding: 0.75rem;
  font-size: 0.875rem;
}

.fancybox-overlay, #fancybox-overlay { display: none !important; }

a.glightbox, a.fancybox, a[rel="fancybox"] {
  cursor: zoom-in;
}

a.glightbox img, a.fancybox img, a[rel="fancybox"] img {
  transition: opacity var(--transition);
}

a.glightbox:hover img, a.fancybox:hover img, a[rel="fancybox"]:hover img {
  opacity: 0.85;
}


/* =============================================================================
   HR DIZAJN — zelený gradient s textom "SK" v strede
   =========================================================================== */
hr {
  border: 0;
  height: 0;
  position: relative;
  padding: 2.5rem 0;
  margin: 0;
  overflow: visible;
}

p + hr { margin-top: 0.5rem; }

hr::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 1rem;
  right: 1rem;
  height: 5px;
  background: linear-gradient(to right, transparent 0%, var(--primary, #408000) 20%, var(--primary, #408000) 80%, transparent 100%);
  transform: translateY(-50%);
  border-radius: 2.5px;
}

hr::after {
  content: 'SK';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--bg, #fff);
  padding: 0 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-muted, #6b7280);
  letter-spacing: 0.1em;
}


/* =============================================================================
   TAG SYSTÉM — CSS-generované texty
   =========================================================================== */
.tag--hot   { background: var(--orange, #f97316); color: #fff; }
.tag--hot:empty::before { content: "HOT"; }

.tag--tip   { background: var(--blue, #2563eb); color: #fff; }
.tag--tip:empty::before { content: "TIP"; }

.tag--promo { background: var(--purple, #9333ea); color: #fff; }
.tag--promo:empty::before { content: "PROMO"; }

.tag--new   { background: var(--red, #dc2626); color: #fff; }
.tag--new:empty::before { content: "NOV\00C9"; }

.tag--year  { background: var(--primary, #408000); color: #fff; }
.tag--month { background: var(--yellow-accent); color: #111827; }
.tag--text  { background: none; box-shadow: none; color: var(--yellow-accent); }

.tag--red    { background: var(--red, #dc2626); color: #fff; }
.tag--yellow { background: var(--yellow-accent); color: #111827; }
.tag--purple { background: var(--purple, #9333ea); color: #fff; }
.tag--green  { background: var(--primary, #408000); color: #fff; }


/* =============================================================================
   BONUS-CODE — červený text pre promo kódy
   =========================================================================== */
.bonus-code { color: var(--red, #dc2626); font-weight: 700; }


/* =============================================================================
   TOOLTIP STRONG — žlté zvýraznenie v tooltipoch
   =========================================================================== */
.tooltip-content strong { color: var(--yellow-dark); }
/* Stylesheet: 5. Theme Modified On 2026-04-17 14:41:29 */
/* =============================================================================
   STAVKOVEKANCELARIE.COM — DESKTOP CSS
   =============================================================================
   All @media (min-width: ...) rules for desktop layout and overrides.
   Load AFTER foundation.css.
   =========================================================================== */


/* =============================================================================
   LAYOUT — Desktop container
   =========================================================================== */
@media (min-width: 1200px) {
  .container {
    max-width: none;
    background: #222;
    box-shadow: none;
  }
  .container > .main,
  .container > .share-footer {
    max-width: var(--page-max-width);
    margin-left: auto;
    margin-right: auto;
    background: var(--bg);
    box-shadow: 0 0 30px #0000004c;
  }
}

/* Header — desktop static */
@media (min-width: 1000px) {
  .header {
    position: static;
    transition: none;
  }
  .header-hidden {
    transform: none;
  }
}

/* Full-width header, menu, breadcrumb, footer on desktop */
@media (min-width: 1200px) {
  .header {
    max-width: var(--page-max-width);
    margin-left: auto;
    margin-right: auto;
    background: #222;
  }
  
  .menu {
    border-bottom: none;
    background: #222;
  }
  .menu .main-menu {
    max-width: var(--page-max-width);
    margin-left: auto;
    margin-right: auto;
    background: #222;
  }
  .menu .sub-menu {
    max-width: var(--page-max-width);
    margin-left: auto;
    margin-right: auto;
  }
  .breadcrumb {
    max-width: var(--page-max-width);
    margin-left: auto;
    margin-right: auto;
    background: var(--bg-light);
  }
  .footer {
    max-width: var(--page-max-width);
    margin-left: auto;
    margin-right: auto;
    background: #222;
  }
}

/* Main columns — desktop */
@media (min-width: 1000px) {
  .main {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
  }
  .review-header {
    width: 100%;
    flex-basis: 100%;
    order: -2;
  }
  .left-col {
    flex: 1;
    min-width: 0;
    padding: 1rem 1.5rem;
  }
  .right-col {
    width: 450px;
    flex-shrink: 0;
    padding: 1rem;
    border-left: 1px solid var(--border);
  }
  #review .left-col { flex-basis: 0; }
  #review .right-col { width: 450px; }
}

@media (min-width: 1024px) {
  .left-col { padding: 1rem 2rem; }
}

@media (min-width: 1024px) {
  #wide .main { padding: 1rem 2rem; }
}

/* Header logo — desktop */
@media (min-width: 1000px) {
  .header-logo {
    height: 50px;
    width: 240px;
    max-width: 374px;
  }
}

/* Hide header-actions on desktop */
@media (min-width: 1000px) {
  .header-actions { display: none; }
}

/* Jump menu — desktop */
@media (min-width: 1000px) {
  .jump-menu {
    display: block !important;
    position: relative;
    font-family: var(--font-heading);
    margin-left: auto !important;
    flex-shrink: 0;
    order: 99;
  }
  .jump-menu button {
    background: transparent;
    color: var(--bg);
    border: 1px solid #ffffff66;
    padding: 0.5rem 2rem 0.5rem 1rem;
    font-weight: 700;
    font-size: 0.875rem;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background var(--transition);
    position: relative;
  }
  .jump-menu button::after {
    content: '';
    display: inline-block;
    position: absolute;
    right: 0.6rem;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #ffffffcc;
    pointer-events: none;
  }
  .jump-menu button:hover { background: #ffffff1a; }
  .jump-menu ul {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 0.25rem;
    background: #222;
    border: 1px solid var(--table-dark-even);
    border-radius: var(--radius);
    box-shadow: 0 4px 16px #00000080;
    min-width: 250px;
    list-style: none;
    padding: 0.25rem 0;
    z-index: 1000;
  }
  .jump-menu ul li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    color: #ffffffd9;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.875rem;
    transition: background var(--transition);
  }
  .jump-menu ul li a:hover { background: #ffffff1a; color: var(--bg); }
  .jump-menu ul li a > span { color: var(--amber); }
  .jump-menu .logo {
    border-color: #ffffff33;
    background-color: #ffffff0d;
  }
}


/* =============================================================================
   NAVIGATION — Desktop menu
   =========================================================================== */
@media (min-width: 1000px) {
  .menu { background: #222; }
  .main-menu { background: #222; }
  .main-menu ul li a { color: #ffffffd9; }
  .main-menu > ul > li.bonus > a { color: var(--menu-bonus-text) !important; }
  .main-menu > ul > li.casino > a { color: var(--menu-casino-text) !important; }
  .main-menu > ul > li.code > a { color: var(--menu-code-text) !important; }
}

@media (min-width: 1000px) {
  .menu-toggle { display: none; }
  .main-menu {
    display: block !important;
    background: transparent;
    border-radius: 0;
    overflow: visible;
    position: relative !important;
    transform: none !important;
    width: auto !important;
    max-width: none !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    box-shadow: none !important;
    padding-bottom: 0 !important;
    transition: none !important;
    z-index: 90 !important;
  }
  .main-menu::after {
    display: none !important;
  }

  .main-menu ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2px;
    align-items: stretch;
  }

  .main-menu ul li {
    position: static;
    display: flex;
    align-items: stretch;
  }

  /* Search in main-menu */
  .main-menu ul li.search {
    display: flex !important;
    margin-left: auto;
  }
  .main-menu ul li.search .search-button {
    cursor: pointer;
    padding: 0.35rem 0.75rem;
    background: linear-gradient(to bottom, #ffffff14 0%, transparent 40%);
    border-radius: var(--radius) var(--radius) 0 0;
  }
  .main-menu ul li.search .search-button > span {
    display: inline-block !important;
    width: 20px !important;
    height: 20px !important;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"/><line x1="21" y1="21" x2="16.65" y2="16.65"/></svg>') !important;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    background-position: center !important;
    vertical-align: middle !important;
    opacity: 0.7;
    transition: opacity var(--transition);
  }
  .main-menu ul li.search .search-button:hover > span {
    opacity: 1;
  }
  .main-menu ul li.search .search-button > span > span { display: none !important; }

  .main-menu ul li a,
  .search-button {
    padding: 0.35rem 0.75rem;
    font-size: 1rem;
    border-bottom: none;
    border-radius: var(--radius) var(--radius) 0 0;
    border-left: none !important;
    color: #ffffffd9;
    display: flex;
    align-items: center;
    box-shadow: none;
    background: linear-gradient(to bottom, #ffffff14 0%, transparent 40%);
  }

  .main-menu > ul > li.active > a {
    background: linear-gradient(to bottom, var(--primary) 20%, #64c8001f 100%);
    color: var(--bg) !important;
    padding: 0.35rem 0.75rem;
    border-radius: var(--radius) var(--radius) 0 0;
    box-shadow: none;
  }

  .main-menu ul li a:hover {
    background: linear-gradient(to bottom, #ffffff26 0%, #ffffff0d 40%, transparent 100%);
    color: var(--bg);
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .main-menu > ul > li.active > a:hover { background: linear-gradient(to bottom, var(--primary-dark) 20%, #64c8001f 100%); color: var(--bg) !important; }

  .main-menu ul li a svg {
    width: 28px;
    height: 28px;
    margin-top: 3px;
  }
}

@media (min-width: 1000px) and (max-width: 1199px) {
  .main-menu ul {
    flex-wrap: wrap !important;
  }
}

/* Sub-menu active on desktop */
@media (min-width: 1000px) {
  .sub-menu ul li.active a { background: var(--primary) !important; color: var(--bg) !important; border-radius: var(--radius-sm); }
}

/* =============================================================================
   DESKTOP MENU — Sub-menu (2nd row) system
   =========================================================================== */
@media (min-width: 1000px) {
  /* Hide all nested submenus and toggle buttons */
  .main-menu .sub-menu,
  .submenu-toggle {
    display: none !important;
  }

  @supports selector(:has(*)) {
    .main-menu:has(> ul > li.active > .sub-menu) {
      margin-bottom: var(--submenu-height, 35px) !important; 
    }
  }

  /* Show submenu only for active item */
  .main-menu > ul > li.active > .sub-menu {
    display: block !important;
    position: absolute !important;
    left: 0; right: 0; top: 100%;
    z-index: 100 !important;
    background-color: var(--menu-green-bg) !important;
    border-bottom: 2px solid var(--menu-green-brd) !important;
    padding: 0.35rem 0.75rem !important;
    line-height: 1.4 !important;
    background-image: none !important;
    contain: layout style;
  }

  .main-menu > ul > li.active > .sub-menu > ul {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 2px 0 !important;
    padding: 0 !important; margin: 0 !important;
  }
  
  .main-menu > ul > li.active > .sub-menu > ul > li {
    display: inline-block !important; 
    position: static !important;
  }

  .main-menu > ul > li.active > .sub-menu > ul > li > a {
    display: inline-block !important;
    padding: 0.3rem 0.6rem !important;
    color: #ffffffcc !important;
    text-decoration: none !important;
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    font-size: 0.8125rem !important;
    border-radius: var(--radius-sm) !important;
    white-space: nowrap !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    min-height: auto !important;
  }

  .main-menu > ul > li.active > .sub-menu > ul > li > a:hover {
    color: var(--bg) !important; 
    background: #ffffff1f !important;
  }
  
  .main-menu > ul > li.active > .sub-menu > ul > li.active > a {
    background: var(--primary) !important; 
    color: var(--bg) !important;
  }
  .menu.bonus .main-menu > ul > li.active > .sub-menu > ul > li.active > a {
    background: var(--red) !important;
  }
  .menu.casino .main-menu > ul > li.active > .sub-menu > ul > li.active > a {
    background: var(--purple) !important;
  }
  .menu.faq .main-menu > ul > li.active > .sub-menu > ul > li.active > a {
    background: var(--blue) !important;
  }
  .menu.code .main-menu > ul > li.active > .sub-menu > ul > li.active > a {
    background: var(--blue) !important;
  }

  /* 3rd level permanently hidden */
  .main-menu > ul > li > .sub-menu > ul > li > .sub-menu {
    display: none !important;
  }

  /* Section submenu colors */
  .menu.bonus .main-menu > ul > li.active > .sub-menu { background-color: var(--menu-bonus-bg) !important; border-color: var(--menu-bonus-brd) !important; }
  .menu.faq .main-menu > ul > li.active > .sub-menu { background-color: var(--menu-faq-bg) !important; border-color: var(--menu-faq-brd) !important; }
  .menu.casino .main-menu > ul > li.active > .sub-menu { background-color: var(--menu-casino-bg) !important; border-color: var(--menu-casino-brd) !important; }
  .menu.code .main-menu > ul > li.active > .sub-menu { background-color: var(--menu-faq-bg) !important; border-color: var(--menu-faq-brd) !important; }
}

/* Section colors — desktop sub-menu variants */
@media (min-width: 1000px) {
  .menu.bonus .sub-menu {
    background-color: var(--menu-bonus-bg) !important;
    background-image: none !important;
    border-color: var(--menu-bonus-brd) !important;
    border-bottom: 2px solid var(--menu-bonus-brd) !important;
  }
  .menu.bonus .main-menu ul li.bonus.active a { 
    color: var(--bg); 
    background: linear-gradient(to bottom, var(--red) 20%, #dc26261f 100%);
    border-radius: var(--radius) var(--radius) 0 0;
    padding: 0.35rem 0.75rem;
  }
  .menu.bonus .main-menu ul li.bonus.active a:hover {
    background: linear-gradient(to bottom, var(--red-dark) 20%, #dc26261f 100%);
  }
  .menu.bonus .sub-menu ul li.active a { background: var(--red) !important; color: var(--bg) !important; }
}

@media (min-width: 1000px) {
  .menu.code .sub-menu { background-color: var(--menu-faq-bg) !important; background-image: none !important; border-color: var(--menu-faq-brd) !important; border-bottom: 2px solid var(--menu-faq-brd) !important; }
  .menu.code .sub-menu ul li.active a { background: var(--blue) !important; color: var(--bg) !important; }
  .menu.code .main-menu ul li.code.active a {
    background: linear-gradient(to bottom, var(--blue) 20%, #2563eb1f 100%);
    border-radius: var(--radius) var(--radius) 0 0;
    color: var(--bg) !important;
    padding: 0.35rem 0.75rem;
  }
}

@media (min-width: 1000px) {
  .menu.casino .sub-menu {
    background-color: var(--menu-casino-bg) !important;
    background-image: none !important;
    border-color: var(--menu-casino-brd) !important;
    border-bottom: 2px solid var(--menu-casino-brd) !important;
  }
  .main-menu ul li.casino a {
    color: var(--menu-casino-text) !important;
  }
  .menu.casino .main-menu ul li.casino.active a {
    color: var(--bg) !important;
    background: linear-gradient(to bottom, var(--purple) 20%, #9333ea33 100%);
    border-radius: var(--radius) var(--radius) 0 0;
    padding: 0.35rem 0.75rem;
  }
  .menu.casino .main-menu ul li.casino.active a:hover {
    background: linear-gradient(to bottom, #7928c7 20%, #9333ea33 100%);
  }
  .menu.casino .sub-menu ul li.active a { background: var(--purple) !important; color: var(--bg) !important; }
}


/* =============================================================================
   BREADCRUMB — Desktop
   =========================================================================== */
@media (min-width: 1000px) {
  .breadcrumb { display: flex; align-items: center; justify-content: space-between; height: 1.75rem; line-height: 1.75rem; overflow: hidden; }
  .breadcrumb .r { display: inline; font-size: 0.75rem; color: var(--text-muted); white-space: nowrap; margin-left: auto; flex-shrink: 0; }
}


/* =============================================================================
   REVIEW HEADER — Desktop
   =========================================================================== */
@media (min-width: 1000px) {
  .review-header img { height: 45px; }

  .review-header {
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
    width: 100%;
    flex-basis: 100%;
  }
  .review-header > a {
    flex: 1;
    min-width: 0;
    padding: 0.5rem 1rem;
  }
  .review-rating {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    padding: 0.5rem 1.5rem;
    flex-shrink: 0;
    width: 450px;
    border-left: 1px solid #ffffff26;
    justify-content: center;
  }
}

@media (min-width: 1000px) {
  .review-header.is-sticking .review-rating {
    display: flex !important;
    align-items: center !important;
    position: static;
    margin-left: auto;
    padding: 0 0.5rem;
    width: auto;
  }
  .review-header.is-sticking .rating-text,
  .review-header.is-sticking .rating-value,
  .review-header.is-sticking .best-rating { display: none !important; }
  .review-header.is-sticking .rating-stars {
    display: inline-block !important;
    transform: scale(1);
    filter: drop-shadow(0 0 1px #00000080) drop-shadow(0 0 2px #0000004c);
  }
  .review-header.is-sticking > a { flex: 1; padding: 0.35rem 1rem; }
  .review-header.is-sticking .button { margin-left: 0.5rem; }
  .review-header.is-sticking .mobile-icons { display: inline-flex !important; align-items: center; margin: 0 0.75rem; }
  .review-header.is-sticking { flex-wrap: wrap !important; }
}


/* =============================================================================
   FIGURES — Desktop floats
   =========================================================================== */
@media (min-width: 1000px) {
  .l-box, .l-img { float: left; margin: 0.25rem 1.5rem 1rem 0; max-width: 50%; }
  .r-box, .r-img { float: right; margin: 0.25rem 0 1rem 1.5rem; max-width: 50%; }
}


/* =============================================================================
   POST / BLOG — Desktop
   =========================================================================== */
@media (min-width: 1000px) {
  .post .thumb { float: left; margin-right: 1.25rem; margin-bottom: 0; width: 250px; height: 141px; }
  .post h2, .post h3, .post p { margin-left: 270px; }
}

@media (min-width: 640px) {
  .related ul { grid-template-columns: repeat(4, 1fr); }
}


/* =============================================================================
   FOOTER — Desktop
   =========================================================================== */
@media (min-width: 1000px) {
  .footer .l {
    float: left !important;
    display: inline !important;
    text-align: left !important;
    width: auto;
    margin-bottom: 0;
  }
  .footer .r {
    float: right !important;
    display: inline !important;
    text-align: right !important;
    width: auto;
    margin-bottom: 0;
  }
}


/* =============================================================================
   TOOLTIP — Desktop
   =========================================================================== */
@media (min-width: 1000px) {
  .tooltip {
    max-width: 350px;
  }
}


/* =============================================================================
   SEARCH WRAP — Desktop
   =========================================================================== */
@media (min-width: 768px) {
  .search-close-btn {
    top: 20px;
    right: 30px;
  }
  .search-wrap form.search-form {
    flex-direction: row;
    gap: 1rem;
  }
  .search-wrap form.search-form input[type="search"] {
    margin-bottom: 0;
    flex: 1;
  }
  .search-wrap form.search-form input[type="submit"] {
    width: auto;
    min-width: 150px;
  }
}


/* =============================================================================
   HOME — Desktop
   =========================================================================== */
@media (min-width: 1000px) {
  #home .left-col .banner-box { margin: 0; border-radius: var(--radius); }

  .benefits-box-home:not(.wide) {
    float: right;
    width: 275px;
    margin: 0.5rem 0 1rem 1.5rem;
    clear: both;
  }
}


/* =============================================================================
   SCROLL TO TOP — Desktop
   =========================================================================== */
@media (min-width: 1120px) {
  .scroll-top {
    right: 1rem;
  }
}


/* =============================================================================
   BANNERS — Desktop
   =========================================================================== */
@media (min-width: 1000px) {
  .banner-top { height: auto; min-height: 100px; margin-top: 0.5rem; }
  .banner-sidebar { height: 250px; overflow: hidden; }
  .banner-home { height: 60px; overflow: hidden; }

  .side-box {
    display: block;
    margin-left: 1000px;
  }
  .side-box.fixed {
    position: fixed;
    top: 10px;
  }

  .banner-side {
    display: block;
    height: 600px;
    width: 120px;
    position: absolute;
  }

  .cb { display: block; position: fixed; width: 100%; height: 100%; z-index: 1; cursor: pointer; }
  .lh { width: 50%; }
  .rh { width: 50%; right: 0; }
}


/* =============================================================================
   PRINT
   =========================================================================== */
@media print {
  .header, .menu, .breadcrumb, .right-col, .footer, .share-footer, .scroll-top, .banner-box, .banner-top, .review-menu, .button-block { display: none !important; }
  .main { display: block !important; }
  .left-col { width: 100% !important; padding: 0 !important; }
  body { font-size: 12pt; color: #000; }
  a { color: #000; text-decoration: underline; }
  table { page-break-inside: avoid; }
}
/* Stylesheet: 6. Desktop Modified On 2026-04-17 14:41:40 */
/* =============================================================================
   STAVKOVEKANCELARIE.COM — RESPONSIVE CSS
   =============================================================================
   All @media (max-width: ...) rules for mobile and tablet overrides.
   Load AFTER foundation.css and desktop.css.
   =========================================================================== */


/* =============================================================================
   MOBILE MENU — Full system (max-width: 999px)
   =========================================================================== */
@media (max-width: 999px) {

  /* Fix: Remove old floating dot */
  .sub-menu ul li::after { display: none !important; }

  /* =========================================================================
     BASE HIGHLIGHTING (GREEN) FOR ACTIVE AND EXPANDED ITEMS
     ========================================================================= */

  /* --- LEVEL 1 --- */
  .main-menu > ul > li.active > a,
  .main-menu > ul > li.expanded > a { 
    color: var(--bg) !important; 
    background: #64c80026 !important; 
    border-left: 4px solid var(--primary) !important; 
    padding-left: calc(1.25rem - 4px) !important; 
  }

  /* --- LEVEL 2 --- */
  .main-menu .sub-menu ul li > a {
    position: relative; overflow: visible;
  }
  .main-menu .sub-menu ul li > a::before {
    content: '•' !important;
    position: absolute !important;
    left: 0.75rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    color: var(--primary) !important;
    display: block !important;
  }
  
  /* Button shape for level 2 */
  .main-menu .sub-menu ul li.active > a,
  .main-menu .sub-menu ul li.expanded > a { 
    background: #64c80026 !important; 
    color: var(--bg) !important; 
    padding: 0.35rem 0.75rem !important;
    margin: 0.2rem 0 0.2rem 1.5rem !important;
    border-radius: var(--radius-sm) !important;
    width: auto !important;
    flex: 0 1 auto !important;
    min-height: auto !important;
    border-left: none !important;
    align-self: center !important;
  }
  /* Shift bullet before button */
  .main-menu .sub-menu ul li.active > a::before,
  .main-menu .sub-menu ul li.expanded > a::before { left: -0.75rem !important; }

  /* Keep arrow on the right */
  .main-menu .sub-menu ul li.active > .submenu-toggle,
  .main-menu .sub-menu ul li.expanded > .submenu-toggle { margin-left: auto !important; }

  /* --- LEVEL 3 --- */
  .main-menu .sub-menu .sub-menu ul li > a {
    padding-left: 2.25rem !important;
    margin: 0 !important;
    background: transparent !important;
    font-size: 0.9375rem;
    color: #ffffff99;
    min-height: 40px;
  }
  .main-menu .sub-menu .sub-menu ul li > a::before {
    content: '–' !important;
    left: 1.25rem !important;
  }

  /* Button shape for level 3 */
  .main-menu .sub-menu .sub-menu ul li.active > a,
  .main-menu .sub-menu .sub-menu ul li.expanded > a { 
    background: #64c80026 !important; 
    color: var(--accent) !important; 
    padding: 0.35rem 0.75rem !important;
    margin: 0.2rem 0 0.2rem 2.25rem !important;
    border-radius: var(--radius-sm) !important;
    width: auto !important;
    flex: 0 1 auto !important;
    min-height: auto !important;
    align-self: center !important;
  }
  /* Shift dash before button */
  .main-menu .sub-menu .sub-menu ul li.active > a::before,
  .main-menu .sub-menu .sub-menu ul li.expanded > a::before { left: -1rem !important; }


  /* =========================================================================
     COLOR EXCEPTIONS (BONUS = RED, CASINO = PURPLE, CODE = BLUE)
     ========================================================================= */

  /* BONUS (RED) */
  .main-menu > ul > li.bonus.active > a, .main-menu > ul > li.bonus.expanded > a { background: #dc262626 !important; border-left-color: var(--red) !important; }
  .main-menu ul li.bonus .sub-menu ul li > a::before { color: var(--red) !important; }
  .main-menu ul li.bonus .sub-menu .sub-menu ul li > a::before { color: var(--menu-bonus-text) !important; }
  
  .main-menu ul li.bonus .sub-menu ul li.active > a, .main-menu ul li.bonus .sub-menu ul li.expanded > a { background: #dc262626 !important; color: var(--bg) !important; }
  .main-menu ul li.bonus .sub-menu .sub-menu ul li.active > a, .main-menu ul li.bonus .sub-menu .sub-menu ul li.expanded > a { background: #dc262626 !important; color: var(--menu-bonus-text) !important; }

  /* CASINO (PURPLE) */
  .main-menu > ul > li.casino.active > a, .main-menu > ul > li.casino.expanded > a { background: #9333ea26 !important; border-left-color: var(--purple) !important; }
  .main-menu ul li.casino .sub-menu ul li > a::before { color: var(--purple) !important; }
  .main-menu ul li.casino .sub-menu .sub-menu ul li > a::before { color: var(--menu-casino-text) !important; }
  
  .main-menu ul li.casino .sub-menu ul li.active > a, .main-menu ul li.casino .sub-menu ul li.expanded > a { background: #9333ea26 !important; color: var(--bg) !important; }
  .main-menu ul li.casino .sub-menu .sub-menu ul li.active > a, .main-menu ul li.casino .sub-menu .sub-menu ul li.expanded > a { background: #9333ea26 !important; color: var(--menu-casino-text) !important; }

  /* CODE (BLUE) */
  .main-menu > ul > li.code.active > a, .main-menu > ul > li.code.expanded > a { background: #2563eb26 !important; border-left-color: var(--blue) !important; }
  .main-menu ul li.code .sub-menu ul li > a::before { color: var(--blue) !important; }
  .main-menu ul li.code .sub-menu .sub-menu ul li > a::before { color: var(--menu-code-text) !important; }
  
  .main-menu ul li.code .sub-menu ul li.active > a, .main-menu ul li.code .sub-menu ul li.expanded > a { background: #2563eb26 !important; color: var(--bg) !important; }
  .main-menu ul li.code .sub-menu .sub-menu ul li.active > a, .main-menu ul li.code .sub-menu .sub-menu ul li.expanded > a { background: #2563eb26 !important; color: var(--menu-code-text) !important; }

}


/* =============================================================================
   MOBILE SUB-MENU STRUCTURE (max-width: 999px)
   =========================================================================== */
@media (max-width: 999px) {
  .sub-menu {
    display: none;
    border-bottom: none !important;
    border-top: none !important;
    padding: 0;
    background: #2a2a2a !important;
  }

  .main-menu > ul > li > .sub-menu {
    border-top: 1px solid #ffffff14 !important;
  }

  .sub-menu .sub-menu {
    background: var(--table-dark-footer) !important;
    border-top: 1px solid #ffffff0f !important;
  }

  .sub-menu ul {
    flex-direction: column;
    gap: 0;
    align-items: stretch !important;
  }

  .sub-menu ul li {
    text-align: left !important;
  }

  .sub-menu ul li a {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem 0.75rem 1.5rem;
    border-bottom: none;
    border-radius: 0;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffffbf;
    position: relative;
    text-align: left !important;
    white-space: normal;
    min-height: 46px;
    transition: background var(--transition), color var(--transition);
  }

  .sub-menu ul li a::before {
    content: '•';
    position: absolute;
    left: 0.75rem;
    color: var(--primary);
    font-size: 1rem;
    font-weight: 700;
    opacity: 0.9;
  }

  .sub-menu ul li a:hover { background: #ffffff12; color: var(--bg); }

  .main-menu ul li {
    display: flex !important;
    flex-wrap: wrap;
    align-items: stretch;
    position: relative;
  }
  .main-menu ul li > a {
    flex: 1 !important;
    min-width: 0;
    padding-right: 1.25rem !important;
  }
  .main-menu ul li > .sub-menu {
    flex-basis: 100%;
    width: 100%;
  }
  .sub-menu ul li {
    display: flex !important;
    flex-wrap: wrap;
    align-items: stretch;
    position: relative;
  }
  .sub-menu ul li > a {
    flex: 1 !important;
    min-width: 0;
    padding-right: 1.25rem !important;
  }
  .sub-menu ul li > .sub-menu {
    flex-basis: 100%;
    width: 100%;
  }

  /* Submenu toggle buttons */
  .submenu-toggle {
    position: static !important;
    right: auto !important;
    top: auto !important;
    width: 2.75rem !important;
    min-height: 56px;
    height: auto !important;
    line-height: normal !important;
    background: none;
    border: none;
    border-bottom: 1px solid #ffffff14;
    color: #ffffffa6;
    font-size: 0.8rem;
    cursor: pointer;
    text-align: center;
    transition: all var(--transition);
    flex-shrink: 0;
    display: flex !important;
    align-items: center;
    justify-content: center;
  }

  .submenu-toggle:hover { background: #ffffff12 !important; color: var(--bg) !important; }

  .sub-menu .submenu-toggle {
    min-height: 46px !important;
    height: auto !important;
    width: 2.5rem !important;
    font-size: 0.6rem;
    border-bottom: none;
  }

  .sub-menu .sub-menu .submenu-toggle {
    min-height: 40px !important;
    height: auto !important;
    width: 2.25rem !important;
    font-size: 0.55rem;
  }
}


/* =============================================================================
   MOBILE BREADCRUMB — Brand colors (max-width: 999px)
   =========================================================================== */
@media (max-width: 999px) {
  #review.tipsport .breadcrumb, #review.tipsport-casino .breadcrumb { background: var(--tipsport); border-bottom-color: var(--tipsport-border); }
  #review.tipsport .breadcrumb, #review.tipsport-casino .breadcrumb,
  #review.tipsport .breadcrumb a, #review.tipsport-casino .breadcrumb a,
  #review.tipsport .breadcrumb li, #review.tipsport-casino .breadcrumb li,
  #review.tipsport .breadcrumb li::after, #review.tipsport-casino .breadcrumb li::after { color: var(--bg) !important; }

  #review.fortuna .breadcrumb, #review.fortuna-casino .breadcrumb { background: var(--fortuna); border-bottom-color: var(--fortuna-border); }
  #review.fortuna .breadcrumb, #review.fortuna-casino .breadcrumb,
  #review.fortuna .breadcrumb a, #review.fortuna-casino .breadcrumb a,
  #review.fortuna .breadcrumb li, #review.fortuna-casino .breadcrumb li,
  #review.fortuna .breadcrumb li::after, #review.fortuna-casino .breadcrumb li::after { color: #000 !important; }

  #review.nike .breadcrumb, #review.nike-casino .breadcrumb { background: var(--nike); border-bottom-color: var(--nike-border); }
  #review.nike .breadcrumb, #review.nike-casino .breadcrumb,
  #review.nike .breadcrumb a, #review.nike-casino .breadcrumb a,
  #review.nike .breadcrumb li, #review.nike-casino .breadcrumb li,
  #review.nike .breadcrumb li::after, #review.nike-casino .breadcrumb li::after { color: var(--bg) !important; }

  #review.doxxbet .breadcrumb, #review.doxxbet-casino .breadcrumb { background: var(--doxxbet); border-bottom-color: var(--doxxbet-border); }
  #review.doxxbet .breadcrumb, #review.doxxbet-casino .breadcrumb,
  #review.doxxbet .breadcrumb a, #review.doxxbet-casino .breadcrumb a,
  #review.doxxbet .breadcrumb li, #review.doxxbet-casino .breadcrumb li,
  #review.doxxbet .breadcrumb li::after, #review.doxxbet-casino .breadcrumb li::after { color: var(--bg) !important; }

  #review.synottip .breadcrumb, #review.synottip-casino .breadcrumb { background: var(--synottip); border-bottom-color: var(--synottip-border); }
  #review.synottip .breadcrumb, #review.synottip-casino .breadcrumb,
  #review.synottip .breadcrumb a, #review.synottip-casino .breadcrumb a,
  #review.synottip .breadcrumb li, #review.synottip-casino .breadcrumb li,
  #review.synottip .breadcrumb li::after, #review.synottip-casino .breadcrumb li::after { color: var(--bg) !important; }

  #review.tipos .breadcrumb, #review.tipos-casino .breadcrumb { background: var(--tipos); border-bottom-color: var(--tipos-border); }
  #review.tipos .breadcrumb, #review.tipos-casino .breadcrumb,
  #review.tipos .breadcrumb a, #review.tipos-casino .breadcrumb a,
  #review.tipos .breadcrumb li, #review.tipos-casino .breadcrumb li,
  #review.tipos .breadcrumb li::after, #review.tipos-casino .breadcrumb li::after { color: var(--bg) !important; }

  #review.chance .breadcrumb, #review.chance-casino .breadcrumb { background: var(--chance); border-bottom-color: var(--chance-border); }
  #review.chance .breadcrumb, #review.chance-casino .breadcrumb,
  #review.chance .breadcrumb a, #review.chance-casino .breadcrumb a,
  #review.chance .breadcrumb li, #review.chance-casino .breadcrumb li,
  #review.chance .breadcrumb li::after, #review.chance-casino .breadcrumb li::after { color: var(--bg) !important; }

  #review.sazka .breadcrumb, #review.sazka-casino .breadcrumb { background: var(--sazka); border-bottom-color: var(--sazka-border); }
  #review.sazka .breadcrumb, #review.sazka-casino .breadcrumb,
  #review.sazka .breadcrumb a, #review.sazka-casino .breadcrumb a,
  #review.sazka .breadcrumb li, #review.sazka-casino .breadcrumb li,
  #review.sazka .breadcrumb li::after, #review.sazka-casino .breadcrumb li::after { color: var(--sazka-text) !important; }

  /* No border between breadcrumb and review header */
  #review .breadcrumb { border-bottom: none; }
}


/* =============================================================================
   MOBILE REVIEW HEADER (max-width: 999px)
   =========================================================================== */
@media (max-width: 999px) {
  .review-rating { display: none !important; }

  .review-header:not(.is-sticking) > a {
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .review-header:not(.is-sticking) .mobile-icons {
    margin-left: auto;
  }

  .review-header:not(.is-sticking) .button {
    flex: 0 0 100%;
    margin: 0.75rem 0 0 0 !important;
    text-align: center;
    justify-content: center;
    border-radius: var(--radius);
    padding: 0.625rem 1rem;
    font-size: 1rem;
  }
  
  .review-header.is-sticking {
    display: flex !important;
    flex-wrap: wrap !important;
    padding: 0 !important;
  }
  .review-header.is-sticking > a {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    width: 100% !important;
    flex: 0 0 100% !important;
    padding: 0.4rem 0.75rem !important;
    box-sizing: border-box !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }
  .review-header.is-sticking > a::-webkit-scrollbar { display: none !important; }
  .review-header.is-sticking .button {
    margin: 0 0 0 auto !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    font-size: 0.8rem !important;
    padding: 0.4rem 0.75rem !important;
  }
  .review-header.is-sticking .review-rating,
  .review-header.is-sticking .mobile-icons { display: none !important; }
}


/* =============================================================================
   MOBILE BUTTONS (max-width: 999px)
   =========================================================================== */
@media (max-width: 999px) {
  .left-col .button, .content .button {
    white-space: normal !important;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
  }

  /* Výnimka — buttony v tabuľkách nezalamovať (LEN krátke s cenami) */
  .left-col table .button:not(.big),
  .content table .button:not(.big),
  #review .left-col table .button:not(.big),
  #review .content table .button:not(.big),
  .table-button .button,
  .recommended-box .button {
    white-space: nowrap !important;
    word-wrap: normal;
  }

  .notice-promo { font-size: 0.875rem; }
  .notice-promo > strong { font-size: 0.75rem; letter-spacing: 0.05em; }

  .banner-top { display: none !important; }
}


/* =============================================================================
   MOBILE TABS (max-width: 999px)
   =========================================================================== */
@media (max-width: 999px) {
  .tab-content { padding: 0; }
}


/* =============================================================================
   MOBILE TOOLTIP (max-width: 999px)
   =========================================================================== */
@media (max-width: 999px) {
  .tooltip {
    width: max-content;
    max-width: calc(100vw - 30px);
  }
}


/* =============================================================================
   MOBILE TABLES (max-width: 999px)
   =========================================================================== */
@media (max-width: 999px) {
  .table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin: 1rem 0;
  }

  .bonus-box table,
  .box table {
    width: 100%;
  }

  table.compact, table.review-table {
    display: table;
    width: 100%;
  }

  .deposit-box td[colspan] ul { flex-direction: row; flex-wrap: wrap; }
  .deposit-box td[colspan] ul li { width: auto !important; }
}


/* =============================================================================
   MOBILE MENU STACKING CONTEXT (max-width: 999px)
   =========================================================================== */
@media (max-width: 999px) {
  .menu {
    z-index: 200 !important;
  }
}


/* =============================================================================
   SMALL MOBILE (max-width: 480px)
   =========================================================================== */
@media (max-width: 480px) {
  .benefits-box ul { grid-template-columns: 1fr; }
  .links-box ul { grid-template-columns: 1fr; }

  table { font-size: 0.8125rem; }
  table th, table td { padding: 0.35rem 0.5rem; }

  .review-rating { flex-wrap: wrap; padding: 0.5rem; }
  .rating-value { font-size: 1.5rem; }

  .mosaic img { max-width: calc(50% - 0.25rem); }
}


/* =============================================================================
   NEWSLETTER MOBILE (max-width: 599px)
   =========================================================================== */
@media (max-width: 599px) {
  #newsletter #mlb2-7054960 .form-section.horizontal:not(.ml-button-position),
  #newsletter [id^="mlb2-"] .form-section.horizontal:not(.ml-button-position),
  #newsletter #mlb2-7054960 .form-section.ml-button-position,
  #newsletter [id^="mlb2-"] .form-section.ml-button-position {
    flex: 0 0 100% !important;
    width: 100% !important;
  }
  #newsletter #mlb2-7054960 button[type="submit"],
  #newsletter [id^="mlb2-"] button[type="submit"] {
    width: 100% !important;
  }
}
/* Stylesheet: 7. Responzive Modified On 2026-04-17 14:41:49 */
/* =============================================================================
   STAVKOVEKANCELARIE.COM — API CSS
   =============================================================================
   Doplnkový stylesheet pre zobrazovanie kurzov z Tipsport API.
   Komponenty: .tipsport-competition (súťažná tabuľka)
               .tipsport-matche (jednotlivý zápas)
   Načítať PO foundation.css, desktop.css, responsive.css.
   =========================================================================== */


/* =============================================================================
   0. RESET — odpojenie od globálnych table štýlov z foundation.css
   =========================================================================== */
.tipsport-competition table th,
.tipsport-competition table td,
.tipsport-matche table th,
.tipsport-matche table td {
  background: none;
  color: inherit;
  border-color: #eee;
}


/* =============================================================================
   1. NADPISY — súťaž + šport
   =========================================================================== */
h2.competition {
  font-size: 1.25rem;
  color: var(--bg);
  background: var(--primary);
  padding: 0.6rem 1rem;
  margin: 2rem 0 0;
  border-radius: 6px 6px 0 0;
}

h3.sport {
  font-size: 0.8rem;
  color: var(--bg);
  background: var(--primary-deep);
  padding: 0.3rem 1rem;
  margin: 0 0 0;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}


/* =============================================================================
   2. TIPSPORT COMPETITION — kurzová tabuľka s CSS tabmi
   =========================================================================== */

/* Kontajner */
.tipsport-competition {
  background: var(--bg);
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 6px 6px;
  margin-bottom: 2rem;
  overflow: hidden;
}

/* Skryť radio buttony */
.tipsport-competition input[type="radio"] {
  display: none;
}

/* --- TABY — pills s horizontálnym scrollom --- */
.tipsport-competition .tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.35rem;
  background: none;
  border-bottom: none;
  padding: 0.5rem 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tipsport-competition .tabs::-webkit-scrollbar { display: none; }

.tipsport-competition .tabs label {
  padding: 0.35rem 0.75rem;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--table-dark-odd);
  white-space: nowrap;
  border: 1px solid #ddd;
  border-radius: 50px;
  background: var(--bg-neutral);
  transition: all 0.2s;
  flex-shrink: 0;
}

.tipsport-competition .tabs label:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: #4080000d;
}

/* Aktívny tab — podľa checked radio (1. súťaž) */
.tipsport-competition input#tipsport-competition-tab1:checked ~ .tabs label[for="tipsport-competition-tab1"],
.tipsport-competition input#tipsport-competition-tab2:checked ~ .tabs label[for="tipsport-competition-tab2"],
.tipsport-competition input#tipsport-competition-tab3:checked ~ .tabs label[for="tipsport-competition-tab3"],
.tipsport-competition input#tipsport-competition-tab4:checked ~ .tabs label[for="tipsport-competition-tab4"],
.tipsport-competition input#tipsport-competition-tab5:checked ~ .tabs label[for="tipsport-competition-tab5"],
.tipsport-competition input#tipsport-competition-tab6:checked ~ .tabs label[for="tipsport-competition-tab6"],
/* 2. súťaž */
.tipsport-competition input[id$="-1"]:checked ~ .tabs label[for$="-1"],
.tipsport-competition input[id$="-2"]:checked ~ .tabs label[for$="-2"],
.tipsport-competition input[id$="-3"]:checked ~ .tabs label[for$="-3"],
.tipsport-competition input[id$="-4"]:checked ~ .tabs label[for$="-4"],
.tipsport-competition input[id$="-5"]:checked ~ .tabs label[for$="-5"],
.tipsport-competition input[id$="-6"]:checked ~ .tabs label[for$="-6"] {
  color: var(--bg);
  background: var(--primary);
  border-color: var(--primary);
}

/* --- TABUĽKA --- */
.tipsport-competition table.tipsport {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin: 0;
  border: none;
}

/* Skryť všetky sekcie */
.tipsport-competition .section {
  display: none;
}

/* Zobraziť podľa vybraného tabu (1. súťaž) */
.tipsport-competition input#tipsport-competition-tab1:checked ~ table .s1,
.tipsport-competition input#tipsport-competition-tab2:checked ~ table .s2,
.tipsport-competition input#tipsport-competition-tab3:checked ~ table .s3,
.tipsport-competition input#tipsport-competition-tab4:checked ~ table .s4,
.tipsport-competition input#tipsport-competition-tab5:checked ~ table .s5,
.tipsport-competition input#tipsport-competition-tab6:checked ~ table .s6,
/* 2. súťaž */
.tipsport-competition input[id$="-1"]:checked ~ table .s1,
.tipsport-competition input[id$="-2"]:checked ~ table .s2,
.tipsport-competition input[id$="-3"]:checked ~ table .s3,
.tipsport-competition input[id$="-4"]:checked ~ table .s4,
.tipsport-competition input[id$="-5"]:checked ~ table .s5,
.tipsport-competition input[id$="-6"]:checked ~ table .s6 {
  display: table-row-group;
}

/* Hlavičky tabuľky */
.tipsport-competition table th {
  background: var(--primary);
  color: var(--bg);
  padding: 0.5rem 0.6rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1px solid var(--primary-deep);
}

.tipsport-competition table th:first-child {
  text-align: left;
}

/* Bunky */
.tipsport-competition table td {
  padding: 0.5rem 0.6rem;
  text-align: center;
  border: 1px solid #eee;
  vertical-align: middle;
}

.tipsport-competition table td:first-child {
  text-align: left;
}

/* Zebra */
.tipsport-competition table tbody:nth-of-type(odd) tr {
  background: #fafafa;
}
.tipsport-competition table tbody:nth-of-type(even) tr {
  background: var(--bg);
}

/* Hover na riadok */
.tipsport-competition table tbody tr:hover {
  background: #4080000f;
}

/* Kurzy — zvýraznenie */
.tipsport-competition table td:not(:first-child) {
  font-weight: 700;
  color: var(--primary-deep);
  font-size: 0.9rem;
  cursor: pointer;
  transition: color 0.15s, text-decoration 0.15s;
  min-width: 60px;
}

.tipsport-competition table td:not(:first-child):hover {
  color: #1a5200;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Názov zápasu */
.tipsport-competition .match {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 0.85rem;
  line-height: 1.3;
}

/* Dátum */
.tipsport-competition .dateStart {
  font-size: 0.7rem;
  color: #888;
  margin-top: 1px;
}

/* Desktop: Zápas+dátum naľavo, streamy napravo pod sebou */
.tipsport-competition td:first-child {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 0.75rem;
  row-gap: 0;
  border: none;
  border-bottom: 1px solid #eee;
}

.tipsport-competition td:first-child .match {
  grid-column: 1;
  grid-row: 1;
}

.tipsport-competition td:first-child .dateStart {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
}

.tipsport-competition td:first-child .stream:not(:empty) {
  grid-column: 2;
  justify-self: end;
  margin: 0 0 2px 0;
  min-width: 52px;
  justify-content: center;
}

.tipsport-competition td:first-child .stream:empty {
  display: none;
}

/* Handicap bunky */
.tipsport-competition .handicapName,
.tipsport-matche .handicapName {
  font-size: 0.7rem;
  color: var(--table-dark-border);
  font-weight: 400;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tipsport-competition .handicap {
  font-weight: 700;
  color: var(--primary-deep);
  font-size: 0.9rem;
}


/* =============================================================================
   3. STREAM BADGE — VIDEO / AUDIO ikony
   =========================================================================== */
.tipsport-competition .stream:not(:empty) {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 0.5rem;
  font-weight: 700;
  color: var(--bg);
  background: #e53e3e;
  padding: 1px 4px;
  border-radius: 2px;
  margin-top: 2px;
  margin-right: 3px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  vertical-align: middle;
}

.tipsport-competition .stream::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.tipsport-competition .stream.video::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpolygon points='5,3 19,12 5,21'/%3E%3C/svg%3E");
}

.tipsport-competition .stream.audio::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Crect x='9' y='2' width='6' height='12' rx='3'/%3E%3Cpath d='M5 11a7 7 0 0 0 14 0' fill='none' stroke='white' stroke-width='2'/%3E%3Cline x1='12' y1='18' x2='12' y2='22' stroke='white' stroke-width='2'/%3E%3Cline x1='8' y1='22' x2='16' y2='22' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

.tipsport-competition .stream.audio {
  background: #3182ce;
}


/* =============================================================================
   4. TIPSPORT MATCHE — jednotlivý zápas s tabmi kurzov
   =========================================================================== */
.tipsport-matche {
  background: var(--bg);
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 6px 6px;
  margin-bottom: 0;
  overflow: hidden;
  padding: 0;
}

/* Small popis pod komponentom */
.tipsport-matche + small {
  display: block;
  padding: 0.4rem 0.75rem;
  font-size: 0.75rem;
  color: #888;
  margin-bottom: 2rem;
}

.tipsport-matche input[type="radio"] {
  display: none;
}

/* Názov zápasu */
.tipsport-matche > h2 {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
}

.tipsport-matche > h2 .match {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  padding: 0.75rem 1rem 0;
  line-height: 1.3;
}

/* Dátum a stream */
.tipsport-matche .dateStart {
  font-size: 0.75rem;
  color: #888;
  padding: 0 1rem;
}

.tipsport-matche .stream:not(:empty) {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-size: 0.5rem;
  font-weight: 700;
  color: var(--bg);
  background: #e53e3e;
  padding: 1px 4px;
  border-radius: 2px;
  margin: 0 3px 2px 0;
  text-transform: uppercase;
  min-width: 52px;
  justify-content: center;
}

/* Grid layout — zápas+dátum naľavo, streamy napravo */
.tipsport-matche {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
}

.tipsport-matche > h2 {
  grid-column: 1;
  grid-row: 1;
}

.tipsport-matche > h2 + div {
  grid-column: 1;
  grid-row: 2;
}

.tipsport-matche > h2 + div + div {
  grid-column: 2;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  padding: 0.5rem 1rem 0 0;
}

.tipsport-matche > h2 + div + div .stream:not(:empty) {
  margin: 0 0 2px 0;
}

/* Radio, tabs, kurzy-container, table — celá šírka */
.tipsport-matche > input,
.tipsport-matche > .tabs,
.tipsport-matche > .kurzy-container,
.tipsport-matche > table,
.tipsport-matche > small {
  grid-column: 1 / -1;
}

/* Stream ikony */
.tipsport-matche .stream::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.tipsport-matche .stream.video::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpolygon points='5,3 19,12 5,21'/%3E%3C/svg%3E");
}

.tipsport-matche .stream.audio {
  background: #3182ce;
}

.tipsport-matche .stream.audio::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Crect x='9' y='2' width='6' height='12' rx='3'/%3E%3Cpath d='M5 11a7 7 0 0 0 14 0' fill='none' stroke='white' stroke-width='2'/%3E%3Cline x1='12' y1='18' x2='12' y2='22' stroke='white' stroke-width='2'/%3E%3Cline x1='8' y1='22' x2='16' y2='22' stroke='white' stroke-width='2'/%3E%3C/svg%3E");
}

/* Taby — pills */
.tipsport-matche .tabs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.35rem;
  background: none;
  border-bottom: none;
  padding: 0.5rem 0.5rem 0.25rem;
  margin-top: 0.25rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.tipsport-matche .tabs::-webkit-scrollbar { display: none; }

.tipsport-matche .tabs label {
  padding: 0.35rem 0.75rem;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--table-dark-odd);
  white-space: nowrap;
  border: 1px solid #ddd;
  border-radius: 50px;
  background: var(--bg-neutral);
  transition: all 0.2s;
  flex-shrink: 0;
}

.tipsport-matche .tabs label:hover {
  color: var(--primary);
  border-color: var(--primary);
  background: #4080000d;
}

/* Aktívny tab */
.tipsport-matche input[type="radio"]:nth-of-type(1):checked ~ .tabs label:nth-child(1),
.tipsport-matche input[type="radio"]:nth-of-type(2):checked ~ .tabs label:nth-child(2),
.tipsport-matche input[type="radio"]:nth-of-type(3):checked ~ .tabs label:nth-child(3),
.tipsport-matche input[type="radio"]:nth-of-type(4):checked ~ .tabs label:nth-child(4),
.tipsport-matche input[type="radio"]:nth-of-type(5):checked ~ .tabs label:nth-child(5),
.tipsport-matche input[type="radio"]:nth-of-type(6):checked ~ .tabs label:nth-child(6) {
  color: var(--bg);
  background: var(--primary);
  border-color: var(--primary);
}

/* Tabuľka */
.tipsport-matche table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  margin: 0;
  border: none;
  table-layout: fixed;
}

/* Posledný riadok v tbody — bez spodného borderu (kontajner už má svoj) */
.tipsport-matche table tbody tr:last-child td,
.tipsport-matche table tbody tr:last-child th.data {
  border-bottom: none;
}

/* Kurzy container */
.tipsport-matche .kurzy-container {
  overflow: hidden;
}

/* Skryť všetky sekcie */
.tipsport-matche .section {
  display: none;
}

/* Zobraziť sekcie — priama tabuľka aj cez .kurzy-container */
.tipsport-matche input[type="radio"]:nth-of-type(1):checked ~ table tbody:nth-of-type(6n+1),
.tipsport-matche input[type="radio"]:nth-of-type(2):checked ~ table tbody:nth-of-type(6n+2),
.tipsport-matche input[type="radio"]:nth-of-type(3):checked ~ table tbody:nth-of-type(6n+3),
.tipsport-matche input[type="radio"]:nth-of-type(4):checked ~ table tbody:nth-of-type(6n+4),
.tipsport-matche input[type="radio"]:nth-of-type(5):checked ~ table tbody:nth-of-type(6n+5),
.tipsport-matche input[type="radio"]:nth-of-type(6):checked ~ table tbody:nth-of-type(6n+6),
.tipsport-matche input[type="radio"]:nth-of-type(1):checked ~ .kurzy-container table tbody:nth-of-type(6n+1),
.tipsport-matche input[type="radio"]:nth-of-type(2):checked ~ .kurzy-container table tbody:nth-of-type(6n+2),
.tipsport-matche input[type="radio"]:nth-of-type(3):checked ~ .kurzy-container table tbody:nth-of-type(6n+3),
.tipsport-matche input[type="radio"]:nth-of-type(4):checked ~ .kurzy-container table tbody:nth-of-type(6n+4),
.tipsport-matche input[type="radio"]:nth-of-type(5):checked ~ .kurzy-container table tbody:nth-of-type(6n+5),
.tipsport-matche input[type="radio"]:nth-of-type(6):checked ~ .kurzy-container table tbody:nth-of-type(6n+6) {
  display: table-row-group;
}

/* Bunky */
.tipsport-matche table td,
.tipsport-matche table th.data {
  padding: 0.5rem 0.6rem;
  text-align: center;
  border: 1px solid #eee;
  vertical-align: middle;
}

/* Prvý riadok — názov typu sázky */
.tipsport-matche table tbody tr:first-child td,
.tipsport-matche table tbody tr:first-child th.data {
  background: var(--primary);
  color: var(--bg);
  font-weight: 600;
  font-size: 0.8rem;
  border-color: var(--primary-deep);
}

/* Druhý riadok — hlavičky (1, X, 2) */
.tipsport-matche table tbody tr:nth-child(2) td,
.tipsport-matche table tbody tr:nth-child(2) th.data {
  background: var(--bg-neutral);
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--table-dark-odd);
}

/* Tretí riadok — kurzy */
.tipsport-matche table tbody tr:nth-child(3) td {
  font-weight: 700;
  color: var(--primary-deep);
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.tipsport-matche table tbody tr:nth-child(3) td:hover {
  color: #1a5200;
  text-decoration: underline;
  text-underline-offset: 2px;
}


/* =============================================================================
   5. RESPONSIVE — mobile overrides
   =========================================================================== */

/* Competition — vypnutie gridu na mobile */
@media (max-width: 699px) {
  .tipsport-competition td:first-child {
    display: block;
  }
  
  .tipsport-competition td:first-child .match {
    display: block;
  }
  
  .tipsport-competition td:first-child .dateStart {
    display: block;
    margin-left: 0;
    margin-top: 2px;
  }

  .tipsport-competition td:first-child .stream:not(:empty) {
    margin-top: 4px;
    margin-right: 3px;
  }
}

/* Competition + Matche — menšie fonty a padding */
@media (max-width: 600px) {
  .tipsport-competition .tabs label {
    padding: 0.4rem 0.5rem;
    font-size: 0.7rem;
  }
  
  .tipsport-competition table {
    font-size: 0.8rem;
  }
  
  .tipsport-competition table th,
  .tipsport-competition table td {
    padding: 0.4rem;
  }
  
  .tipsport-competition table td:not(:first-child) {
    min-width: 45px;
    font-size: 0.8rem;
  }
  
  .tipsport-competition .match {
    font-size: 0.78rem;
  }
  
  h2.competition {
    font-size: 1.1rem;
  }

  .tipsport-matche > h2 .match {
    font-size: 0.95rem;
  }
  
  .tipsport-matche .tabs label {
    padding: 0.4rem 0.5rem;
    font-size: 0.7rem;
  }
  
  .tipsport-matche table {
    font-size: 0.8rem;
  }
  
  .tipsport-matche table tbody tr:nth-child(3) td {
    font-size: 0.95rem;
  }
}
/* Stylesheet: 8. api Modified On 2026-04-17 14:42:48 */
