/* =====================================================
   skrill-casinos.net — style.css
   BEM prefix: skr-
   Palette: Skrill purple #7B2FBE / dark #2D0060
   ===================================================== */

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* GLOBAL OVERFLOW GUARD */
html, body { overflow-x: hidden; max-width: 100%; }

/* TYPOGRAPHY */
body {
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--skr-text);
  background: var(--skr-bg);
}

h1, h2, h3, h4, h5, h6 { line-height: 1.25; font-weight: 700; }
h1, h2, h3, p, li, blockquote, td, th { overflow-wrap: anywhere; word-break: break-word; }
a { color: var(--skr-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
a, code { overflow-wrap: anywhere; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* CSS VARIABLES */
:root {
  --skr-bg: #ffffff;
  --skr-bg-raised: #F3E8FF;
  --skr-bg-dark: #2D0060;
  --skr-bg-dark2: #4C1080;
  --skr-text: #1A1A1A;
  --skr-text-muted: #6B7280;
  --skr-accent: #7B2FBE;
  --skr-accent-2: #BF00BF;
  --skr-accent-light: #F3E8FF;
  --skr-border: rgba(123,47,190,0.2);
  --skr-radius: 12px;
  --skr-shadow: 0 4px 24px rgba(123,47,190,0.12);
  --skr-shadow-strong: 0 8px 40px rgba(123,47,190,0.22);
}

/* CONTAINER */
.skr-container {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 16px;
}
@media (min-width: 760px) { .skr-container { padding-inline: 24px; } }

/* ==================== HEADER ==================== */
.skr-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--skr-border);
  box-shadow: 0 2px 12px rgba(123,47,190,0.08);
}
.skr-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 16px;
}
.skr-header__logo { display: flex; align-items: center; flex-shrink: 0; }
.skr-header__logo img { max-height: 48px; width: auto; object-fit: contain; }

/* NAV DESKTOP */
.skr-nav { display: flex; align-items: center; gap: 4px; }
.skr-nav__item { position: relative; }
.skr-nav__link {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 12px;
  font-size: 14px; font-weight: 600;
  color: var(--skr-text);
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  cursor: pointer;
  border: none; background: none;
}
.skr-nav__link:hover, .skr-nav__link--active {
  background: var(--skr-accent-light);
  color: var(--skr-accent);
  text-decoration: none;
}
.skr-nav__arrow { font-size: 10px; transition: transform 0.2s; }
.skr-nav__item:hover .skr-nav__arrow { transform: rotate(180deg); }

/* DROPDOWN */
.skr-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid var(--skr-border);
  border-radius: var(--skr-radius);
  box-shadow: var(--skr-shadow-strong);
  padding: 8px 0;
  display: none;
  z-index: 300;
}
.skr-nav__item:hover .skr-dropdown { display: block; }
.skr-dropdown a {
  display: block;
  padding: 8px 18px;
  font-size: 13px;
  color: var(--skr-text);
  transition: background 0.12s;
}
.skr-dropdown a:hover { background: var(--skr-accent-light); color: var(--skr-accent); text-decoration: none; }

