/* ============================================================
   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;
  justify-content: center;
  align-items: center;
  gap: 8px;
  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: 15px;
  letter-spacing: 0.03em;
  color: #f0f0f0;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.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: 1100px) {
  .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; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { margin-top: 24px; }
.faq__inner {
  background: #41294A;
  border: 2px solid rgba(253,205,10,0.6);
  border-radius: 24px;
  padding: 32px;
}
.faq__heading {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.5vw, 34px);
  text-align: center;
  text-transform: uppercase;
  color: #FDCD0A;
  margin-bottom: 28px;
}
.faq__list { list-style: none; padding: 0; margin: 0; }
.faq__item {
  background: #FDCD0A;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  cursor: pointer;
}
.faq__item:last-child { margin-bottom: 0; }
.faq__question {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 1.8vw, 22px);
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #2B1234;
  padding: 20px 52px 20px 20px;
  margin: 0;
  user-select: none;
}
.faq__question::after {
  content: "+";
  position: absolute;
  top: 50%; right: 20px;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 900;
  color: #2B1234;
  transition: transform 0.25s;
  line-height: 1;
}
.faq__item.is-open .faq__question::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq__answer {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #2B1234;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}
.faq__item.is-open .faq__answer {
  max-height: 400px;
  padding: 0 20px 20px;
}

/* ============================================================
   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__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;
}
