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

html {
  scroll-behavior: smooth;
}

img, svg {
  display: block;
  max-width: 100%;
}

ul, ol {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font: inherit;
}

/* =============================================
   CSS CUSTOM PROPERTIES
   ============================================= */
:root {
  --color-ocean:      #BF0A30;   /* deep Albanian red */
  --color-lagoon:     #E53E3E;   /* bright red accent */
  --color-lagoon-lt:  #FDECEA;   /* pale rose highlight */
  --color-sand:       #F9F4F3;   /* warm off-white background */
  --color-sand-dk:    #EDE5E3;   /* warm grey borders */
  --color-palm:       #1C1C1C;   /* eagle black */
  --color-coral:      #CC1030;   /* vivid red — CTA buttons */
  --color-white:      #FFFFFF;
  --color-text:       #1C1C1C;   /* near-black body text */
  --color-text-muted: #6B7280;

  --font-heading: 'Poppins', sans-serif;
  --font-body:    'Inter', sans-serif;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;

  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 6px 24px rgba(191, 10, 48, 0.20);

  --container-max: 1200px;
  --container-pad: 16px;
}

/* =============================================
   BASE STYLES
   ============================================= */
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-sand);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.3;
  color: var(--color-text);
}

h1 { font-size: clamp(1.6rem, 5vw, 2.4rem); font-weight: 700; }
h2 { font-size: clamp(1.3rem, 4vw, 1.8rem); font-weight: 600; }
h3 { font-size: clamp(1.1rem, 3vw, 1.35rem); font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* =============================================
   CONTAINER
   ============================================= */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background-color 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}

.btn--coral {
  background-color: var(--color-coral);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.btn--coral::after {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
  transform: skewX(-20deg);
  animation: btn-shine 3.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes btn-shine {
  0%   { left: -120%; }
  28%  { left: 150%;  }
  100% { left: 150%;  }
}

.btn--coral:hover {
  background-color: #d4603f;
  box-shadow: 0 4px 16px rgba(231, 111, 81, 0.35);
  transform: translateY(-1px);
}

.btn--coral:active {
  transform: translateY(0);
}

.btn--lg {
  padding: 13px 28px;
  font-size: 1rem;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  background-color: var(--color-ocean);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

/* Logo */
.site-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.site-header__logo-img {
  height: 48px;
  width: auto;
}

/* Nav */
.site-nav {
  display: none;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-nav__extra {
  display: none;
}

.site-nav__link {
  display: block;
  padding: 8px 10px;
  color: rgba(255, 255, 255, 0.85);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: background-color 0.2s, color 0.2s;
}

.site-nav__link:hover {
  background-color: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
}

/* Burger */
.site-header__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.site-header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.site-header__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header__burger.is-open span:nth-child(2) {
  opacity: 0;
}

.site-header__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav */
.site-nav--mobile {
  display: none;
  background-color: var(--color-ocean);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 8px 0 16px;
}

.site-nav--mobile.is-open {
  display: block;
}

.site-nav--mobile .site-nav__list {
  flex-direction: column;
  align-items: stretch;
  gap: 2px;
  padding: 0 var(--container-pad);
}

.site-nav--mobile .site-nav__link {
  padding: 10px 14px;
}

/* =============================================
   ADS DISCLOSURE
   ============================================= */
.ads-disclosure {
  width: fit-content;
  background-color: transparent;
  border: 1px solid rgba(107, 114, 128, 0.25);
  border-radius: var(--radius-sm);
  margin-bottom: 24px;
  overflow: visible;
}

.ads-disclosure[open] {
  background-color: #fffdf0;
  border-color: var(--color-sand-dk);
  overflow: hidden;
  width: 100%;
  max-width: 560px;
}

.ads-disclosure__summary {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 12px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--color-text-muted);
  list-style: none;
  user-select: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.ads-disclosure__summary::-webkit-details-marker {
  display: none;
}

.ads-disclosure__summary:hover {
  color: var(--color-text);
}

/* "AD" badge */
.ads-disclosure__summary::before {
  content: 'AD';
  background-color: rgba(107, 114, 128, 0.15);
  color: var(--color-text-muted);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

/* Chevron — rotates when open */
.ads-disclosure__summary::after {
  content: '▼';
  margin-left: 4px;
  font-size: 0.55rem;
  color: var(--color-text-muted);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}

.ads-disclosure[open] .ads-disclosure__summary::after {
  transform: rotate(180deg);
}

.ads-disclosure__body {
  padding: 10px 14px 12px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  border-top: 1px solid var(--color-sand-dk);
  margin-bottom: 0;
}

/* =============================================
   HERO / PAGE INTRO
   ============================================= */
.page-hero {
  background:
    linear-gradient(135deg, rgba(191, 10, 48, 0.78) 0%, rgba(90, 5, 20, 0.88) 100%),
    url('../images/albania-background.webp') center 20% / cover no-repeat;
  padding: 40px 0 48px;
  color: var(--color-white);
}

.page-hero__title {
  color: var(--color-white);
  margin-bottom: 16px;
}

.page-hero__subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin-bottom: 0;
}

/* =============================================
   MAIN CONTENT AREA
   ============================================= */
.site-main {
  padding: 32px 0 48px;
}

/* =============================================
   SECTION
   ============================================= */
.section {
  margin-bottom: 48px;
}

.section__title {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-lagoon);
  display: inline-block;
}

/* =============================================
   OFFER CARDS (replaces offers table)
   ============================================= */
.offers-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.offer-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-sand-dk);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.offer-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.offer-card__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.offer-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border-bottom: 1px solid var(--color-sand);
}

.offer-card__logo {
  width: 80px;
  height: 44px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
}

.offer-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.offer-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-ocean);
}

