/* =========================================================
   Wazamba theme — base + responsive
   Breakpoints (mobile-first):
     sm  ≥ 576px
     md  ≥ 768px
     lg  ≥ 992px
     xl  ≥ 1200px
     xxl ≥ 1400px
   Mobile-only overrides use max-width: 767.98px
   ========================================================= */

/* ---------- Tokens ---------- */
:root {
    /* palette */
    --c-bg: #071f3e;
    --c-bg-alt: #132c4b;
    --c-surface: #132c4b;
    --c-header: #ff7901;
    --c-text: #ffffff;
    --c-text-muted: #a8bcd4;
    --c-accent: #ff7901;
    --c-accent-2: #ffa14a;
    --c-accent-text: #ffffff;
    --c-btn: #50c945;
    --c-btn-hover: #45b03b;
    --c-border: rgba(255, 255, 255, .12);

    /* layout */
    --container: 1200px;
    --gutter: 16px;
    --header-h: 60px;
    --sidebar-w: 280px;
    --radius: 12px;
    --radius-sm: 8px;

    /* fluid type: 15px @320 → 17px @1200 */
    --fs-base: clamp(0.9375rem, 0.875rem + 0.23vw, 1.0625rem);
    --fs-h1: clamp(1.75rem, 1.25rem + 2.5vw, 3rem);
    --fs-h2: clamp(1.5rem, 1.15rem + 1.6vw, 2.25rem);
    --fs-h3: clamp(1.25rem, 1.05rem + 0.9vw, 1.75rem);
    --fs-h4: clamp(1.125rem, 1rem + 0.5vw, 1.375rem);

    /* rhythm */
    --space-section: clamp(2rem, 1rem + 5vw, 5rem);
    --space-block: clamp(1rem, 0.5rem + 2vw, 2rem);

    --transition: .25s ease;
    --z-header: 100;
    --z-overlay: 200;
    --z-sidebar: 300;
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: "Baloo 2", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: var(--fs-base);
    line-height: 1.65;
    color: var(--c-text);
    background: var(--c-bg);
    overflow-x: hidden;
}

/* lock scroll while the mobile menu is open (toggled from JS) */
body.is-menu-open {
    overflow: hidden;
}

img,
svg,
video,
iframe {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--c-accent);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover,
a:focus-visible {
    color: var(--c-accent-2);
}

:focus-visible {
    outline: 2px solid var(--c-accent);
    outline-offset: 2px;
}

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

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 .5em;
    line-height: 1.2;
    font-weight: 800;
    text-wrap: balance;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
h4 { font-size: var(--fs-h4); }

p, ul, ol, table, blockquote, figure {
    margin: 0 0 var(--space-block);
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

@media (min-width: 768px) {
    :root { --gutter: 24px; }
}

@media (min-width: 1200px) {
    :root { --gutter: 32px; }
}

@media (min-width: 1400px) {
    :root { --container: 1320px; }
}

/* ---------- Header ---------- */
.header {
    position: sticky;
    top: 0;
    z-index: var(--z-header);
    background-color: var(--c-header);
}

.header .container {
    min-height: var(--header-h);
    display: flex;
    align-items: center;
    gap: 12px;
}

.header__logo {
    display: flex;
    align-items: center;
}

.header__logo-img {
    width: auto;
    height: 32px;
    object-fit: contain;
}

.hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-inline-start: -10px;
    border-radius: var(--radius-sm);
    flex: 0 0 auto;
    transition: background-color var(--transition);
}

.hamburger:hover {
    background: rgba(0, 0, 0, .14);
}

@media (min-width: 768px) {
    :root { --header-h: 76px; }

    .header .container {
        gap: 20px;
    }

    .header__logo-img {
        height: 44px;
    }
}

@media (min-width: 992px) {
    /* desktop: menu lives in the sidebar rail, burger hidden */
    .hamburger {
        display: none;
    }

    .header .container {
        justify-content: space-between;
    }
}

