/* Powbet IT site-1 | prefix: pwb- | font: Barlow / Barlow Condensed */
/* Mobile-first: 320 → 768 → 1024 → 1440 */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: #0F1220;
  color: #FFFFFF;
  line-height: 1.65;
  min-width: 320px;
  padding-bottom: 52px; /* promo bar height */
}

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

a { color: inherit; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.pwb-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ============================================================
   HEADER (already critical-inlined, extend here)
   ============================================================ */
.pwb-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: #1A1E3A;
  border-bottom: 2px solid #F5C800;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 16px;
}

.pwb-logo img { height: 36px; width: auto; }

.pwb-nav {
  display: none;
  list-style: none;
  gap: 20px;
  margin-left: 24px;
}

.pwb-nav a {
  color: #B0B8CC;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.pwb-nav a:hover { color: #F5C800; }

.pwb-cta-head {
  margin-left: auto;
  background: #F5C800;
  color: #0F1220;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.2s;
}

.pwb-cta-head:hover { background: #FFD700; }

.pwb-burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  flex-shrink: 0;
}

.pwb-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #F5C800;
  transition: all 0.3s;
}

.pwb-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.pwb-burger.open span:nth-child(2) { opacity: 0; }
.pwb-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.pwb-mobile-menu {
  display: none;
  position: fixed;
  top: 60px; left: 0; right: 0;
  background: #1A1E3A;
  z-index: 899;
  padding: 20px 24px;
  border-bottom: 2px solid #F5C800;
}

.pwb-mobile-menu.open { display: block; }

.pwb-mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pwb-mobile-menu a {
  color: #B0B8CC;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.pwb-mobile-menu a:hover { color: #F5C800; }

/* ============================================================
   PROMO BAR
   ============================================================ */
.pwb-promo-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 800;
  background: #F5C800;
  color: #0F1220;
  text-align: center;
  padding: 10px 16px;
  font-weight: 700;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.pwb-promo-bar a {
  color: #0F1220;
  font-weight: 700;
  text-decoration: underline;
}

.pwb-promo-close {
  background: none;
  border: 1px solid #0F1220;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ============================================================
   SECTIONS
   ============================================================ */
main { padding-top: 60px; }

.pwb-section {
  padding: 56px 0;
}

.pwb-section-alt {
  background: #131729;
}

.pwb-section-intro {
  color: #B0B8CC;
  margin-bottom: 32px;
  font-size: 16px;
  max-width: 800px;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.pwb-h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(28px, 6vw, 52px);
  font-weight: 700;
  color: #F5C800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.pwb-h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 700;
  color: #F5C800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.pwb-h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(18px, 3vw, 26px);
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 16px;
  margin-top: 40px;
}

p { margin-bottom: 16px; color: #D0D8E8; }

/* ============================================================
   BUTTONS
   ============================================================ */
.pwb-btn {
  display: inline-block;
  background: #F5C800;
  color: #0F1220;
  font-weight: 700;
  font-family: 'Barlow', sans-serif;
  padding: 12px 28px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 16px;
  transition: background 0.2s, transform 0.1s;
  border: none;
  cursor: pointer;
  margin-top: 8px;
}

.pwb-btn:hover {
  background: #FFD700;
  transform: translateY(-1px);
}

/* ============================================================
   HERO
   ============================================================ */
.pwb-hero {
  background: linear-gradient(135deg, #0F1220 0%, #1A1E3A 60%, #0F1220 100%);
  padding: 60px 0 40px;
}

.pwb-hero-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 40px;
}

.pwb-hero-lead {
  color: #B0B8CC;
  font-size: 16px;
  margin-bottom: 28px;
  max-width: 600px;
}

.pwb-hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pwb-hero-badge {
  background: rgba(30, 144, 255, 0.15);
  border: 1px solid #1E90FF;
  color: #1E90FF;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
}

.pwb-hero-img img {
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(245, 200, 0, 0.15);
  width: 100%;
}

/* ============================================================
   TOC
   ============================================================ */
.pwb-toc {
  background: #1A1E3A;
  border-left: 4px solid #F5C800;
  border-radius: 0 8px 8px 0;
  padding: 24px 28px;
}

.pwb-toc-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #F5C800;
  margin-bottom: 12px;
}

.pwb-toc-list {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pwb-toc-list a {
  color: #B0B8CC;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.pwb-toc-list a:hover { color: #F5C800; }

/* ============================================================
   SPLIT LAYOUT
   ============================================================ */
.pwb-split-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: flex-start;
}

.pwb-split-text { flex: 1; }

.pwb-split-img {
  flex: 1;
  width: 100%;
}

.pwb-split-img img {
  border-radius: 8px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  width: 100%;
}

/* ============================================================
   SPORT ICONS
   ============================================================ */
.pwb-sport-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pwb-sport-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #1A1E3A;
  border: 1px solid rgba(245, 200, 0, 0.3);
  border-radius: 20px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: #D0D8E8;
  transition: border-color 0.2s, background 0.2s;
}

.pwb-sport-chip:hover {
  border-color: #F5C800;
  background: rgba(245, 200, 0, 0.08);
}

/* ============================================================
   STEPS
   ============================================================ */
.pwb-steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
  counter-reset: none;
}

.pwb-step-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #1A1E3A;
  border-radius: 8px;
  padding: 20px;
  border-left: 4px solid #F5C800;
}