.offer-card__rank {
  margin-left: auto;
  flex-shrink: 0;
  background-color: var(--color-lagoon-lt);
  color: var(--color-ocean);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.offer-card__body {
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
}

.offer-card__bonus {
  grid-column: 1 / -1;
}

.offer-card__bonus-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-palm);
}

.offer-card__bonus-tc {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.offer-card__pros,
.offer-card__cons {
  font-size: 0.85rem;
}

.offer-card__pros-title,
.offer-card__cons-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.offer-card__pros-title { color: var(--color-palm); }
.offer-card__cons-title { color: var(--color-coral); }

.offer-card__pros ul,
.offer-card__cons ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.offer-card__pros li,
.offer-card__cons li {
  padding-left: 16px;
  position: relative;
  color: var(--color-text);
  line-height: 1.4;
}

.offer-card__pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-palm);
  font-size: 0.75rem;
  top: 2px;
}

.offer-card__cons li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--color-coral);
  font-size: 0.75rem;
  top: 2px;
}

.offer-card__footer {
  padding: 12px 16px;
  background-color: var(--color-sand);
  border-top: 1px solid var(--color-sand-dk);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.offer-card__tc-note {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  flex: 1;
  min-width: 160px;
}

.offer-card__cta {
  width: 100%;
}

/* =============================================
   BOOKMAKER REVIEW SECTIONS
   ============================================= */
.bookmaker-review {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-sand-dk);
  padding: 24px;
  margin-bottom: 24px;
}

.bookmaker-review__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-sand);
}

.bookmaker-review__logo {
  width: 90px;
  height: 50px;
  flex-shrink: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
}

.bookmaker-review__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.bookmaker-review__title {
  color: var(--color-ocean);
}

.bookmaker-review__pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

.bookmaker-review__pros {
  background-color: #f0faf4;
  border: 1px solid #b7e4c7;
  border-top: 3px solid var(--color-palm);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}

.bookmaker-review__cons {
  background-color: #fff5f3;
  border: 1px solid #ffd5cc;
  border-top: 3px solid var(--color-coral);
  border-radius: var(--radius-md);
  padding: 14px 16px;
}

.bookmaker-review__pros-title,
.bookmaker-review__cons-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.bookmaker-review__pros-title { color: var(--color-palm); }
.bookmaker-review__cons-title { color: var(--color-coral); }

