/* ============================================================
   Bizzo Casino — style.css
   ============================================================ */

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

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

body {
  margin: 0;
  background: #2B1234;
  font-family: "Roboto", sans-serif;
  color: #fff;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

ul, ol { margin: 0 0 1.5em 0; padding-left: 1.25em; }

h1, h2, h3, h4, h5, h6, p { margin: 0; }

/* ----- Layout ----- */
.container {
  max-width: 1400px;
  width: 95%;
  margin: 0 auto;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Roboto Condensed", "Roboto", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  color: #2B1234;
  padding: 14px 28px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(1px); }

.btn--primary {
  display: block;
  width: 220px;
  margin: 0 auto;
  padding: 18px 0;
  font-size: 20px;
  background: linear-gradient(180deg, #B1FB4F 0%, #0CBA3A 100%);
  box-shadow: 0 6px 0 #008C25;
}
.btn--primary:hover { box-shadow: 0 8px 0 #008C25; }

.btn--login {
  width: 160px;
  padding: 12px 0;
  background: linear-gradient(180deg, #FFCE07 0%, #FFA600 100%);
  box-shadow: 0 4px 0 #A06A3B;
}
.btn--signup {
  width: 160px;
  padding: 12px 0;
  background: linear-gradient(180deg, #B1FB4F 0%, #0CBA3A 100%);
  box-shadow: 0 4px 0 #008C25;
}

/* ============================================================
   Site Header
   ============================================================ */
.site-header {
  background: #41294A;
  border-bottom: 1px solid rgba(253, 205, 10, 0.2);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header__inner {
  position: relative;
  min-height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.site-header__logo img { display: block; }

.site-nav {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-nav__link {
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: #f0f0f0;
  padding: 8px 10px;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}
@media (max-width: 1280px) {
  .site-nav__link { font-size: 12px; padding: 8px 8px; }
}
.site-nav__link:hover {
  color: #FDCD0A;
  background: rgba(253, 205, 10, 0.08);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.site-header__lang {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
}
.site-header__lang img { display: block; }
.site-header__lang-code {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #F8E1F3;
}

.nav-wrap {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 20px;
  justify-content: space-between;
}

/* Burger */
.menu-toggle {
  display: none;
  position: relative;
  width: 30px;
  height: 20px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.menu-toggle__bar,
.menu-toggle__bar::before,
.menu-toggle__bar::after {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, top 0.3s, opacity 0.3s;
}
.menu-toggle__bar         { top: 9px; }
.menu-toggle__bar::before { content: ""; top: -8px; }
.menu-toggle__bar::after  { content: ""; top: 8px; }

.menu-toggle.is-open .menu-toggle__bar { background: transparent; }
.menu-toggle.is-open .menu-toggle__bar::before { top: 0; transform: rotate(45deg); }
.menu-toggle.is-open .menu-toggle__bar::after  { top: 0; transform: rotate(-45deg); }

@media (max-width: 1200px) {
  .menu-toggle { display: block; }

  .nav-wrap {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #41294A;
    border-top: 1px solid rgba(253, 205, 10, 0.35);
    box-shadow: 0 12px 32px rgba(0,0,0,0.45);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 20px;
    gap: 12px;
    z-index: 200;
  }
  .nav-wrap.is-open { display: flex; }

  .site-nav {
    flex-direction: column;
    width: 100%;
    min-width: 0;
    gap: 2px;
  }
  .site-nav__link {
    display: block;
    padding: 10px 12px;
    text-align: left;
    border-radius: 6px;
  }

  .site-header__actions {
    flex-direction: column;
    width: 100%;
    gap: 8px;
    border-top: 1px solid rgba(253, 205, 10, 0.2);
    padding-top: 12px;
  }
  .site-header__actions .btn { width: 100%; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  margin-top: 20px;
  background: url(../../wp-content/uploads/2022/08/mainbg.webp) no-repeat center / cover;
  border-radius: 24px;
  overflow: hidden;
}
.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 70px 40px;
  text-align: center;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(43,18,52,0.65) 100%);
}

.hero__title {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.1;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #FDCD0A;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6);
  margin-bottom: 20px;
  max-width: 900px;
}
.hero__subtitle {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.3;
  color: #FDCD0A;
  background: rgba(65,41,74,0.85);
  border: 1px solid rgba(253,205,10,0.4);
  border-radius: 10px;
  padding: 10px 24px;
  backdrop-filter: blur(4px);
}
.hero__btn { margin-top: 36px; }

/* Floating chips animation */
.hero__chips {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__chip {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  animation: floatChip linear infinite;
}
.hero__chip:nth-child(1) { width: 120px; height: 120px; background: #FDCD0A; top: 10%; left: 5%; animation-duration: 18s; }
.hero__chip:nth-child(2) { width: 80px;  height: 80px;  background: #B1FB4F; top: 60%; left: 80%; animation-duration: 14s; animation-delay: -4s; }
.hero__chip:nth-child(3) { width: 60px;  height: 60px;  background: #FDCD0A; top: 80%; left: 15%; animation-duration: 20s; animation-delay: -8s; }
.hero__chip:nth-child(4) { width: 100px; height: 100px; background: #FF6B9D; top: 20%; left: 70%; animation-duration: 16s; animation-delay: -2s; }

@keyframes floatChip {
  0%   { transform: translateY(0) rotate(0deg); }
  50%  { transform: translateY(-30px) rotate(180deg); }
  100% { transform: translateY(0) rotate(360deg); }
}

@media (max-width: 768px) {
  .hero__inner { min-height: 380px; padding: 50px 24px; }
}
@media (max-width: 480px) {
  .hero__inner { min-height: 300px; }
}

/* ============================================================
   Info grid (Πληροφορίες + Πλεονεκτήματα)
   ============================================================ */
.info-grid {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.info-grid__col {
  flex: 1 1 0;
  background: #41294A;
  border: 2px solid #FDCD0A;
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 0 30px rgba(253,205,10,0.08);
  transition: box-shadow 0.2s;
}
.info-grid__col:hover {
  box-shadow: 0 0 50px rgba(253,205,10,0.18);
}
.info-grid__title {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  color: #FDCD0A;
  margin-bottom: 24px;
  padding-bottom: 16px;
}
.info-grid__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, #FDCD0A, transparent);
}
.info-grid__list { list-style: none; padding: 0; margin: 0; }
.info-grid__list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 16px;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.9);
}
.info-grid__list li::before {
  content: "✦";
  position: absolute;
  top: 2px; left: 0;
  color: #FDCD0A;
  font-size: 12px;
}
.info-grid__list--pros li::before { content: "✔"; color: #B1FB4F; }

@media (max-width: 900px) {
  .info-grid { flex-direction: column; }
}

/* ============================================================
   Section (content block)
   ============================================================ */
.section { margin-top: 24px; }
.section__inner {
  position: relative;
  background: #41294A;
  border: 1px solid rgba(253, 205, 10, 0.5);
  border-radius: 24px;
  padding: 40px 40px 24px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(253,205,10,0.1), inset 0 1px 0 rgba(255,255,255,0.05);
}

/* ============================================================
   CTA Banner
   ============================================================ */
.cta-banner {
  margin-top: 24px;
  background: linear-gradient(135deg, #830DBB 0%, #5F10C8 50%, #3713D7 100%);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(131,13,187,0.4);
}
.cta-banner__inner {
  padding: 80px 24px;
  background: url(../../wp-content/uploads/2022/08/banerbadge.webp) no-repeat center / cover;
}
.cta-banner__content {
  max-width: 520px;
  margin: 0 auto;
  background: rgba(43,18,52,0.92);
  border: 1px solid rgba(253,205,10,0.4);
  border-radius: 20px;
  padding: 48px 44px;
  text-align: center;
  backdrop-filter: blur(8px);
}
.cta-banner__label {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(253,205,10,0.7);
  margin-bottom: 8px;
}
.cta-banner__title {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #FDCD0A;
  margin: 12px 0 20px;
}
.cta-banner__sub {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}
.cta-banner__btn { margin-top: 4px; }

@media (max-width: 1200px) {
  .cta-banner__inner { background-size: 150%; padding: 48px 20px; }
}
@media (max-width: 768px) {
  .cta-banner__inner { background-image: none; padding: 32px 16px; }
  .cta-banner__content { padding: 32px 24px; }
}

/* ============================================================
   Bonus cards
   ============================================================ */
.bonus-section { margin-top: 24px; }
.bonus-section__title {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(24px, 3vw, 38px);
  text-align: center;
  text-transform: uppercase;
  color: #FDCD0A;
  margin-bottom: 24px;
  letter-spacing: 0.03em;
}
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.bonus-card {
  background: #41294A;
  border: 2px solid rgba(123,2,127,0.6);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(123,2,127,0.5);
}
.bonus-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.bonus-card__body {
  background: #7B027F;
  padding: 32px 28px;
  text-align: center;
  flex: 1;
}
.bonus-card__label {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.bonus-card__title {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: clamp(24px, 2.5vw, 36px);
  line-height: 1.2;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #FFC700;
  margin-bottom: 10px;
}
.bonus-card__sub {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}
.bonus-card__btn { display: inline-block; }

@media (max-width: 900px) {
  .bonus-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   Payment table
   ============================================================ */
.payment-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 12px;
  margin-bottom: 0;
}
.payment-table td {
  width: 20%;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  text-align: center;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2B1234;
  padding: 20px 10px;
  background: linear-gradient(175deg, #FFFFFF 10%, #FFCE07 80%);
  border-radius: 14px;
  transition: transform 0.15s;
}
.payment-table td:hover { transform: translateY(-2px); }

@media (max-width: 1000px) {
  .payment-table td { font-size: 17px; padding: 16px 8px; }
}
@media (max-width: 700px) {
  .payment-table { border-spacing: 0; display: block; }
  .payment-table tbody { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
  .payment-table tr { display: contents; }
  .payment-table td { display: block; width: 100%; border-radius: 12px; }
}

/* ============================================================
   #content — main content block
   ============================================================ */
#content {
  padding: 40px 60px 24px;
}
#content > * + * { margin-top: 20px; }

#content h2 {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 12px;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 36px);
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  color: #FDCD0A;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(253,205,10,0.15);
}
#content h2:first-child { border-top: 0; padding-top: 0; margin-top: 0; }

#content h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  color: #FDCD0A;
  margin-top: 32px;
  opacity: 0.9;
}

#content p {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.9);
}

#content ul {
  margin: 0;
  padding-left: 28px;
}
#content li {
  font-family: "Roboto", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}
#content li::marker { color: #FDCD0A; }

#content .payment-table { margin-top: 20px; }

@media (max-width: 1200px) {
  #content { padding: 32px 40px 16px; }
}
@media (max-width: 768px) {
  #content { padding: 24px 20px 12px; }
}
@media (max-width: 576px) {
  #content h2 { font-size: 20px; }
  #content h3 { font-size: 17px; }
  #content p,
  #content li { font-size: 15px; }
}

/* ============================================================
   Slots / Games section
   ============================================================ */
.slots-section { margin-top: 48px; }
.slots-section__head {
  text-align: center;
  margin-bottom: 36px;
}
.slots-section__eyebrow {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #FDCD0A;
  background: rgba(253,205,10,0.1);
  border: 1px solid rgba(253,205,10,0.4);
  border-radius: 999px;
  padding: 6px 18px;
  margin-bottom: 16px;
}
.slots-section__title {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FDCD0A;
  margin-bottom: 16px;
  text-shadow: 0 2px 24px rgba(253,205,10,0.25);
}
.slots-section__lead {
  max-width: 680px;
  margin: 0 auto;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
}

.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.slot-tile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: #fff;
  aspect-ratio: 1 / 1.1;
  padding: 22px 16px 18px;
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(253,205,10,0.25);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.slot-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
}
.slot-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 80% 0%, rgba(255,255,255,0.18), transparent 60%),
    radial-gradient(circle at 0% 100%, rgba(0,0,0,0.45), transparent 60%);
}
.slot-tile:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(253,205,10,0.7);
  box-shadow: 0 18px 44px rgba(0,0,0,0.55), 0 0 0 2px rgba(253,205,10,0.25);
}

/* Per-tile background palettes */
.slot-tile--1::before  { background: linear-gradient(140deg, #FF1F71 0%, #B30056 50%, #5C0030 100%); }
.slot-tile--2::before  { background: linear-gradient(140deg, #C58A2B 0%, #8B5A00 50%, #422600 100%); }
.slot-tile--3::before  { background: linear-gradient(140deg, #6A2BE0 0%, #3F0D8C 50%, #1B0048 100%); }
.slot-tile--4::before  { background: linear-gradient(140deg, #FFA227 0%, #C45C00 50%, #5C2B00 100%); }
.slot-tile--5::before  { background: linear-gradient(140deg, #00C7FF 0%, #0050B0 50%, #00164D 100%); }
.slot-tile--6::before  { background: linear-gradient(140deg, #00B883 0%, #006442 50%, #00301F 100%); }
.slot-tile--7::before  { background: linear-gradient(140deg, #2F5DAA 0%, #1A2F66 50%, #07112B 100%); }
.slot-tile--8::before  { background: linear-gradient(140deg, #88E13E 0%, #3F8E11 50%, #1B3F05 100%); }
.slot-tile--9::before  { background: linear-gradient(140deg, #00B266 0%, #006C39 50%, #003217 100%); }
.slot-tile--10::before { background: linear-gradient(140deg, #FF6B1A 0%, #B72E00 50%, #4A0E00 100%); }
.slot-tile--11::before { background: linear-gradient(140deg, #D72C2C 0%, #800808 50%, #330000 100%); }
.slot-tile--12::before { background: linear-gradient(140deg, #B11FE1 0%, #5F0590 50%, #260033 100%); }

.slot-tile__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: "Roboto Condensed", "Roboto", sans-serif;
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #2B1234;
  background: linear-gradient(180deg, #FFCE07 0%, #FFA600 100%);
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 0 rgba(0,0,0,0.25);
}
.slot-tile__icon {
  font-size: 52px;
  line-height: 1;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
}
.slot-tile__name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.slot-tile__provider {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 4px;
}
.slot-tile__rtp {
  font-family: "Roboto", sans-serif;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FDCD0A;
  margin-bottom: 14px;
}
.slot-tile__play {
  display: inline-block;
  font-family: "Roboto Condensed", "Roboto", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2B1234;
  background: linear-gradient(180deg, #B1FB4F 0%, #0CBA3A 100%);
  padding: 9px 18px;
  border-radius: 8px;
  box-shadow: 0 3px 0 #008C25;
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.25s, opacity 0.25s;
}
.slot-tile:hover .slot-tile__play {
  transform: translateY(0);
  opacity: 1;
}

.slots-section__cta {
  margin-top: 36px;
  text-align: center;
}

@media (max-width: 1100px) { .slots-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px)  { .slots-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; } .slot-tile__icon { font-size: 42px; } }
@media (max-width: 420px)  { .slot-tile__play { opacity: 1; transform: none; } }

/* ============================================================
   Payments section
   ============================================================ */
.payments-section { margin-top: 56px; }
.payments-section__head {
  text-align: center;
  margin-bottom: 36px;
}
.payments-section__eyebrow {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #B1FB4F;
  background: rgba(177,251,79,0.08);
  border: 1px solid rgba(177,251,79,0.35);
  border-radius: 999px;
  padding: 6px 18px;
  margin-bottom: 16px;
}
.payments-section__title {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FDCD0A;
  margin-bottom: 14px;
}
.payments-section__lead {
  max-width: 640px;
  margin: 0 auto;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
}

.payments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(165deg, rgba(65,41,74,0.95) 0%, rgba(43,18,52,0.95) 100%);
  border: 1px solid rgba(253,205,10,0.25);
  border-radius: 16px;
  padding: 22px 16px 18px;
  min-height: 140px;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.payment-item:hover {
  transform: translateY(-3px);
  border-color: rgba(253,205,10,0.6);
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}
.payment-item img {
  height: 36px;
  width: auto;
  object-fit: contain;
  margin-bottom: 12px;
  filter: brightness(1.05);
}
.payment-item__name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 4px;
}
.payment-item__time {
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.02em;
}

.payments-features {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.payments-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(65,41,74,0.6);
  border: 1px solid rgba(253,205,10,0.2);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  line-height: 1.3;
  color: rgba(255,255,255,0.85);
}
.payments-features__icon {
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
}

@media (max-width: 1000px) {
  .payments-grid     { grid-template-columns: repeat(3, 1fr); }
  .payments-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .payments-grid     { grid-template-columns: repeat(2, 1fr); }
  .payments-features { grid-template-columns: 1fr; }
}

/* ============================================================
   Site Footer
   ============================================================ */
.site-footer {
  margin-top: 48px;
  background: #41294A;
  border-top: 1px solid rgba(253,205,10,0.2);
}
.site-footer__inner {
  text-align: center;
  padding: 56px 0 44px;
}
.site-footer__logo {
  margin-bottom: 24px;
  display: inline-block;
  opacity: 0.9;
  transition: opacity 0.15s;
}
.site-footer__logo:hover { opacity: 1; }
.site-footer__logo img { margin: 0 auto; }

.site-footer__text {
  max-width: 860px;
  margin: 0 auto 36px;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.65);
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 4px;
  margin: 0 auto 28px;
  max-width: 900px;
}
.site-footer__nav a {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.site-footer__nav a:hover {
  color: #FDCD0A;
  background: rgba(253,205,10,0.08);
}

.site-footer__partners {
  position: relative;
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 24px 0;
  margin-bottom: 32px;
}
.site-footer__partners::before,
.site-footer__partners::after {
  content: "";
  position: absolute;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(253,205,10,0.5), transparent);
}
.site-footer__partners::before { top: 0; }
.site-footer__partners::after  { bottom: 0; }
.site-footer__partners img {
  height: 30px;
  width: auto;
  opacity: 0.75;
  filter: grayscale(20%);
  transition: opacity 0.15s, filter 0.15s;
}
.site-footer__partners img:hover { opacity: 1; filter: none; }

.site-footer__age {
  margin: 0 auto 14px;
  opacity: 0.6;
}
.site-footer__copy {
  font-family: "Roboto", sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.02em;
}