.pwb-step-num {
  background: #F5C800;
  color: #0F1220;
  font-weight: 700;
  font-size: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: 'Barlow Condensed', sans-serif;
}

.pwb-step-body strong {
  display: block;
  color: #FFFFFF;
  font-size: 16px;
  margin-bottom: 6px;
}

.pwb-step-body p {
  color: #B0B8CC;
  font-size: 14px;
  margin: 0;
}

/* ============================================================
   CATEGORY GRID
   ============================================================ */
.pwb-cat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.pwb-cat-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #1A1E3A;
  border: 1px solid rgba(245, 200, 0, 0.2);
  transition: border-color 0.2s, transform 0.2s;
}

.pwb-cat-card:hover {
  border-color: #F5C800;
  transform: translateY(-2px);
}

.pwb-cat-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.pwb-cat-label {
  padding: 12px 16px;
  font-weight: 600;
  font-size: 16px;
  color: #F5C800;
  font-family: 'Barlow Condensed', sans-serif;
}

/* ============================================================
   SLOTS GRID
   ============================================================ */
.pwb-slots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.pwb-slot-tile {
  background: #1A1E3A;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(245, 200, 0, 0.15);
  transition: border-color 0.2s, transform 0.2s;
}

.pwb-slot-tile:hover {
  border-color: #F5C800;
  transform: scale(1.02);
}

.pwb-slot-tile img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.pwb-slot-tile span {
  display: block;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 600;
  color: #D0D8E8;
}

/* ============================================================
   LIVE GRID
   ============================================================ */
.pwb-live-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0;
}

.pwb-live-cell {
  background: #1A1E3A;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(30, 144, 255, 0.2);
  transition: border-color 0.2s;
}

.pwb-live-cell:hover { border-color: #1E90FF; }

.pwb-live-cell img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.pwb-live-cell span {
  display: block;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 14px;
  color: #1E90FF;
  font-family: 'Barlow Condensed', sans-serif;
}

/* ============================================================
   TABLE GAMES GRID
   ============================================================ */
.pwb-table-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 20px 0;
}

.pwb-table-cell {
  background: #1A1E3A;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(245, 200, 0, 0.15);
  transition: border-color 0.2s;
}

.pwb-table-cell:hover { border-color: #F5C800; }

.pwb-table-cell img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.pwb-table-cell span {
  display: block;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 14px;
  color: #F5C800;
  font-family: 'Barlow Condensed', sans-serif;
}

/* ============================================================
   SUBSECTIONS
   ============================================================ */
.pwb-subsection {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(245, 200, 0, 0.1);
}

/* ============================================================
   PAYMENT ICONS BLOCK
   ============================================================ */
.pwb-pay-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 40px;
}

.pwb-pay-icons img {
  height: 36px;
  max-width: 80px;
  background: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  object-fit: contain;
}

/* ============================================================
   TABLES
   ============================================================ */
.pwb-table-wrapper {
  overflow-x: auto;
  margin: 20px 0;
  border-radius: 8px;
}

.pwb-data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #1A1E3A;
}

.pwb-data-table thead tr {
  background: #F5C800;
  color: #0F1220;
}

.pwb-data-table th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
}

.pwb-data-table td {
  padding: 11px 16px;
  color: #D0D8E8;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pwb-data-table tbody tr:hover { background: rgba(245, 200, 0, 0.05); }
.pwb-data-table tbody tr:last-child td { border-bottom: none; }

/* ============================================================
   BONUS GRID
   ============================================================ */
.pwb-bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 24px 0;
}

.pwb-bonus-card {
  background: #1A1E3A;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(245, 200, 0, 0.2);
  transition: border-color 0.2s, transform 0.2s;
}

.pwb-bonus-card:hover {
  border-color: #F5C800;
  transform: translateY(-2px);
}

.pwb-bonus-card img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.pwb-bonus-info {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pwb-bonus-info strong { color: #FFFFFF; font-size: 15px; }

.pwb-bonus-info span {
  color: #F5C800;
  font-weight: 700;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
}

/* No Deposit / Free Spins */
.pwb-nodeposit-wrap,
.pwb-freespins-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin: 20px 0;
  background: #1A1E3A;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(30, 144, 255, 0.2);
}

.pwb-nodeposit-wrap img,
.pwb-freespins-wrap img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.pwb-nodeposit-text,
.pwb-freespins-text {
  padding: 20px 24px;
}

.pwb-nodeposit-text strong,
.pwb-freespins-text strong {
  display: block;
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 8px;
}

.pwb-nodeposit-text p,
.pwb-freespins-text p {
  color: #B0B8CC;
  margin-bottom: 16px;
}

/* ============================================================
   APP GRID
   ============================================================ */
.pwb-app-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 32px 0;
}