/* HEADER ACTIONS */
.skr-header__actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.skr-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 20px;
  font-size: 14px; font-weight: 700;
  border-radius: 40px;
  border: none; cursor: pointer;
  transition: background 0.15s, transform 0.1s, box-shadow 0.15s;
  white-space: nowrap; max-width: 100%;
}
.skr-btn--primary {
  background: var(--skr-accent);
  color: #fff;
  box-shadow: 0 4px 16px rgba(123,47,190,0.35);
}
.skr-btn--primary:hover { background: #6B21A8; box-shadow: 0 6px 20px rgba(123,47,190,0.45); transform: translateY(-1px); text-decoration: none; }
.skr-btn--outline {
  background: transparent;
  color: var(--skr-accent);
  border: 2px solid var(--skr-accent);
}
.skr-btn--outline:hover { background: var(--skr-accent-light); text-decoration: none; }
.skr-btn--sm { padding: 8px 16px; font-size: 13px; }
.skr-btn--teal {
  background: #00BCD4;
  color: #fff;
  border-color: #00BCD4;
}
.skr-btn--teal:hover { background: #0097A7; border-color: #0097A7; transform: translateY(-1px); text-decoration: none; }

/* BURGER */
.skr-header__burger {
  display: none;
  flex-direction: column; justify-content: center; align-items: center;
  gap: 5px; width: 40px; height: 40px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.skr-header__burger span {
  display: block; width: 24px; height: 2px;
  background: var(--skr-accent);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

@media (max-width: 979px) {
  .skr-nav { display: none; }
  .skr-header__actions .skr-btn--outline { display: none; }
  .skr-header__burger { display: flex; }
}

/* ==================== MOBILE MENU ==================== */
.skr-mobile-menu {
  position: fixed; inset: 0; z-index: 500;
  background: rgba(45,0,96,0.97);
  display: none;
  flex-direction: column;
  overflow-y: auto;
  padding: 20px 0 40px;
}
.skr-mobile-menu.is-open { display: flex; }
.skr-mobile-menu__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.skr-mobile-menu__logo img { max-height: 36px; filter: brightness(0) invert(1); }
.skr-mobile-menu__brand { font-size: 22px; font-weight: 900; letter-spacing: -0.3px; }
.skr-mobile-menu__close {
  background: none; border: none; color: #fff;
  font-size: 28px; cursor: pointer; line-height: 1; padding: 4px;
}
.skr-mobile-menu__group { padding: 16px 20px 0; }
.skr-mobile-menu__group-title {
  font-size: 11px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--skr-accent-2);
  margin-bottom: 8px;
}
.skr-mobile-menu__group a {
  display: block;
  padding: 10px 12px;
  color: rgba(255,255,255,0.9);
  font-size: 15px;
  border-radius: 8px;
  transition: background 0.12s;
}
.skr-mobile-menu__group a:hover { background: rgba(123,47,190,0.2); text-decoration: none; color: #fff; }
.skr-mobile-menu__ctas { padding: 20px; display: flex; flex-direction: column; gap: 10px; }

/* ==================== HERO ==================== */
.skr-hero {
  background: linear-gradient(135deg, #2D0060 0%, #4C1080 50%, #BF00BF 100%);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.skr-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%237B2FBE' fill-opacity='0.06'%3E%3Ccircle cx='30' cy='30' r='30'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  pointer-events: none;
}
.skr-hero__inner { position: relative; max-width: 780px; min-width: 0; max-width: 100%; }
.skr-hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  color: #fff;
  margin-bottom: 20px;
  line-height: 1.15;
}
.skr-hero__lead {
  font-size: clamp(16px, 2.2vw, 20px);
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  max-width: 620px;
}
.skr-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.skr-hero__badges {
  display: flex; gap: 24px; flex-wrap: wrap;
  margin-top: 40px; padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.skr-hero__badge { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.75); font-size: 14px; }
.skr-hero__badge-icon { font-size: 22px; }

@media (max-width: 639px) {
  .skr-hero { padding: 52px 0 48px; }
  .skr-hero h1 { font-size: clamp(24px, 8vw, 36px); }
  .skr-hero__ctas .skr-btn { width: 100%; justify-content: center; }
}

/* ==================== BREADCRUMBS ==================== */
.skr-breadcrumbs {
  padding: 12px 0;
  background: var(--skr-bg-raised);
  border-bottom: 1px solid var(--skr-border);
}
.skr-breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 4px; align-items: center; list-style: none; }
.skr-breadcrumbs li { font-size: 13px; color: var(--skr-text-muted); }
.skr-breadcrumbs li + li::before { content: '/'; margin-right: 4px; }
.skr-breadcrumbs a { color: var(--skr-accent); }

/* ==================== SUBNAV ==================== */
.skr-subnav {
  background: #fff;
  border-bottom: 2px solid var(--skr-border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.skr-subnav::-webkit-scrollbar { display: none; }
.skr-subnav__inner { display: flex; gap: 0; min-width: max-content; }
.skr-subnav a {
  display: flex; align-items: center; gap: 6px;
  padding: 12px 16px;
  font-size: 13px; font-weight: 600;
  color: var(--skr-text-muted);
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
}
.skr-subnav a:hover, .skr-subnav a.active {
  color: var(--skr-accent);
  border-bottom-color: var(--skr-accent);
  text-decoration: none;
}

/* ==================== SECTION ==================== */
.skr-section { padding: 64px 0; }
.skr-section--dark {
  background: var(--skr-bg-dark);
  color: #fff;
}
.skr-section--raised { background: var(--skr-bg-raised); }
.skr-section__head {
  text-align: center;
  margin-bottom: 40px;
}
.skr-section__head h2 {
  font-size: clamp(22px, 3.5vw, 36px);
  margin-bottom: 12px;
}
.skr-section__head p { font-size: 16px; color: var(--skr-text-muted); max-width: 560px; margin-inline: auto; }
.skr-section--dark .skr-section__head p { color: rgba(255,255,255,0.7); }
.skr-section--dark h2 { color: #fff; }
.skr-section__badge {
  display: inline-block;
  background: var(--skr-accent-light);
  color: var(--skr-accent);
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase;
  padding: 4px 12px; border-radius: 20px;
  margin-bottom: 12px;
}

@media (max-width: 639px) { .skr-section { padding: 40px 0; } }

/* ==================== LIDE PARAGRAPH ==================== */
.skr-lead { font-size: 17px; line-height: 1.75; margin-bottom: 32px; color: var(--skr-text); }

/* ==================== CONTENT IMAGES ==================== */
article img, section.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(--skr-radius);
}
.skr-hero img, .banner img, img.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; }
.skr-author img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; }
footer img[src*="img_listing_casinos"] { max-height: 28px; width: auto; object-fit: contain; }

@media (max-width: 768px) {
  article img, section.content img, main p img { max-height: 320px; }
  .skr-hero img, .banner img { max-height: 360px; }
}

/* ==================== TRUST STRIP ==================== */
.skr-trust {
  background: var(--skr-bg-raised);
  border-top: 1px solid var(--skr-border);
  border-bottom: 1px solid var(--skr-border);
  padding: 16px 0;
}
.skr-trust__inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 20px 32px;
}
.skr-trust__item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--skr-text-muted); font-weight: 500; }
.skr-trust__item-icon { font-size: 20px; }