/* ---------- Overlay ---------- */
.overlay {
    position: fixed;
    inset: 0;
    z-index: var(--z-overlay);
    background: rgba(0, 0, 0, .6);
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

.overlay.is-active {
    opacity: 1;
    visibility: visible;
}

/* ---------- Sidebar ---------- */
.sidebar {
    position: fixed;
    inset-block: 0;
    inset-inline-start: 0;
    z-index: var(--z-sidebar);
    width: min(var(--sidebar-w), 85vw);
    padding: 20px;
    background: var(--c-surface);
    border-inline-end: 1px solid var(--c-border);
    overflow-y: auto;
    overscroll-behavior: contain;
    transform: translateX(-100%);
    transition: transform var(--transition);
}

[dir="rtl"] .sidebar {
    transform: translateX(100%);
}

.sidebar.is-open {
    transform: translateX(0);
}

.sidebar__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-inline-start: auto;
    margin-bottom: 12px;
    font-size: 28px;
    line-height: 1;
    border-radius: var(--radius-sm);
    color: var(--c-text);
}

.sidebar__close:hover {
    background: rgba(255, 255, 255, .08);
}

.sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sidebar__link {
    padding: 12px 14px;
    border-radius: var(--radius-sm);
    color: var(--c-text);
    font-weight: 600;
    transition: background-color var(--transition), color var(--transition);
}

.sidebar__link:hover,
.sidebar__link:focus-visible {
    background: rgba(255, 255, 255, .08);
    color: var(--c-accent);
}

@media (min-width: 992px) {
    /* always-visible rail on desktop */
    .sidebar {
        position: static;
        width: auto;
        padding: 0;
        border: 0;
        background: none;
        overflow: visible;
        transform: none;
        max-width: var(--container);
        margin-inline: auto;
        padding-inline: var(--gutter);
    }

    .sidebar__close {
        display: none;
    }

    .sidebar__nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
        padding-block: 10px;
    }

    .overlay {
        display: none;
    }
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;

    text-align: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 31, 62, .35), rgba(7, 31, 62, .75));
}

.hero .container {
    position: relative;
    z-index: 1;
}

.inside-article {
    max-width: 820px;
    margin-inline: auto;
    padding: clamp(1.25rem, .75rem + 2vw, 2.5rem);
    border-radius: 0;
    color: #ffffff;
    background-color: #132c4b;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-block);
}

.entry-title {
    margin: 0;
    font-size: var(--fs-h1);
    text-shadow: 0 3px 0 rgba(0, 0, 0, .35);
}

@media (min-width: 992px) {
    .hero {
        text-align: start;
    }

    .hero .inside-article {
        margin-inline: 0;
        align-items: flex-start;
    }
}

/* ---------- Buttons ---------- */
.custom-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5em;
    min-height: 48px;
    padding: 12px 28px;
    border-radius: 2px;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .02em;
    color: var(--c-accent-text);
    background-color: var(--c-btn);
    transition: background-color var(--transition), transform var(--transition);
}

.custom-button:hover,
.custom-button:focus-visible {
    color: var(--c-accent-text);
    background-color: var(--c-btn-hover);
}

.custom-button:active {
    transform: translateY(1px);
}

.btn--hero {
    width: 100%;
    max-width: 320px;
}

@media (min-width: 576px) {
    .btn--hero {
        width: auto;
        min-width: 240px;
        padding-inline: 40px;
        font-size: 1.125rem;
    }
}

/* ---------- Main / content ---------- */
.main {
    flex: 1 0 auto;
}

.content {
    padding-block: var(--space-section);
}

.page-content > *:last-child {
    margin-bottom: 0;
}

.page-content h2,
.page-content h3,
.page-content h4 {
    margin-top: calc(var(--space-block) * 1.5);
}

.page-content ul,
.page-content ol {
    padding-inline-start: 1.25em;
}

.page-content li + li {
    margin-top: .35em;
}

.page-content img {
    border-radius: var(--radius);
    margin-inline: auto;
}

.page-content blockquote {
    margin-inline: 0;
    padding: var(--gutter);
    border-inline-start: 4px solid var(--c-accent);
    border-radius: var(--radius-sm);
    background: var(--c-bg-alt);
    color: var(--c-text-muted);
}

/* tables from injected content — scrollable instead of breaking layout */
.page-content table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-collapse: collapse;
    white-space: nowrap;
}

.page-content th,
.page-content td {
    padding: 10px 14px;
    border: 1px solid var(--c-border);
    text-align: start;
}

.page-content th {
    background: var(--c-bg-alt);
    font-weight: 700;
}

@media (min-width: 768px) {
    .page-content table {
        display: table;
        white-space: normal;
    }
}