.bookmaker-review__pros ul,
.bookmaker-review__cons ul {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bookmaker-review__pros li,
.bookmaker-review__cons li {
  padding-left: 22px;
  position: relative;
  font-size: 0.9rem;
  line-height: 1.5;
}

.bookmaker-review__pros li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-palm);
  font-weight: 700;
}

.bookmaker-review__cons li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--color-coral);
  font-weight: 700;
}

.bookmaker-review__cta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-sand);
}

.bookmaker-review__body p {
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 12px;
}

.bookmaker-review__body a {
  color: var(--color-lagoon);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.bookmaker-review__body a:hover {
  color: var(--color-ocean);
}

/* =============================================
   DISCLAIMER BLOCK
   ============================================= */
.disclaimer {
  background-color: #fff8e1;
  border-left: 4px solid var(--color-coral);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 20px 16px;
  margin-bottom: 48px;
}

.disclaimer__title {
  color: var(--color-coral);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.disclaimer__title::before {
  content: '⚠';
  font-size: 1rem;
}

.disclaimer p {
  font-size: 0.9rem;
  color: var(--color-text);
  margin-bottom: 10px;
}

.disclaimer p:last-child {
  margin-bottom: 0;
}

.disclaimer a {
  color: var(--color-ocean);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* =============================================
   MARGIN TABLE
   ============================================= */
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-sand-dk);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  font-size: 0.9rem;
}

.data-table th {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
  text-align: center;
  white-space: nowrap;
}

.data-table th:first-child {
  text-align: left;
}

/* Bookmaker cell — spans both rows */
.data-table thead th[rowspan] {
  background-color: #003d5c;
  vertical-align: middle;
  font-size: 0.9rem;
  padding: 0 16px;
}

/* Group row: EPL / IPL */
.data-table thead tr:first-child th:not([rowspan]) {
  background-color: #003d5c;
  font-size: 0.88rem;
  padding: 12px 16px 10px;
  letter-spacing: 0.3px;
}

/* Sub-header row: 1X2 / Total / Winner */
.data-table thead tr:nth-child(2) th {
  background-color: var(--color-lagoon);
  font-size: 0.8rem;
  padding: 8px 16px 9px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

/* Visual separator before IPL column group */
.data-table thead tr:first-child th:last-child,
.data-table thead tr:nth-child(2) th:last-child {
  border-left: 2px solid rgba(255, 255, 255, 0.25);
}

.data-table td {
  padding: 11px 16px;
  border-bottom: 1px solid var(--color-sand);
  text-align: center;
}

.data-table td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--color-ocean);
}

/* IPL column separator in data rows */
.data-table tbody td:last-child {
  border-left: 2px solid var(--color-sand-dk);
}

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

.data-table tbody tr:nth-child(even) {
  background-color: #fafaf8;
}

.data-table tbody tr:hover {
  background-color: #f0f8fb;
}

/* Best value highlight */
.data-table td.is-best {
  color: var(--color-palm);
  font-weight: 700;
  background-color: #edf7f1;
}

.data-table tbody tr:hover td.is-best {
  background-color: #dff0e8;
}

/* =============================================
   TIPS / ADVICE SECTION
   ============================================= */
.tips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.tip-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-sand-dk);
  padding: 20px;
}

.tip-card__title {
  color: var(--color-ocean);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.tip-card__icon {
  width: 32px;
  height: 32px;
  background-color: var(--color-lagoon-lt);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.tip-card p {
  font-size: 0.9rem;
  color: var(--color-text);
  margin-bottom: 0;
}

/* =============================================
   CONCLUSION
   ============================================= */
.conclusion {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-sand-dk);
  padding: 24px;
}

.conclusion ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.conclusion li {
  padding-left: 24px;
  position: relative;
  font-size: 0.9rem;
  line-height: 1.6;
}

.conclusion li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-lagoon);
  font-weight: 700;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background-color: var(--color-text);
  color: rgba(255, 255, 255, 0.75);
  padding: 40px 0 20px;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

