/* ============================================================
   Playamo Casino DE — style.css
   Brand: Deep Navy #0D1B2A | Accent Orange #FF6B00 | Gold #FFB800
   Font: Montserrat (headings) + Open Sans (body)
   ============================================================ */

/* ----- 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: #0D1B2A;
  font-family: "Open Sans", 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: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  color: #fff;
  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: 240px;
  margin: 0 auto;
  padding: 18px 0;
  font-size: 20px;
  color: #fff;
  background: linear-gradient(180deg, #FF8C00 0%, #FF4500 100%);
  box-shadow: 0 6px 0 #CC3700;
}
.btn--primary:hover { box-shadow: 0 8px 0 #CC3700; }

.btn--login {
  width: 160px;
  padding: 12px 0;
  background: transparent;
  border: 2px solid rgba(255, 184, 0, 0.7);
  color: #FFB800;
  border-radius: 8px;
}
.btn--login:hover { background: rgba(255,184,0,0.1); }

.btn--signup {
  width: 160px;
  padding: 12px 0;
  background: linear-gradient(180deg, #FF8C00 0%, #FF4500 100%);
  box-shadow: 0 4px 0 #CC3700;
  color: #fff;
}

/* ============================================================
   Site Header
   ============================================================ */
.site-header {
  background: #0A1520;
  border-bottom: 1px solid rgba(255, 184, 0, 0.15);
  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: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  color: #ccd6e0;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background 0.15s, color 0.15s;
}
.site-nav__link:hover {
  color: #FFB800;
  background: rgba(255, 184, 0, 0.08);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.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: #0A1520;
    border-top: 1px solid rgba(255, 184, 0, 0.2);
    box-shadow: 0 12px 32px rgba(0,0,0,0.6);
    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(255, 184, 0, 0.15);
    padding-top: 12px;
  }
  .site-header__actions .btn { width: 100%; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero {
  margin-top: 16px;
  background: url(../../wp-content/uploads/2024/01/mainbg.webp) no-repeat center / cover;
  border-radius: 20px;
  overflow: hidden;
}
.hero__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  padding: 70px 40px;
  text-align: center;
  background: radial-gradient(ellipse at center, rgba(13,27,42,0.2) 20%, rgba(13,27,42,0.75) 100%);
}

.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1.1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FFB800;
  text-shadow: 0 2px 32px rgba(0,0,0,0.7);
  margin-bottom: 20px;
  max-width: 900px;
}
.hero__subtitle {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(15px, 1.4vw, 20px);
  font-weight: 600;
  line-height: 1.4;
  color: #fff;
  background: rgba(10, 21, 32, 0.82);
  border: 1px solid rgba(255, 107, 0, 0.5);
  border-radius: 10px;
  padding: 10px 28px;
  backdrop-filter: blur(6px);
}
.hero__btn { margin-top: 36px; }

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

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

@media (max-width: 768px) {
  .hero__inner { min-height: 360px; padding: 48px 20px; }
}
@media (max-width: 480px) {
  .hero__inner { min-height: 280px; padding: 36px 16px; }
}

/* ============================================================
   Info grid
   ============================================================ */
.info-grid {
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.info-grid__col {
  flex: 1 1 0;
  background: #142030;
  border: 2px solid rgba(255,107,0,0.4);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 0 30px rgba(255,107,0,0.06);
  transition: box-shadow 0.2s;
}
.info-grid__col:hover {
  box-shadow: 0 0 50px rgba(255,107,0,0.14);
}
.info-grid__title {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  color: #FFB800;
  margin-bottom: 22px;
  padding-bottom: 14px;
}
.info-grid__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255,184,0,0.6), transparent);
}
.info-grid__list { list-style: none; padding: 0; margin: 0; }
.info-grid__list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 14px;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
}
.info-grid__list li::before {
  content: "◆";
  position: absolute;
  top: 2px; left: 0;
  color: #FFB800;
  font-size: 10px;
}
.info-grid__list--pros li::before { content: "✔"; color: #4CD964; font-size: 12px; }

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

/* ============================================================
   CTA Banner
   ============================================================ */
.cta-banner {
  margin-top: 20px;
  background: linear-gradient(135deg, #1a2a40 0%, #0D1B2A 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(255,107,0,0.2);
  border: 1px solid rgba(255,107,0,0.2);
}
.cta-banner__inner {
  padding: 80px 24px;
  background: url(../../wp-content/uploads/2024/01/banerbadge.webp) no-repeat center / cover;
}
.cta-banner__content {
  max-width: 520px;
  margin: 0 auto;
  background: rgba(10, 21, 32, 0.92);
  border: 1px solid rgba(255,184,0,0.35);
  border-radius: 18px;
  padding: 48px 40px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.cta-banner__label {
  font-family: "Montserrat", sans-serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,184,0,0.75);
  margin-bottom: 8px;
}
.cta-banner__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FFB800;
  margin: 12px 0 18px;
}
.cta-banner__sub {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  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: 28px 20px; }
}