/* long words / URLs must not overflow on narrow screens */
.page-content p,
.page-content li,
.page-content h1,
.page-content h2,
.page-content h3 {
    overflow-wrap: break-word;
}

/* ---------- Footer ---------- */
.footer {
    padding: 20px;
    background: var(--c-bg-alt);
    border-top: 1px solid var(--c-border);
    color: var(--c-text-muted);
    text-align: center;
    font-size: .9375rem;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-block);
}

.footer__logo img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
}

.footer__link {
    color: var(--c-text);
    font-weight: 600;
}

.footer__payments {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 20px;
}

.footer__payments img {
    height: 24px;
    width: auto;
    object-fit: contain;
}

.footer__disclaimer,
.footer__copyright {
    max-width: 60rem;
}

.footer__disclaimer p,
.footer__copyright p {
    margin: 0;
    font-size: .875rem;
    line-height: 1.6;
}

.copyright {
    color: var(--c-text-muted);
}

@media (min-width: 768px) {
    .footer__payments img {
        height: 28px;
    }

    .footer__logo img {
        height: 44px;
    }
}

/* ---------- Mobile-only tweaks (matches the inline hero breakpoint) ---------- */
@media (max-width: 767.98px) {
    .hero {
        background-position: center top;
    }

    .footer__nav {
        flex-direction: column;
        gap: 10px;
    }
}

/* ---------- Landscape phones: trim vertical padding ---------- */
@media (max-height: 480px) and (orientation: landscape) {
    .hero {
        padding-block: 2rem;
    }

    .content {
        padding-block: 2rem;
    }
}

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/* ---------- Print ---------- */
@media print {
    .header,
    .sidebar,
    .overlay,
    .hero,
    .footer__payments {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }
}

/* --- Slots Block Styles --- */
.slots-wrapper {
  margin: 30px 0;
}
.slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
  align-items: start;
}
.slot-card {
  text-align: center;
  border-radius: 8px;
  transition: transform 0.2s ease, background 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  position: relative;
}
.slot-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0);
  border-radius: 8px;
  transition: background 0.2s;
  z-index: 1;
}
.slot-image {
  border-radius: 6px;
  overflow: hidden;
}
.slot-image img {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  padding: 0;
}
.slot-name {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: calc(100% - 16px);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  background: #450C88;
  color: #FFFFFF;
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
  z-index: 2;
}
.slot-card:hover .slot-name{
  opacity: 1;
}
.slot-card:hover::before {
  background: rgba(0, 0, 0, 0.6);
  opacity: 1;
}
@media (max-width: 600px) {
  .slots-grid {
    gap: 10px;
  }
  .slot-name {
    font-size: 12px;
  }
}


/* --- Review Block Styles --- */
#review-block {
  margin: 32px 0;
  background: #151b3a;
  border-radius: 14px;
  padding: 20px 16px 16px;
  overflow: hidden;
}
#review-block .review-block__header {
  display: grid;
  grid-template-columns: 280px 1fr 200px;
  gap: 16px;
  padding: 0 24px 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
}
.review-block__header span:first-child{
  padding-left: 32px;
}
.review-block__header span:nth-child(2){
  text-align: center;
}
#review-block .review-block__row {
  display: grid;
  grid-template-columns: 280px 1fr 200px;
  gap: 16px;
  align-items: center;
  padding: 16px 24px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.02);
  transition: background 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}