.site-footer__logo-img {
  height: 56px;
  width: auto;
  margin-bottom: 12px;
}

.site-footer__tagline {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.55);
  max-width: 280px;
}

.site-footer__col-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-white);
  margin-bottom: 14px;
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.site-footer__nav a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.site-footer__nav a:hover {
  color: var(--color-lagoon-lt);
}

.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.site-footer__copyright {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.site-footer__disclaimer {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.5;
}

.site-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.site-footer__badge {
  background-color: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  padding: 4px 10px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* =============================================
   LEGAL CONTENT
   ============================================= */

.legal-content {
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-sand-dk);
  padding: 32px 28px 40px;
  max-width: 820px;
}

.legal-content h2 {
  margin-top: 32px;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--color-sand);
  color: var(--color-ocean);
  font-size: 1.1rem;
}

.legal-content h2:first-of-type { margin-top: 20px; }

.legal-content p  { font-size: 0.92rem; margin-bottom: 10px; }
.legal-content ul { list-style: disc; padding-left: 20px; margin-bottom: 12px; }
.legal-content li { font-size: 0.92rem; line-height: 1.6; margin-bottom: 4px; }
.legal-content a  { color: var(--color-ocean); }
.legal-content a:hover { color: var(--color-lagoon); }

/* Small hero variant for inner pages */
.page-hero--sm {
  padding: 28px 0 32px;
}

.page-hero--sm .page-hero__subtitle {
  font-size: 0.9rem;
  opacity: 0.75;
  max-width: 400px;
}

/* =============================================
   REVIEW SLIDER
   ============================================= */

.review-slider {
  margin: 20px auto 0;
  max-width: 320px;
  text-align: center;
}

.review-slider__inner {
  display: flex;
  align-items: center;
  gap: 8px;
}

.review-slider__img {
  flex: 1;
  min-width: 0;
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-sand-dk);
  cursor: zoom-in;
}

.review-slider__btn {
  flex-shrink: 0;
  width: 36px;
  height: 52px;
  background: var(--color-ocean);
  border: none;
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}

.review-slider__btn:hover {
  background: var(--color-lagoon);
}

.review-slider__counter {
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

/* =============================================
   LIGHTBOX
   ============================================= */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6);
  object-fit: contain;
  display: block;
}

.lightbox__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.15s;
  padding: 4px 8px;
}

.lightbox__close:hover { opacity: 1; }

.lightbox__prev,
.lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  padding: 12px 16px;
  cursor: pointer;
  transition: background 0.15s;
  user-select: none;
}

.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }

.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255, 255, 255, 0.22); }

.lightbox__counter {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
  font-family: var(--font-body);
}

/* =============================================
   RESPONSIVE — TABLET (480px+)
   ============================================= */
@media (min-width: 480px) {
  :root {
    --container-pad: 20px;
  }

  .offer-card__cta {
    width: auto;
  }

  .tips-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer__bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* =============================================
   RESPONSIVE — DESKTOP (768px+)
   ============================================= */
@media (min-width: 768px) {
  :root {
    --container-pad: 32px;
  }

  .site-header__burger {
    display: none;
  }

  .site-nav {
    display: block;
  }

  .offer-card__inner {
    grid-template-columns: 1fr;
  }

  .offer-card__body {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .offer-card__bonus {
    grid-column: auto;
  }

  .offer-card__footer {
    flex-wrap: nowrap;
  }

  .offer-card__cta {
    width: auto;
    flex-shrink: 0;
  }

  .tips-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .site-footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }

  .bookmaker-review__pros-cons {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
}

/* =============================================
   RESPONSIVE — WIDE DESKTOP (1024px+)
   ============================================= */
@media (min-width: 1024px) {
  .page-hero {
    padding: 56px 0 64px;
  }

  .tips-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* =============================================
   RESPONSIVE — EXTRA WIDE (1200px+)
   ============================================= */
@media (min-width: 1200px) {
  .site-nav__extra {
    display: block;
  }
}
