/* RESET */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; max-width: 100%; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, blockquote, figure { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
table { border-collapse: collapse; }

/* TYPOGRAPHY */
body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}
h1, h2, h3, h4 { font-family: "Poppins", "Inter", sans-serif; font-weight: 800; line-height: 1.2; }
h1, h2, h3, p, li, blockquote, td, th { overflow-wrap: anywhere; word-break: break-word; }
a, code { overflow-wrap: anywhere; }

/* ROOT VARIABLES */
:root {
  --kob-bg: #0c0c0f;
  --kob-bg-raised: #15161b;
  --kob-bg-soft: #1c1e25;
  --kob-text: #f5f6f8;
  --kob-text-muted: #9a9ca6;
  --kob-accent: #ff6a1a;
  --kob-accent-hover: #ff7e3d;
  --kob-accent-2: #ffb648;
  --kob-green: #35d68a;
  --kob-border: #292b33;
  --kob-radius: 14px;
  --kob-shadow: 0 20px 40px rgba(0, 0, 0, .5);
  --kob-container: 1320px;
}

body { background: var(--kob-bg); color: var(--kob-text); -webkit-font-smoothing: antialiased; }

.kob-container { max-width: var(--kob-container); margin-left: auto; margin-right: auto; padding-left: 16px; padding-right: 16px; }
@media (min-width: 760px) { .kob-container { padding-left: 20px; padding-right: 20px; } }

.kob-no-scroll { overflow: hidden; }

/* PROMO BAR (above header) */
.kob-promo-bar { display: block; width: 100%; line-height: 0; }
.kob-promo-bar img { width: 100%; height: auto; display: block; }