/* ==================== OFFERS LISTING ==================== */
.skr-listing { display: flex; flex-direction: column; gap: 20px; width: 100%; overflow: hidden; }

.skr-listing-item {
  position: relative;
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 0;
  background: #fff;
  border: 1.5px solid var(--skr-border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--skr-shadow);
  transition: box-shadow 0.2s, transform 0.2s;
}
.skr-listing-item:hover { box-shadow: var(--skr-shadow-strong); transform: translateY(-2px); }
.skr-listing-item--featured {
  border-color: #BF00BF;
  box-shadow: 0 4px 32px rgba(191,0,191,0.22);
}

/* Featured badge */
.skr-listing-item__badge {
  position: absolute; top: 0; left: 160px;
  background: #BF00BF;
  color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 14px 4px 12px;
  border-radius: 0 0 10px 0;
  letter-spacing: 0.5px; text-transform: uppercase;
  z-index: 2;
}

.skr-listing-item__logo-col {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  padding: 20px 16px;
  background: linear-gradient(180deg, #F3E8FF 0%, #E8D0FF 100%);
  min-height: 160px;
}
.skr-listing-item__logo {
  width: 120px; height: 72px;
  display: flex; align-items: center; justify-content: center;
}
.skr-listing-item__logo img {
  max-width: 110px; max-height: 64px;
  object-fit: contain; display: block;
}
.skr-listing-item__rating { display: flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 600; color: var(--skr-accent); }
.skr-listing-item__stars { color: #f59e0b; font-size: 13px; letter-spacing: 1px; }

.skr-listing-item__body { padding: 20px 20px 16px; display: flex; flex-direction: column; gap: 10px; }
.skr-listing-item__name { font-size: 18px; font-weight: 800; color: var(--skr-text); }
.skr-listing-item__bonuses { display: flex; flex-wrap: wrap; gap: 8px; }
.skr-bonus-tag {
  display: inline-flex; align-items: center; gap: 5px;
  background: var(--skr-accent-light); color: var(--skr-accent);
  font-size: 12px; font-weight: 700;
  padding: 4px 12px; border-radius: 20px;
}
.skr-bonus-tag--green { background: #d1fae5; color: #065f46; }
.skr-bonus-tag--orange { background: #fff3cd; color: #92400e; }
.skr-listing-item__features { display: flex; flex-wrap: wrap; gap: 6px; }
.skr-feature-pill {
  font-size: 12px; color: var(--skr-text-muted);
  background: var(--skr-bg-raised);
  border: 1px solid var(--skr-border);
  padding: 2px 10px; border-radius: 20px;
}
.skr-listing-item__pays {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 3px;
  margin-top: 8px;
  width: fit-content;
  max-width: 100%;
}
.skr-listing-item__pays img {
  height: 16px;
  width: auto;
  object-fit: contain;
  background: #4C1080;
  border-radius: 4px;
  padding: 3px 7px;
  box-sizing: content-box;
  flex-shrink: 0;
}
.skr-eth-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #4C1080;
  border-radius: 4px;
  padding: 3px 7px;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 639px) {
  .skr-listing-item__pays {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .skr-listing-item__pays::-webkit-scrollbar { display: none; }
}

.skr-listing-item__cta-col {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 10px;
  padding: 20px 24px;
  background: linear-gradient(180deg, #F3E8FF 0%, #E8D0FF 100%);
  min-width: 170px;
  border-left: 1px solid var(--skr-border);
}
.skr-listing-item__cta-col .skr-btn { width: 100%; justify-content: center; text-align: center; }
.skr-listing-item__playing { font-size: 12px; color: var(--skr-text-muted); text-align: center; }
.skr-listing-item__playing strong { color: #22c55e; }
.skr-listing-item__review { font-size: 12px; color: var(--skr-accent); font-weight: 600; }

/* overlay link */
.skr-listing-item__overlay {
  position: absolute; inset: 0; z-index: 1;
}
.skr-listing-item__logo-col,
.skr-listing-item__body,
.skr-listing-item__cta-col { position: relative; z-index: 2; }

/* Mobile listing */
@media (max-width: 767px) {
  .skr-listing-item {
    grid-template-columns: 1fr;
    width: 100%;
    overflow: hidden;
  }

  /* Лого + рейтинг — горизонтально в одну строку */
  .skr-listing-item__logo-col {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    min-height: unset;
  }
  .skr-listing-item__logo { width: 72px; height: 44px; flex-shrink: 0; }
  .skr-listing-item__logo img { max-width: 72px; max-height: 44px; }
  .skr-listing-item__rating { font-size: 12px; }

  /* Body — компактнее */
  .skr-listing-item__body {
    padding: 12px 14px;
    gap: 8px;
    overflow: hidden;
    min-width: 0;
  }
  .skr-listing-item__name { font-size: 16px; }

  /* Текст бонус-листа не вылезает */
  .skr-listing-item__body ul {
    padding-left: 14px;
    margin: 0;
    overflow: hidden;
  }
  .skr-listing-item__body ul li {
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
  }

  /* Бонус-теги переносятся */
  .skr-listing-item__bonuses {
    flex-wrap: wrap;
    gap: 6px;
  }
  .skr-bonus-tag { font-size: 11px; padding: 3px 10px; }

  /* Feature pills */
  .skr-feature-pill { font-size: 11px; padding: 2px 8px; }

  /* Badge */
  .skr-listing-item__badge {
    position: relative;
    left: 0; top: 0;
    border-radius: 0;
    text-align: center;
    width: 100%;
  }

  /* CTA col — полная ширина снизу */
  .skr-listing-item__cta-col {
    border-left: none;
    border-top: 1px solid var(--skr-border);
    padding: 14px 16px;
    min-width: unset;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
  }
  .skr-listing-item__cta-col .skr-btn {
    width: 100%;
    order: -1;
  }
  .skr-listing-item__playing,
  .skr-listing-item__review { font-size: 12px; }
}

/* ==================== SLOTS LISTING ==================== */
.skr-slots { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 16px; }
.skr-slot-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--skr-bg-dark);
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: transform 0.18s, box-shadow 0.18s;
  cursor: pointer;
}
.skr-slot-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(123,47,190,0.3); }
.skr-slot-card img {
  display: block; width: 100%; height: 140px;
  object-fit: cover; margin: 0;
}
.skr-slot-card__title {
  padding: 8px 10px 10px;
  font-size: 12px; font-weight: 600;
  color: #fff;
  text-align: center;
  background: rgba(45,0,96,0.9);
}
.skr-slot-card__overlay {
  position: absolute; inset: 0;
  background: rgba(123,47,190,0.82);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.2s;
}
.skr-slot-card:hover .skr-slot-card__overlay { opacity: 1; }
.skr-slot-card__play {
  background: #fff; color: var(--skr-accent);
  font-weight: 800; font-size: 13px;
  padding: 8px 20px; border-radius: 20px;
  text-transform: uppercase;
}

@media (max-width: 599px) {
  .skr-slots { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .skr-slot-card img { height: 110px; }
}

/* ==================== INFO GRID ==================== */
.skr-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.skr-info-card {
  background: #fff;
  border: 1.5px solid var(--skr-border);
  border-radius: var(--skr-radius);
  padding: 28px 24px;
  box-shadow: var(--skr-shadow);
}
.skr-info-card__icon { font-size: 36px; margin-bottom: 14px; }
.skr-info-card h3 { font-size: 17px; margin-bottom: 10px; color: var(--skr-text); }
.skr-info-card p { font-size: 14px; color: var(--skr-text-muted); line-height: 1.65; }

/* ==================== STATS BAR ==================== */
.skr-stats { display: flex; flex-wrap: wrap; gap: 0; background: var(--skr-accent); }
.skr-stat {
  flex: 1 1 160px;
  display: flex; flex-direction: column; align-items: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,0.18);
  text-align: center;
}
.skr-stat:last-child { border-right: none; }
.skr-stat__num { font-size: 36px; font-weight: 900; color: #fff; line-height: 1; }
.skr-stat__label { font-size: 13px; color: rgba(255,255,255,0.78); margin-top: 6px; }

/* ==================== REVIEWS ==================== */
.skr-reviews {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1100px) { .skr-reviews { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px)  { .skr-reviews { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .skr-reviews { grid-template-columns: 1fr; } }
.skr-review-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e9e0f8;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 12px rgba(123,47,190,.07);
}
.skr-review-card__stars {
  color: #00b67a;
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 1;
}
.skr-review-card__text {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  flex: 1;
  margin: 0;
}
.skr-review-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #f0eafa;
}
.skr-review-card__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #7B2FBE;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.skr-review-card__name {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
}
.skr-review-card__date {
  font-size: 11px;
  color: #999;
  margin-top: 1px;
}
.skr-tp-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; }
.skr-tp-logo img { max-height: 24px; width: auto; }

/* Trustpilot score block */
.skr-tp-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}
.skr-tp-score__logo {
  max-height: 32px;
  width: auto;
}
.skr-tp-score__stars {
  display: flex;
  gap: 3px;
}
.skr-tp-star {
  font-size: 28px;
  color: #00b67a;   /* Trustpilot green */
  line-height: 1;
}
.skr-tp-star--half {
  position: relative;
  color: #dcdce6;
}
.skr-tp-star--half::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: #00b67a;
}
.skr-tp-score__text {
  font-size: 14px;
  color: #555;
  text-align: center;
}
.skr-tp-score__text strong { color: #1a1a1a; }
.skr-tp-section { padding: 16px 20px; }

/* ==================== AUTHOR BLOCK ==================== */
.skr-author {
  display: flex; gap: 24px; align-items: flex-start;
  background: var(--skr-bg-raised);
  border: 1.5px solid var(--skr-border);
  border-radius: 16px;
  padding: 28px 28px;
}
.skr-author img { width: 96px; height: 96px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.skr-author__info h3 { font-size: 18px; margin-bottom: 4px; }
.skr-author__role { color: var(--skr-accent); font-size: 13px; font-weight: 600; margin-bottom: 8px; }
.skr-author__bio { font-size: 14px; color: var(--skr-text-muted); line-height: 1.65; }
.skr-author__linkedin {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 10px; font-size: 13px; font-weight: 600; color: #0077b5;
}

@media (max-width: 560px) {
  .skr-author { flex-direction: column; gap: 16px; padding: 20px 16px; }
}

/* ==================== FAQ ==================== */
.skr-faq { display: flex; flex-direction: column; gap: 8px; }
.skr-faq-item {
  background: #fff;
  border: 1.5px solid var(--skr-border);
  border-radius: var(--skr-radius);
  overflow: hidden;
}
.skr-faq-item__q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  font-size: 15px; font-weight: 700;
  cursor: pointer; gap: 12px;
  color: var(--skr-text);
  background: none; border: none; width: 100%; text-align: left;
}
.skr-faq-item__q:hover { background: var(--skr-bg-raised); }
.skr-faq-item__icon { font-size: 20px; color: var(--skr-accent); flex-shrink: 0; transition: transform 0.2s; }
.skr-faq-item.is-open .skr-faq-item__icon { transform: rotate(45deg); }
.skr-faq-item__a {
  max-height: 0; overflow: hidden;
  padding: 0 20px;
  font-size: 14px; color: var(--skr-text-muted); line-height: 1.7;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.skr-faq-item.is-open .skr-faq-item__a { max-height: 400px; padding: 0 20px 18px; }

/* ==================== TABLE ==================== */
.skr-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 10px;
  border: 1px solid var(--skr-border);
}
table {
  min-width: 560px;
  width: 100%;
  border-collapse: collapse;
}
th {
  background: var(--skr-accent);
  color: #fff;
  padding: 12px 14px;
  font-size: 13px;
  text-align: left;
  white-space: nowrap;
}
td {
  padding: 11px 14px;
  font-size: 14px;
  border-bottom: 1px solid var(--skr-border);
  white-space: nowrap;
}
td:first-child { white-space: normal; font-weight: 600; min-width: 100px; }
tr:nth-child(even) td { background: var(--skr-bg-raised); }
@media (max-width: 639px) {
  .skr-table-wrap::after {
    content: "← přejeďte prstem →";
    display: block;
    text-align: center;
    font-size: 11px;
    color: #999;
    padding: 6px 0 4px;
  }
  th, td { padding: 10px 10px; font-size: 12px; }
}

/* ==================== STICKY CTA ==================== */
.skr-sticky-cta {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--skr-bg-dark);
  border-top: 2px solid var(--skr-accent);
  padding: 12px 20px;
  z-index: 90;
  align-items: center; justify-content: space-between;
  gap: 12px;
}
.skr-sticky-cta__text { color: rgba(255,255,255,0.85); font-size: 14px; }
@media (max-width: 767px) { .skr-sticky-cta { display: flex; } }