#review-block .review-block__row:last-child{
  margin: 0;
}
#review-block .review-block__row:hover {
  background: rgba(255, 255, 255, 0.05);
}
#review-block .review-block__row--highlighted {
  background: rgba(80, 100, 200, 0.18);
  border-color: rgba(100, 120, 220, 0.25);
}
#review-block .review-block__row--highlighted:hover {
  background: rgba(80, 100, 200, 0.24);
}
#review-block .review-block__label {
  position: absolute;
  top: -1px;
  left: 0;
  width: 120px;
  transform: rotate(-46deg) translate(-36px, -11px);
  height: 20px;
  padding: 0;
  font-size: 7px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 20px;
  color: #fff;
}
#review-block .review-block__casino {
  display: flex;
  align-items: center;
  gap: 12px;
}
#review-block .review-block__number {
  font-weight: 700;
  font-size: 15px;
  min-width: 20px;
  color: rgba(255, 255, 255, 0.7);
}
#review-block .review-block__logo-wrapper{
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 90px;
}
#review-block .review-block__logo {
  object-fit: contain;
  box-shadow: none;
  max-height: 90px;
  margin: 0;
}
#review-block .review-block__name {
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  flex-grow: 1;
}
#review-block .review-block__bonus {
  text-align: center;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
}
#review-block .review-block__bonus:has(span:nth-child(2)) span:first-child{
  color: #FFDA03;
}
#review-block .review-block__bonus strong,
#review-block .review-block__bonus b {
  color: #fff;
  font-weight: 700;
}
#review-block .review-block__code {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 2px;
}
#review-block .review-block__action {
  display: flex;
  justify-content: flex-end;
}
#review-block .review-block__button {
  display: inline-block;
  padding: 12px 32px;
  background: #e91e63;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  text-align: center;
  cursor: pointer;
}
#review-block .review-block__button:hover {
  background: #d81b60;
  transform: translateY(-1px);
}
@media (max-width: 750px) and (min-width: 601px) {
  #review-block .review-block__header {
    grid-template-columns: 1fr 1fr;
  }
  #review-block .review-block__row {
    grid-template-columns: 1fr 1fr;
  }
  .review-block__action {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  #review-block .review-block__button {
    width: 100%;
  }
}
@media (max-width: 600px) {
  #review-block {
    padding: 8px;
  }
  #review-block .review-block__header {
    display: none;
  }
  #review-block .review-block__row {
    grid-template-columns: 1fr;
    gap: 12px;
    text-align: center;
    padding: 20px 16px;
  }
  #review-block .review-block__logo-wrapper {
    height: auto;
  }
  #review-block .review-block__casino {
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }
  #review-block .review-block__name {
    font-size: 15px;
  }
  #review-block .review-block__bonus {
    font-size: 15px;
  }
  #review-block .review-block__action {
    justify-content: center;
  }
  #review-block .review-block__button {
    width: 100%;
    padding: 14px 24px;
    font-size: 14px;
  }
}


/* --- Author block --- */
.content .author-block {
  margin: 24px 0;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.02);
}
.content .author-block__inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.content .author-block--no-bio .author-block__inner {
  align-items: center;
}
.content .author-block--no-bio .author-block__name {
  margin-bottom: 0;
}
.content .author-block__photo {
  flex-shrink: 0;
  align-self: flex-start;
  width: 72px;
  height: 72px;
  min-width: 72px;
  min-height: 72px;
  max-width: 72px;
  max-height: 72px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.06);
}
.content .author-block--no-bio .author-block__photo {
  align-self: center;
}
.content .author-block__photo img {
  width: 100% !important;
  height: 100% !important;
  max-width: none;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  display: block;
  margin: 0;
  padding: 0;
  aspect-ratio: 1;
}
.content .author-block__body {
  min-width: 0;
  flex: 1;
}
.content .author-block__name {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.35;
  margin: 0 0 6px;
}
.content .author-block__bio {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.85;
}


/* --- FAQ block (no font-family; inherits theme) --- */
.faq-block {
  margin: 28px 0;
  max-width: 100%;
}
.faq-block__item {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.02);
}
.faq-block__item:last-child {
  margin-bottom: 0;
}
.faq-block__summary {
  cursor: pointer;
  list-style: none;
  padding: 12px 14px;
  font-weight: 600;
  line-height: 1.4;
  position: relative;
  padding-right: 32px;
}
.faq-block__summary::-webkit-details-marker {
  display: none;
}
.faq-block__summary::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
  opacity: 0.55;
}
.faq-block__item[open] .faq-block__summary::after {
  transform: translateY(-25%) rotate(-135deg);
}
.faq-block__summary:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
  border-radius: 6px;
}
.faq-block__question {
  all: unset !important;
}
.faq-block__answer {
  padding: 0 14px 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  line-height: 1.55;
}
.faq-block__answer > *:first-child {
  margin-top: 12px;
}


.content .post-date {
  margin: 0 0 16px;
  font-size: 0.9rem;
  line-height: 1.4;
  opacity: 0.8;
}
.content .post-date__label {
  margin-inline-end: 0.35em;
}
.content .post-date time {
  font-weight: 500;
}