/* HEADER */
.kob-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: #0e0f13;
  border-bottom: 1px solid var(--kob-border);
}
.kob-header__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  flex-wrap: nowrap;
  min-width: 0;
}
.kob-header__logo { flex-shrink: 0; display: flex; align-items: center; min-width: 0; }
.kob-header__logo img { height: 34px; width: auto; max-width: 150px; object-fit: contain; }
@media (min-width: 760px) {
  .kob-header__logo img { height: 40px; max-width: none; }
  .kob-header__inner { gap: 16px; padding: 14px 24px; }
}
@media (min-width: 1440px) { .kob-header__inner { padding-left: 48px; padding-right: 48px; } }
.kob-header__nav { display: none; min-width: 0; }
@media (min-width: 1024px) {
  .kob-header__nav { display: flex; align-items: center; gap: 14px; margin-left: auto; margin-right: auto; }
  .kob-header__nav a { display: inline-flex; align-items: center; gap: 6px; font-size: 13.5px; font-weight: 600; color: #d7d8de; white-space: nowrap; }
  .kob-header__nav a:hover, .kob-header__nav a:focus-visible { color: var(--kob-accent-2); }
  .kob-header__nav a svg { width: 16px; height: 16px; stroke: currentColor; flex-shrink: 0; }
}
@media (min-width: 1280px) { .kob-header__nav { gap: 20px; } .kob-header__nav a { font-size: 14px; } }
.kob-header__badge { display: inline-flex; align-items: center; gap: 3px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .02em; padding: 3px 6px; border-radius: 5px; line-height: 1.4; }
.kob-header__badge svg { width: 9px; height: 9px; flex-shrink: 0; }
.kob-header__badge--new { background: var(--kob-accent); color: #1a0f06; }
.kob-header__badge--live { background: #e0263a; color: #fff; }
.kob-header__actions { display: flex; align-items: center; gap: 10px; margin-left: auto; flex-shrink: 0; }
.kob-header__flag {
  display: none; align-items: center; gap: 5px;
  padding: 8px 9px; border-radius: 8px; background: var(--kob-bg-raised); border: 1px solid var(--kob-border);
}
.kob-header__flag-img { width: 20px; height: 14px; border-radius: 2px; overflow: hidden; display: block; }
.kob-header__flag svg:last-child { width: 10px; height: 10px; stroke: var(--kob-text-muted); }
@media (min-width: 640px) { .kob-header__flag { display: inline-flex; } }
.kob-burger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 10px; border: 1px solid var(--kob-border);
  flex-direction: column; gap: 4px; flex-shrink: 0;
}
.kob-burger span { width: 18px; height: 2px; background: var(--kob-text); border-radius: 2px; transition: transform .2s, opacity .2s; }
.kob-burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.kob-burger.is-open span:nth-child(2) { opacity: 0; }
.kob-burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
@media (min-width: 1024px) { .kob-burger { display: none; } }

/* HEADER CTA */
.kob-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 18px; border-radius: 999px; font-weight: 700; font-size: 13.5px;
  letter-spacing: .02em; white-space: nowrap; max-width: 100%; transition: background .15s, transform .15s;
}
.kob-btn--accent { background: var(--kob-accent); color: #17100a; }
.kob-btn--accent:hover { background: var(--kob-accent-hover); }
.kob-btn--outline { border: 1px solid #3a3b42; color: var(--kob-text); background: transparent; }
.kob-btn--outline:hover { border-color: var(--kob-text-muted); }
.kob-header__actions .kob-btn { padding: 8px 14px; font-size: 12.5px; border-radius: 8px; }
@media (min-width: 760px) { .kob-header__actions .kob-btn { padding: 10px 20px; font-size: 13.5px; } }
@media (max-width: 479px) { .kob-header__actions .kob-btn--outline { display: none; } }

/* MOBILE MENU OVERLAY */
.kob-mobile-menu {
  position: fixed; inset: 0; z-index: 100; background: rgba(6, 6, 8, .96);
  transform: translateX(100%); transition: transform .25s ease; overflow-y: auto;
  padding: 84px 20px 40px;
}
.kob-mobile-menu.is-open { transform: translateX(0); }
.kob-mobile-menu__close {
  position: absolute; top: 18px; right: 18px; width: 40px; height: 40px; border-radius: 50%;
  background: var(--kob-bg-raised); border: 1px solid var(--kob-border); display: flex; align-items: center;
  justify-content: center; color: var(--kob-text); z-index: 1;
}
.kob-mobile-menu__close svg { width: 18px; height: 18px; }
.kob-mobile-menu__close:hover { border-color: var(--kob-accent); }
.kob-mobile-menu__group { margin-bottom: 26px; }
.kob-mobile-menu__title { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--kob-text-muted); margin-bottom: 10px; }
.kob-mobile-menu__group a { display: block; padding: 10px 0; font-size: 16px; font-weight: 600; border-bottom: 1px solid var(--kob-border); }

/* SUBNAV PILLS */
.kob-subnav { background: var(--kob-bg); padding: 18px 0 20px; border-bottom: 1px solid var(--kob-border); }
.kob-subnav__row { display: flex; justify-content: flex-start; gap: 12px; overflow-x: auto; scrollbar-width: none; padding-bottom: 2px; }
.kob-subnav__row::-webkit-scrollbar { display: none; }
@media (min-width: 900px) { .kob-subnav__row { justify-content: center; flex-wrap: wrap; overflow: visible; } }
.kob-subnav__pill {
  flex-shrink: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 14px; background: #14151a; border: 1px solid var(--kob-border);
  border-radius: 16px; font-size: 13px; font-weight: 700; color: var(--kob-text); width: 118px;
  text-align: center; transition: border-color .15s, background .15s;
}
.kob-subnav__pill svg { width: 28px; height: 28px; stroke: var(--kob-text); }
.kob-subnav__pill:hover, .kob-subnav__pill:focus-visible { background: var(--kob-bg-raised); border-color: var(--kob-accent); }

/* HERO */
.kob-hero {
  position: relative; padding: 44px 0 52px; overflow: hidden;
  background-image: linear-gradient(115deg, rgba(10, 10, 12, .92) 0%, rgba(10, 10, 12, .62) 45%, rgba(10, 10, 12, .9) 100%), url('/img/banner.jpg');
  background-size: cover;
  background-position: center;
}
.kob-hero__inner { min-width: 0; max-width: 760px; display: flex; flex-direction: column; gap: 16px; }
.kob-hero h1 { font-size: clamp(28px, 4.2vw, 44px); }
.kob-hero__lead { font-size: 17px; color: var(--kob-text-muted); max-width: 620px; }
.kob-hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.kob-hero__ctas .kob-btn--lg { padding: 15px 26px; font-size: 15px; }
@media (max-width: 639px) {
  .kob-hero__inner { padding: 0; gap: 14px; }
  .kob-hero__lead { font-size: 15.5px; }
  .kob-hero__ctas .kob-btn--lg { padding: 13px 18px; font-size: 13.5px; width: 100%; }
}

/* BREADCRUMBS */
.kob-breadcrumbs { padding: 14px 0; font-size: 13px; color: var(--kob-text-muted); }
.kob-breadcrumbs a { color: var(--kob-text-muted); }
.kob-breadcrumbs a:hover { color: var(--kob-accent-2); }
.kob-breadcrumbs span[aria-current] { color: var(--kob-text); }

/* LEAD PARAGRAPH */
.kob-lead-block { padding: 4px 0 28px; max-width: 780px; color: var(--kob-text-muted); font-size: 15.5px; }

/* CONTENT SECTIONS */
.kob-content { padding: 28px 0; }
.kob-content h2 { font-size: 26px; margin-bottom: 14px; }
.kob-content p { color: #cfd1d8; margin-bottom: 14px; max-width: 760px; }
.kob-content ul.kob-list { display: grid; gap: 8px; margin-bottom: 18px; max-width: 760px; }
.kob-content ul.kob-list li { padding-left: 22px; position: relative; color: #cfd1d8; }
.kob-content ul.kob-list li::before { content: "\2713"; position: absolute; left: 0; color: var(--kob-green); font-weight: 800; }
.kob-table-wrap { overflow-x: auto; margin: 20px 0; border-radius: var(--kob-radius); border: 1px solid var(--kob-border); }
table.kob-table { width: 100%; min-width: 480px; font-size: 14.5px; }
table.kob-table th, table.kob-table td { padding: 12px 16px; border-bottom: 1px solid var(--kob-border); text-align: left; }
table.kob-table th { background: var(--kob-bg-raised); color: var(--kob-accent-2); font-weight: 700; }
table.kob-table tr:last-child td { border-bottom: none; }
.kob-content blockquote { margin: 22px 0; max-width: 100%; padding: 18px 22px; border-left: 3px solid var(--kob-accent); background: var(--kob-bg-raised); border-radius: 0 var(--kob-radius) var(--kob-radius) 0; font-style: italic; color: #dfe0e5; }
.kob-content blockquote cite { display: block; margin-top: 8px; font-style: normal; font-size: 13px; color: var(--kob-text-muted); }

/* CONTENT IMAGES */
article img, section.kob-content img, main p img {
  display: block; max-width: 720px; width: 100%; height: auto; max-height: 480px;
  object-fit: contain; margin: 24px auto; border-radius: var(--kob-radius, 12px);
}
.kob-hero img, .kob-banner img, img.kob-banner {
  max-width: 100%; max-height: 560px; object-fit: cover; width: 100%; height: auto; display: block;
}
header img { max-height: 48px; width: auto; object-fit: contain; }
footer img[src*="img_listing_casinos"] { max-height: 28px; width: auto; object-fit: contain; }
@media (max-width: 768px) {
  article img, section.kob-content img, main p img { max-height: 320px; }
  .kob-hero img, .kob-banner img { max-height: 360px; }
}

/* INLINE SECTION CTA */
.kob-cta-block { text-align: center; padding: 4px 0 8px; }
.kob-cta-block .kob-btn { padding: 14px 30px; font-size: 14.5px; }

/* OFFERS LISTING */
.kob-offers { padding: 30px 0 20px; }
.kob-offers__head { margin-bottom: 18px; text-align: center; }
.kob-offers__head h2 { font-size: 28px; margin-bottom: 6px; }
.kob-offers__head p { color: var(--kob-text-muted); font-size: 14.5px; }
.kob-offers__grid { display: grid; grid-template-columns: 1fr; gap: 18px; align-items: stretch; }
@media (min-width: 900px) {
  .kob-offers__grid { grid-template-columns: 1fr 1.08fr 1fr; gap: 20px; }
}
.kob-offers__grid > div { display: flex; }
.kob-offers__card {
  position: relative; display: flex; flex-direction: column; gap: 14px; width: 100%;
  background: var(--kob-bg-raised); border: 1px solid var(--kob-border); border-radius: var(--kob-radius);
  padding: 22px 20px 20px; box-shadow: var(--kob-shadow);
}
.kob-offers__card * { pointer-events: none; }
.kob-offers__card .kob-offers__overlay-link,
.kob-offers__card .kob-offers__review-link { pointer-events: auto; cursor: pointer; }
.kob-offers__overlay-link {
  position: absolute; inset: 0; z-index: 1; font-size: 0; color: transparent; text-indent: -9999px; border-radius: inherit;
}
.kob-offers__card > *:not(.kob-offers__overlay-link) { position: relative; z-index: 2; }
.kob-offers__cta, .kob-offers__review-link { position: relative; z-index: 3; }
.kob-offers__card--top { border-color: var(--kob-accent); box-shadow: 0 0 0 1px rgba(255, 106, 26, .25), var(--kob-shadow); }
@media (min-width: 900px) { .kob-offers__card--top { order: 0; } }
@media (max-width: 759px) { .kob-offers__card--top { order: -1; } }
.kob-offers__ribbon {
  position: absolute; top: 14px; right: -6px; background: var(--kob-accent); color: #1a0f06;
  font-size: 11px; font-weight: 800; letter-spacing: .04em; padding: 5px 14px 5px 10px;
  border-radius: 6px 0 0 6px; z-index: 2;
}
.kob-offers__banner {
  width: 100%; height: 68px; border-radius: 12px; background: #0d0e12;
  border: 1px solid var(--kob-border); display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.kob-offers__banner img { max-width: 68%; max-height: 60%; object-fit: contain; }
.kob-offers__id { display: flex; align-items: center; justify-content: space-between; gap: 10px; min-width: 0; }
.kob-offers__name { font-size: 18px; }
.kob-offers__rating { display: inline-flex; align-items: center; gap: 4px; font-size: 13.5px; color: var(--kob-accent-2); font-weight: 700; flex-shrink: 0; }
.kob-offers__tags { display: flex; gap: 6px; flex-wrap: wrap; }
.kob-offers__tag { font-size: 11px; font-weight: 700; padding: 4px 9px; border-radius: 999px; border: 1px solid var(--kob-border); color: var(--kob-text-muted); text-transform: uppercase; letter-spacing: .03em; }
.kob-offers__tag--top { border-color: rgba(255, 106, 26, .5); color: var(--kob-accent-2); }
.kob-offers__tag--exclusive { border-color: rgba(139, 92, 246, .5); color: #cbb8ff; }
.kob-offers__bonus { background: #0d0e12; border-radius: 10px; padding: 12px 14px; }
.kob-offers__bonus-label { display: block; font-size: 11px; color: var(--kob-text-muted); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 4px; }
.kob-offers__bonus-value { font-size: 17px; font-weight: 800; }
.kob-offers__usp { display: grid; gap: 6px; }
.kob-offers__usp li { padding-left: 20px; position: relative; font-size: 13.5px; color: #cfd1d8; }
.kob-offers__usp li::before { content: "\2713"; position: absolute; left: 0; color: var(--kob-green); font-weight: 800; }
.kob-offers__social { display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; color: var(--kob-text-muted); background: #0d0e12; border-radius: 8px; padding: 6px 10px; width: fit-content; }
.kob-offers__timer { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--kob-text-muted); }
.kob-offers__timer-box { background: #0d0e12; border: 1px solid var(--kob-border); border-radius: 6px; padding: 3px 6px; font-weight: 700; color: var(--kob-text); min-width: 26px; text-align: center; }
.kob-offers__cta-row { margin-top: auto; display: flex; flex-direction: column; gap: 8px; }
.kob-offers__cta { display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 13px 16px; border-radius: 10px; background: var(--kob-accent); color: #1a0f06; font-weight: 800; font-size: 14px; text-align: center; }
.kob-offers__review-link { text-align: center; font-size: 12.5px; color: var(--kob-text-muted); text-decoration: underline; }
.kob-offers__urgency { font-size: 12px; color: var(--kob-accent-2); text-align: center; }
.kob-offers__aggregate { text-align: center; margin-top: 18px; font-size: 13.5px; color: var(--kob-text-muted); }

/* SLOTS LISTING */
.kob-slots { padding: 22px 0 30px; border-bottom: 1px solid var(--kob-border); }
.kob-slots__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.kob-slots__head h2 { font-size: 17px; display: flex; align-items: center; gap: 8px; }
.kob-slots__head h2 span[aria-hidden] { font-size: 16px; }
.kob-slots__all { font-size: 12.5px; font-weight: 700; padding: 8px 16px; border-radius: 999px; background: var(--kob-accent); border: 1px solid var(--kob-accent); color: #1a0f06; flex-shrink: 0; white-space: nowrap; }
.kob-slots__all:hover { background: var(--kob-accent-hover); }
.kob-slots__row-wrap { position: relative; }
.kob-slots__grid { display: flex; gap: 14px; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; padding-bottom: 4px; }
.kob-slots__grid::-webkit-scrollbar { display: none; }
.kob-slots__grid > div {
  flex: 0 0 148px; position: relative; aspect-ratio: 3 / 4; border-radius: var(--kob-radius); overflow: hidden; border: 1px solid var(--kob-border);
  background: var(--kob-bg-raised);
}
@media (min-width: 640px) { .kob-slots__grid > div { flex: 0 0 170px; } }
@media (min-width: 1024px) { .kob-slots__grid > div { flex: 0 0 190px; } }
.kob-slots__next {
  position: absolute; right: -4px; top: 50%; transform: translateY(-50%); width: 34px; height: 34px; border-radius: 50%;
  background: rgba(18, 19, 24, .92); border: 1px solid var(--kob-border); display: flex; align-items: center; justify-content: center;
  color: var(--kob-text); z-index: 4;
}
.kob-slots__next svg { width: 16px; height: 16px; }
@media (max-width: 759px) { .kob-slots__next { display: none; } }
.kob-slots__scrollbar { height: 3px; background: var(--kob-border); border-radius: 3px; margin-top: 12px; overflow: hidden; }
.kob-slots__scrollbar-fill { width: 24%; height: 100%; background: var(--kob-accent); border-radius: 3px; }
@media (max-width: 759px) {
  .kob-slots__grid { display: grid; grid-template-columns: repeat(2, 1fr); overflow-x: visible; gap: 12px; }
  .kob-slots__grid > div { flex: none; }
  .kob-slots__scrollbar { display: none; }
}
.kob-slots__tile { position: absolute; inset: 0; display: block; width: 100%; height: 100%; border: 0; background: transparent; aspect-ratio: auto; border-radius: 0; }
.kob-slots__tile img { width: 100%; height: 100%; object-fit: cover; }
.kob-slots__top-row, .kob-slots__meta-row, .kob-slots__overlay, .kob-slots__play-icon { pointer-events: none; }
.kob-slots__top-row { position: absolute; top: 8px; left: 8px; right: 8px; display: flex; justify-content: space-between; z-index: 2; }
.kob-slots__hot { background: var(--kob-accent); color: #1a0f06; font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 6px; text-transform: uppercase; }
.kob-slots__meta-row { position: absolute; left: 8px; right: 8px; bottom: 40px; display: flex; justify-content: space-between; gap: 4px; z-index: 2; }
.kob-slots__badge { background: rgba(12, 12, 15, .82); color: var(--kob-text); font-size: 10.5px; font-weight: 700; padding: 3px 7px; border-radius: 6px; }
.kob-slots__title-row { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 8px 10px; background: linear-gradient(180deg, rgba(12, 12, 15, 0) 0%, rgba(8, 8, 10, .92) 60%); }
.kob-slots__name { font-size: 13px; font-weight: 700; color: var(--kob-text); }
.kob-slots__overlay {
  position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: rgba(8, 8, 10, .82); opacity: 0; transition: opacity .2s;
}
.kob-slots__grid > div:hover .kob-slots__overlay { opacity: 1; }
.kob-slots__play-icon { width: 40px; height: 40px; border-radius: 50%; background: var(--kob-accent); display: flex; align-items: center; justify-content: center; color: #1a0f06; }
.kob-slots__overlay-cta { font-size: 11.5px; font-weight: 800; text-transform: uppercase; color: var(--kob-text); }

/* REVIEWS */
.kob-reviews { padding: 30px 0; }
.kob-reviews__head { text-align: center; margin-bottom: 18px; }
.kob-reviews__head h2 { font-size: 26px; margin-bottom: 6px; }
.kob-reviews__agg { color: var(--kob-accent-2); font-weight: 700; font-size: 14.5px; }
.kob-reviews__grid { display: grid; gap: 14px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .kob-reviews__grid { grid-template-columns: repeat(2, 1fr); } }
.kob-reviews__card { background: var(--kob-bg-raised); border: 1px solid var(--kob-border); border-radius: var(--kob-radius); padding: 18px; }
.kob-reviews__stars { color: var(--kob-accent-2); font-size: 14px; margin-bottom: 8px; }
.kob-reviews__body { font-size: 14px; color: #cfd1d8; margin-bottom: 12px; }
.kob-reviews__meta { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--kob-text-muted); }

/* AUTHOR BLOCK */
.kob-author { display: flex; gap: 20px; padding: 26px 24px; background: var(--kob-bg-raised); border: 1px solid var(--kob-border); border-radius: var(--kob-radius); max-width: 860px; margin-left: auto; margin-right: auto; align-items: flex-start; }
.kob-author__photo { border-radius: 50%; overflow: hidden; flex-shrink: 0; width: 96px; height: 96px; }
.kob-author__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kob-author__name { font-weight: 800; font-size: 17px; }
.kob-author__role { color: var(--kob-text-muted); font-size: 13.5px; margin-bottom: 10px; }
.kob-author__bio { font-size: 14px; line-height: 1.55; color: #cfd1d8; margin-bottom: 10px; }
.kob-author__link { font-size: 13px; color: var(--kob-accent-2); text-decoration: underline; }

/* FAQ */
.kob-faq { padding: 34px 0; max-width: 860px; margin-left: auto; margin-right: auto; }
.kob-faq h2 { font-size: 28px; margin-bottom: 18px; }
.kob-faq__item { border: 1px solid var(--kob-border); border-radius: 12px; margin-bottom: 12px; background: var(--kob-bg-raised); overflow: hidden; }
.kob-faq__item summary { padding: 19px 48px 19px 20px; font-size: 15.5px; font-weight: 700; cursor: pointer; list-style: none; position: relative; }
.kob-faq__item summary::-webkit-details-marker { display: none; }
.kob-faq__item summary::after { content: "+"; position: absolute; right: 20px; top: 50%; transform: translateY(-50%); font-size: 22px; color: var(--kob-accent-2); }
.kob-faq__item[open] summary::after { content: "\2013"; }
.kob-faq__item summary h3 { display: inline; font-size: inherit; font-weight: inherit; }
.kob-faq__answer { padding: 0 20px 19px; font-size: 14.5px; color: #cfd1d8; }

/* RELATED LINKS */
.kob-related { padding: 14px 14px 30px; max-width: 100%; }
.kob-related h2 { font-size: 18px; margin-bottom: 10px; }
.kob-related__list { display: flex; gap: 8px; flex-wrap: wrap; }
.kob-related__list a { font-size: 12.5px; padding: 7px 12px; border: 1px solid var(--kob-border); border-radius: 999px; color: var(--kob-text-muted); }
.kob-related__list a:hover { color: var(--kob-text); border-color: var(--kob-accent); }

/* FOOTER */
.kob-footer { background: #0a0a0d; border-top: 1px solid var(--kob-border); padding: 36px 0 20px; }
.kob-footer__top { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 14px; padding-bottom: 24px; }
.kob-footer__brand { grid-column: 1 / -1; }
@media (min-width: 600px) { .kob-footer__top { grid-template-columns: 1fr 1fr 1fr; } }
@media (min-width: 900px) { .kob-footer__top { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 22px; } .kob-footer__brand { grid-column: auto; } }
.kob-footer__brand img { max-height: 30px; margin-bottom: 10px; }
.kob-footer__brand p { font-size: 12.5px; color: var(--kob-text-muted); margin-bottom: 12px; max-width: 320px; }
.kob-footer__social-label { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--kob-text-muted); margin-bottom: 8px; }
.kob-footer__social { display: flex; gap: 8px; flex-wrap: wrap; }
.kob-footer__social a { width: 32px; height: 32px; border-radius: 8px; background: var(--kob-bg-raised); border: 1px solid var(--kob-border); display: flex; align-items: center; justify-content: center; }
.kob-footer__social svg { width: 15px; height: 15px; fill: var(--kob-text-muted); }
.kob-footer__social a:hover svg { fill: var(--kob-accent-2); }
.kob-footer__col h3 { font-size: 11.5px; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 8px; color: var(--kob-accent-2); }
.kob-footer__col ul li { margin-bottom: 5px; }
.kob-footer__col a { font-size: 13px; color: var(--kob-text-muted); }
.kob-footer__col a:hover { color: var(--kob-text); }
.kob-footer__pay { padding: 20px 0; border-top: 1px solid var(--kob-border); }
.kob-footer__pay-label { font-size: 11px; text-transform: uppercase; letter-spacing: .06em; color: var(--kob-text-muted); margin-bottom: 10px; }
.kob-footer__pay-grid { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.kob-footer__pay-grid img, .kob-footer__pay-grid svg { height: 28px; width: auto; max-width: 100%; object-fit: contain; flex-shrink: 0; }
@media (max-width: 599px) { .kob-footer__pay-grid { gap: 8px 12px; } .kob-footer__pay-grid img, .kob-footer__pay-grid svg { height: 22px; } }
.kob-footer__age { display: flex; align-items: flex-start; gap: 12px; padding: 18px 0; border-top: 1px solid var(--kob-border); }
.kob-footer__age span { font-size: 11.5px; line-height: 1.5; color: var(--kob-text-muted); }
.kob-footer__age strong { color: var(--kob-text); }
.kob-footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; padding-top: 14px; border-top: 1px solid var(--kob-border); font-size: 12px; color: var(--kob-text-muted); }
.kob-footer__legal-links { display: flex; gap: 6px; flex-wrap: wrap; }
.kob-footer__legal-links a { color: var(--kob-text-muted); }
.kob-footer__legal-links a:hover { color: var(--kob-text); }
@media (max-width: 599px) {
  .kob-footer { padding: 28px 0 16px; font-size: 12px; }
  .kob-footer__col h3 { font-size: 11px; margin-bottom: 6px; }
  .kob-footer__col ul li { margin-bottom: 4px; }
  .kob-footer__col a { font-size: 12px; }
}

/* STICKY FAB (mobile only) */
.kob-fab {
  display: none; position: fixed; left: 50%; bottom: 16px; transform: translateX(-50%); z-index: 95;
  padding: 16px 30px; background: var(--kob-accent); color: #1a0f06; font-weight: 800; font-size: 14.5px;
  text-transform: uppercase; letter-spacing: .03em; border-radius: 999px;
  box-shadow: 0 10px 30px rgba(255, 106, 26, .45), 0 2px 8px rgba(0, 0, 0, .6);
  align-items: center; justify-content: center; gap: 8px; min-width: 220px; max-width: calc(100% - 28px);
  white-space: nowrap; text-align: center; transition: background .15s;
}
.kob-fab:hover { background: var(--kob-accent-hover); }
@media (max-width: 979px) { .kob-fab { display: inline-flex; } }
@media (max-width: 480px) { .kob-fab { padding: 14px 24px; font-size: 13.5px; min-width: 200px; } }
body.is-cookies-shown .kob-fab { bottom: 110px; }
@media (max-width: 480px) { body.is-cookies-shown .kob-fab { bottom: 150px; } }
@media (max-width: 1023px) { .kob-footer { padding-bottom: 84px; } }

/* COOKIE BAR */
.kob-cookies {
  position: fixed; left: 14px; right: 14px; bottom: 14px; z-index: 90; max-width: 640px; margin-left: auto; margin-right: auto;
  background: var(--kob-bg-raised); border: 1px solid var(--kob-border); border-radius: 14px; padding: 16px 18px;
  box-shadow: var(--kob-shadow); display: flex; flex-wrap: wrap; align-items: center; gap: 12px;
}
.kob-cookies p { font-size: 13px; color: #cfd1d8; flex: 1; min-width: 200px; }
.kob-cookies a { color: var(--kob-accent-2); text-decoration: underline; }
.kob-cookies__btn { background: var(--kob-accent); color: #1a0f06; font-weight: 700; font-size: 13px; padding: 9px 18px; border-radius: 999px; }

/* MOBILE BORDER GUARD */
@media (max-width: 760px) {
  .kob-main, .kob-main article, .kob-content, .kob-related {
    max-width: 100%; box-sizing: border-box;
  }
  .kob-lead-block, .kob-content p, .kob-content ul,
  .kob-content blockquote, .kob-content h2, .kob-content h3,
  .kob-offers__name, .kob-slots__head h2, .kob-faq h2,
  .kob-footer__brand p, .kob-footer__age span,
  .kob-author__bio, .kob-author__name {
    max-width: 100%;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    hyphens: auto;
  }
  .kob-hero__inner { padding-left: 0; padding-right: 0; }
  .kob-hero h1 { word-wrap: break-word; max-width: 100%; }
  .kob-content blockquote { margin-left: 0; margin-right: 0; max-width: 100%; }
  .kob-author { padding: 18px 14px; max-width: 100%; }
  .kob-faq__item summary, .kob-faq__answer { padding-left: 16px; padding-right: 16px; }
  .kob-related { padding: 14px 14px; max-width: 100%; }
  .kob-footer__age { padding-left: 0; padding-right: 0; align-items: flex-start; gap: 12px; }
  .kob-footer__age span { font-size: 11.5px; line-height: 1.5; }
}

@media (max-width: 480px) {
  .kob-container { padding-left: 12px; padding-right: 12px; }
  .kob-hero h1 { font-size: clamp(24px, 7vw, 32px); line-height: 1.1; }
  .kob-content h2 { font-size: 22px; }
  .kob-content p, .kob-lead-block { font-size: 14.5px; line-height: 1.6; }
  .kob-content blockquote { padding: 14px 16px; font-size: 14px; }
  .kob-author { padding: 14px 12px; gap: 12px; }
  .kob-author__bio { font-size: 13.5px; line-height: 1.55; }
  .kob-faq__item summary { padding: 14px 44px 14px 14px; font-size: 14.5px; }
  .kob-faq__answer { padding: 0 14px 14px; font-size: 13.5px; }
  .kob-offers__card { padding: 18px 14px; }
}