/* ==================== FAB ==================== */
.skr-fab {
  display: none;
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 95;
  padding: 18px 38px;
  background: var(--skr-accent);
  color: #fff;
  font-weight: 900; font-size: 16px;
  text-transform: uppercase; letter-spacing: 0.6px;
  border-radius: 32px;
  box-shadow: 0 10px 30px rgba(123,47,190,0.5), 0 2px 8px rgba(0,0,0,0.6);
  transition: background 0.15s, transform 0.15s;
  align-items: center; justify-content: center; gap: 10px;
  min-width: 260px; max-width: calc(100% - 28px);
  white-space: nowrap; text-align: center;
  text-decoration: none;
}
.skr-fab::after { content: "▶"; font-size: 11px; }
.skr-fab:hover { transform: translate(-50%, -2px); background: #6B21A8; text-decoration: none; color: #fff; }
.skr-fab:active { transform: translate(-50%, 0); }
@media (max-width: 979px) { .skr-fab { display: inline-flex; } }
@media (max-width: 480px) { .skr-fab { padding: 16px 32px; font-size: 15px; min-width: 220px; } }
body.is-cookies-shown .skr-fab { bottom: 110px; }
@media (max-width: 480px) { body.is-cookies-shown .skr-fab { bottom: 150px; } }

/* ==================== COOKIES BAR ==================== */
.skr-cookies {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--skr-bg-dark);
  border-top: 2px solid var(--skr-accent);
  padding: 16px 20px;
  z-index: 80;
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
}
.skr-cookies p { color: rgba(255,255,255,0.82); font-size: 13px; flex: 1; min-width: 200px; }
.skr-cookies p a { color: var(--skr-accent-2); }
.skr-cookies__btns { display: flex; gap: 8px; }