.pwb-app-feature {
  background: #1A1E3A;
  border-radius: 8px;
  padding: 24px;
  border: 1px solid rgba(245, 200, 0, 0.15);
  transition: border-color 0.2s;
}

.pwb-app-feature:hover { border-color: #F5C800; }

.pwb-app-icon {
  display: block;
  margin-bottom: 14px;
}

.pwb-app-feature strong {
  display: block;
  color: #FFFFFF;
  font-size: 17px;
  margin-bottom: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
}

.pwb-app-feature p {
  color: #B0B8CC;
  font-size: 14px;
  margin: 0;
}

/* ============================================================
   AUTHOR
   ============================================================ */
.pwb-author-section { background: #1A1E3A; }

.pwb-author-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #0F1220;
  border-radius: 8px;
  padding: 24px;
  border: 1px solid rgba(245, 200, 0, 0.2);
}

.pwb-author-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #F5C800;
}

.pwb-author-name {
  display: block;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 2px;
}

.pwb-author-title {
  display: block;
  color: #F5C800;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 10px;
}

.pwb-author-bio p {
  color: #B0B8CC;
  font-size: 14px;
  margin: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.pwb-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(245, 200, 0, 0.15);
  border-radius: 8px;
  overflow: hidden;
}

.pwb-faq-item { border-bottom: 1px solid rgba(245, 200, 0, 0.1); }
.pwb-faq-item:last-child { border-bottom: none; }

.pwb-faq-btn {
  width: 100%;
  text-align: left;
  background: #1A1E3A;
  color: #FFFFFF;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 18px 20px;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background 0.2s;
}

.pwb-faq-btn::after {
  content: '+';
  font-size: 20px;
  font-weight: 400;
  color: #F5C800;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.pwb-faq-btn[aria-expanded="true"] { background: #131729; }
.pwb-faq-btn[aria-expanded="true"]::after { transform: rotate(45deg); }
.pwb-faq-btn:hover { background: #131729; }

.pwb-faq-answer {
  background: #131729;
  padding: 0 20px 18px;
}

.pwb-faq-answer p {
  color: #B0B8CC;
  font-size: 14px;
  margin: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.pwb-footer {
  background: #0A0C18;
  padding: 48px 0 32px;
  border-top: 2px solid rgba(245, 200, 0, 0.2);
}

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

.pwb-footer-brand img { margin-bottom: 12px; }

.pwb-footer-brand p {
  color: #6B7A99;
  font-size: 13px;
  margin: 0;
}

.pwb-footer-links h4,
.pwb-footer-info h4 {
  color: #F5C800;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  margin-bottom: 12px;
}

.pwb-footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pwb-footer-links a {
  color: #6B7A99;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.pwb-footer-links a:hover { color: #F5C800; }

.pwb-footer-info p {
  color: #6B7A99;
  font-size: 13px;
  margin-bottom: 8px;
}

.pwb-footer-info a {
  color: #1E90FF;
  text-decoration: underline;
}

.pwb-footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 20px;
  text-align: center;
}

.pwb-footer-legal p {
  color: #4B5A78;
  font-size: 12px;
  margin-bottom: 4px;
}

.pwb-footer-legal a { color: #4B5A78; text-decoration: underline; }

/* ============================================================
   BREAKPOINT: 768px
   ============================================================ */
@media (min-width: 768px) {
  .pwb-container { padding: 0 24px; }

  .pwb-nav { display: flex; }
  .pwb-burger { display: none; }
  .pwb-cta-head { margin-left: 0; }

  .pwb-hero-grid {
    flex-direction: row;
    align-items: center;
  }

  .pwb-hero-text { flex: 1; }
  .pwb-hero-img { flex: 1; }

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

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

  .pwb-live-grid { grid-template-columns: repeat(4, 1fr); }

  .pwb-table-grid { grid-template-columns: repeat(4, 1fr); }

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

  .pwb-nodeposit-wrap,
  .pwb-freespins-wrap {
    flex-direction: row;
  }

  .pwb-nodeposit-wrap img,
  .pwb-freespins-wrap img {
    width: 300px;
    aspect-ratio: auto;
    flex-shrink: 0;
  }

  .pwb-split-layout {
    flex-direction: row;
    align-items: center;
  }

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

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

  .pwb-toc-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   BREAKPOINT: 1024px
   ============================================================ */
@media (min-width: 1024px) {
  .pwb-container { padding: 0 32px; }

  .pwb-section { padding: 72px 0; }

  .pwb-slots-grid { grid-template-columns: repeat(4, 1fr); }

  .pwb-app-grid { grid-template-columns: repeat(4, 1fr); }

  .pwb-hero { padding: 80px 0 56px; }
}

/* ============================================================
   BREAKPOINT: 1440px
   ============================================================ */
@media (min-width: 1440px) {
  .pwb-section { padding: 88px 0; }

  .pwb-slots-grid { grid-template-columns: repeat(6, 1fr); }

  .pwb-hero-grid { gap: 60px; }
}