/* ============================================================
   Bonus cards
   ============================================================ */
.bonus-section { margin-top: 20px; }
.bonus-section__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 3vw, 36px);
  text-align: center;
  text-transform: uppercase;
  color: #FFB800;
  margin-bottom: 22px;
  letter-spacing: 0.03em;
}
.bonus-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.bonus-card {
  background: #142030;
  border: 2px solid rgba(255,107,0,0.35);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 44px rgba(255,107,0,0.3);
}
.bonus-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.bonus-card__body {
  background: linear-gradient(180deg, #1e3248 0%, #142030 100%);
  padding: 28px 24px;
  text-align: center;
  flex: 1;
}
.bonus-card__label {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 8px;
}
.bonus-card__title {
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.2;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FFB800;
  margin-bottom: 8px;
}
.bonus-card__sub {
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 22px;
}
.bonus-card__btn { display: inline-block; }

@media (max-width: 900px) {
  .bonus-cards { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .bonus-cards { grid-template-columns: 1fr 1fr; gap: 12px; }
  .bonus-card__img { height: 140px; }
  .bonus-card__body { padding: 18px 14px; }
  .bonus-card__title { font-size: 20px; }
}
@media (max-width: 420px) {
  .bonus-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   #content — SEO text block (hidden visually for users, visible to Google)
   ============================================================ */
.section { margin-top: 20px; }
.section__inner {
  position: relative;
  background: #142030;
  border: 1px solid rgba(255, 184, 0, 0.3);
  border-radius: 20px;
  padding: 40px 40px 24px;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

#content { padding: 40px 56px 24px; }
#content > * + * { margin-top: 20px; }

#content h2 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2.2vw, 32px);
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  color: #FFB800;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,184,0,0.12);
}
#content h2:first-child { border-top: 0; padding-top: 0; margin-top: 0; }

#content h3 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(17px, 1.8vw, 24px);
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
  color: #FFB800;
  margin-top: 28px;
  opacity: 0.88;
}

#content p {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: rgba(255,255,255,0.82);
}

#content ul { margin: 0; padding-left: 26px; }
#content li {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.82);
  margin-bottom: 8px;
}
#content li::marker { color: #FFB800; }

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

/* ============================================================
   FAQ
   ============================================================ */
.faq { margin-top: 20px; }
.faq__inner {
  background: #142030;
  border: 2px solid rgba(255,184,0,0.3);
  border-radius: 20px;
  padding: 28px;
}
.faq__heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: clamp(20px, 2.5vw, 32px);
  text-align: center;
  text-transform: uppercase;
  color: #FFB800;
  margin-bottom: 24px;
}
.faq__list { list-style: none; padding: 0; margin: 0; }
.faq__item {
  background: linear-gradient(135deg, #1e3248 0%, #1a2c40 100%);
  border: 1px solid rgba(255,107,0,0.25);
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s;
}
.faq__item:last-child { margin-bottom: 0; }
.faq__item:hover { border-color: rgba(255,107,0,0.5); }
.faq__question {
  position: relative;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.6vw, 18px);
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: #FFB800;
  padding: 18px 52px 18px 20px;
  margin: 0;
  user-select: none;
}
.faq__question::after {
  content: "+";
  position: absolute;
  top: 50%; right: 18px;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 900;
  color: #FF6B00;
  transition: transform 0.25s;
  line-height: 1;
}
.faq__item.is-open .faq__question::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq__answer {
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  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 18px;
}

/* ============================================================
   Site Footer
   ============================================================ */
.site-footer {
  margin-top: 48px;
  background: #0A1520;
  border-top: 1px solid rgba(255,184,0,0.12);
}
.site-footer__inner {
  text-align: center;
  padding: 48px 0 40px;
}
.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 32px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255,255,255,0.5);
}
/* Footer php block */
.site-footer__text footer { display: inline; }
.site-footer__text footer div { display: inline; }

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

.site-footer__age {
  margin: 0 auto 12px;
  opacity: 0.55;
}
.site-footer__copy {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.02em;
}

/* ============================================================
   Responsive tweaks
   ============================================================ */
@media (max-width: 480px) {
  .site-footer__partners { gap: 10px; }
  .site-footer__partners img { height: 22px; }
  .faq__inner { padding: 18px 14px; }
  .faq__question { padding: 14px 44px 14px 14px; }
}