/* ==================== FOOTER ==================== */
.skr-footer {
  background: #111111;
  color: rgba(255,255,255,0.7);
  padding: 56px 0 0;
}

.skr-footer__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 14px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.skr-footer__brand { grid-column: 1 / -1; }
.skr-footer__brand-name {
  display: block;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1;
}
.skr-footer__brand-skrill { color: #BF00BF; }
.skr-footer__brand-domain { color: rgba(255,255,255,0.55); font-weight: 600; font-size: 20px; }
/* footer brand img — убран чтобы не ломать pay-grid иконки */
.skr-footer__brand p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.65; max-width: 360px; }

@media (min-width: 600px) {
  .skr-footer__top { grid-template-columns: 1fr 1fr 1fr; }
}
@media (min-width: 900px) {
  .skr-footer__top { grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr; gap: 24px; }
  .skr-footer__brand { grid-column: auto; }
}

.skr-footer__col h4 {
  font-size: 12px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--skr-accent-2);
  margin-bottom: 14px;
}
.skr-footer__col ul li { margin-bottom: 8px; }
.skr-footer__col a {
  font-size: 13px; color: rgba(255,255,255,0.7);
  transition: color 0.15s;
}
.skr-footer__col a:hover { color: #fff; text-decoration: none; }

.skr-footer__socials { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 14px; }
.skr-footer__social {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(123,47,190,0.2);
  color: #fff; font-size: 16px;
  transition: background 0.15s;
}
.skr-footer__social:hover { background: var(--skr-accent); text-decoration: none; }

/* Pay methods row */
.skr-footer__pay { margin-top: 20px; }
.skr-footer__pay-label { font-size: 11px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 10px; }
.skr-footer__pay-grid {
  display: flex; flex-wrap: wrap; gap: 8px 14px; align-items: center;
}
.skr-footer__pay-grid img {
  height: 22px;
  width: auto;
  object-fit: contain;
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 3px 7px;
  box-sizing: content-box;
}
.skr-footer__pay-grid img:hover { background: rgba(255,255,255,0.2); }

/* RG block in footer */
.skr-footer__rg {
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.1);
  padding: 16px 20px;
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.skr-footer__rg strong { color: rgba(255,255,255,0.85); }
.skr-footer__rg a { color: var(--skr-accent-2); }

.skr-footer__middle {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.skr-footer__bottom {
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,0.45);
}
.skr-footer__bottom a { color: rgba(255,255,255,0.45); }
.skr-footer__bottom a:hover { color: rgba(255,255,255,0.8); text-decoration: none; }
.skr-footer__bottom-links { display: flex; gap: 16px; flex-wrap: wrap; }
.skr-footer__age {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 50%;
  font-size: 11px; font-weight: 800;
  color: rgba(255,255,255,0.6);
  flex-shrink: 0;
}

/* Footer mobile compress */
@media (max-width: 599px) {
  .skr-footer { padding: 28px 0 16px; font-size: 12px; }
  .skr-footer__col h4 { font-size: 11px; margin-bottom: 6px; }
  .skr-footer__col ul li { margin-bottom: 4px; }
  .skr-footer__col a { font-size: 12px; }
  .skr-footer__brand img { max-height: 30px; margin-bottom: 10px; }
  .skr-footer__brand p { font-size: 12px; margin-bottom: 10px; }
  .skr-footer__pay-grid { gap: 8px 12px; }
  .skr-footer__pay-grid img { height: 22px; }
}
