/* =============================================
   BLITZ CASINO PT — SHARED STYLESHEET
   blitz-pt.com | PT Market | Dark Casino Theme
   ============================================= */

/* --- CSS VARIABLES --- */
:root {
  --bg-primary: #0a0a14;
  --bg-card: #13131f;
  --bg-card2: #1a1a2e;
  --accent: #f5c518;
  --accent-hover: #d4a800;
  --accent-dark: #c49000;
  --text-primary: #ffffff;
  --text-secondary: #9da3b4;
  --text-muted: #6b7280;
  --border: #1e1e30;
  --border-light: #252540;
  --success: #22c55e;
  --header-h: 68px;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 4px 24px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 20px rgba(245,197,24,0.25);
  --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.65;
  min-height: 100vh;
  padding-top: var(--header-h);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-hover); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; }

/* --- TYPOGRAPHY --- */
h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 800; line-height: 1.2; }
h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 700; line-height: 1.3; margin: 2.5rem 0 1rem; color: var(--text-primary); position: relative; padding-bottom: .5rem; }
h2::after { content: ''; position: absolute; bottom: 0; left: 0; width: 48px; height: 3px; background: var(--accent); border-radius: 2px; }
h3 { font-size: clamp(1.05rem, 2.5vw, 1.25rem); font-weight: 700; margin: 1.8rem 0 .7rem; color: var(--accent); }
p { margin-bottom: 1rem; color: var(--text-secondary); }
strong { color: var(--text-primary); }

/* --- LAYOUT UTILITIES --- */
.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section { padding: 56px 0; }
.section-sm { padding: 36px 0; }

/* --- HEADER --- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(10,10,20,0.97);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 16px;
}
.header-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.header-logo img { height: 38px; width: auto; }
.header-logo span { font-size: 1.25rem; font-weight: 800; color: var(--accent); letter-spacing: -.5px; }
.header-nav { display: flex; align-items: center; gap: 6px; }
.header-nav a {
  color: var(--text-secondary); font-size: .9rem; font-weight: 500;
  padding: 6px 12px; border-radius: var(--radius-sm); transition: all .2s;
}
.header-nav a:hover, .header-nav a.active { color: var(--accent); background: rgba(245,197,24,0.1); }
.btn-header {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #0a0a14; font-weight: 700; font-size: .88rem;
  padding: 8px 18px; border-radius: 20px;
  transition: transform .15s, box-shadow .15s; white-space: nowrap;
  display: inline-block;
}
.btn-header:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); color: #0a0a14; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all .3s; }
.mobile-nav {
  display: none; flex-direction: column; gap: 4px;
  background: var(--bg-card); border-bottom: 1px solid var(--border);
  padding: 12px 20px; position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 999;
}
.mobile-nav a { color: var(--text-secondary); font-size: 1rem; font-weight: 500; padding: 10px 0; border-bottom: 1px solid var(--border); }
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav.open { display: flex; }

/* --- HERO --- */
.hero {
  position: relative; min-height: calc(100vh - var(--header-h));
  display: flex; align-items: center; overflow: hidden;
  background: var(--bg-primary);
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../img/hero.jpg');
  background-size: cover; background-position: center top;
  opacity: .35;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,10,20,.95) 40%, rgba(10,10,20,.5) 100%),
              linear-gradient(to top, rgba(10,10,20,1) 0%, transparent 40%);
}
.hero-content {
  position: relative; z-index: 1; max-width: 640px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,197,24,0.12); border: 1px solid rgba(245,197,24,0.3);
  color: var(--accent); font-size: .8rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px; margin-bottom: 18px;
}
.hero-badge::before { content: '⚡'; font-size: .9rem; }
.hero-visual-title {
  font-size: clamp(2rem, 5.5vw, 3.4rem); font-weight: 900; line-height: 1.1;
  color: var(--text-primary); margin-bottom: 10px;
}
.hero-visual-title span { color: var(--accent); }
.hero-subtitle { font-size: clamp(1rem, 2.5vw, 1.25rem); color: var(--text-secondary); margin-bottom: 28px; max-width: 520px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #0a0a14; font-weight: 800; font-size: 1rem; letter-spacing: .02em;
  padding: 14px 28px; border-radius: 8px;
  transition: transform .15s, box-shadow .2s;
  box-shadow: 0 4px 20px rgba(245,197,24,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(245,197,24,0.5); color: #0a0a14; }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07); color: var(--text-primary);
  border: 1px solid var(--border-light); font-weight: 600; font-size: 1rem;
  padding: 14px 28px; border-radius: 8px; transition: all .2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); color: var(--text-primary); }

/* Hero bonus ribbon */
.hero-bonus-ribbon {
  display: inline-flex; align-items: center; gap: 16px; flex-wrap: wrap;
  background: rgba(245,197,24,0.08); border: 1px solid rgba(245,197,24,0.2);
  border-radius: var(--radius); padding: 12px 20px; margin-top: 28px;
}
.hero-bonus-ribbon .bonus-item { text-align: center; }
.hero-bonus-ribbon .bonus-item .val { font-size: 1.5rem; font-weight: 900; color: var(--accent); line-height: 1; }
.hero-bonus-ribbon .bonus-item .lbl { font-size: .72rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }
.hero-bonus-ribbon .sep { width: 1px; height: 36px; background: var(--border); }

/* --- TRUST BADGES --- */
.trust-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 18px 0;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap;
}
.trust-badge {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 6px;
  background: rgba(245,197,24,0.06); border: 1px solid rgba(245,197,24,0.15);
}
.trust-badge .icon { font-size: 1.25rem; }
.trust-badge .label { font-size: .82rem; font-weight: 600; color: var(--text-secondary); white-space: nowrap; }
.trust-badge .label strong { color: var(--text-primary); }

/* --- SLOTS GRID --- */
.slots-section { padding: 40px 0 56px; }
.slots-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; flex-wrap: wrap; gap: 12px; }
.slots-header h2 { margin: 0; padding: 0; }
.slots-header h2::after { display: none; }
.slots-header .see-all { font-size: .85rem; color: var(--accent); font-weight: 600; }
.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.slot-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3/4; background: var(--bg-card);
  cursor: pointer; transition: transform .2s, box-shadow .2s;
  border: 1px solid var(--border);
}
.slot-card:hover { transform: translateY(-4px) scale(1.02); box-shadow: 0 12px 32px rgba(0,0,0,0.6); }
.slot-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.slot-card:hover img { transform: scale(1.06); }
.slot-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,20,.9) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 12px;
}
.slot-card-name { font-size: .78rem; font-weight: 700; color: #fff; margin-bottom: 6px; line-height: 1.2; }
.slot-card-provider { font-size: .68rem; color: var(--text-muted); margin-bottom: 8px; }
.slot-card-play {
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #0a0a14; font-weight: 800; font-size: .75rem;
  padding: 6px 14px; border-radius: 5px; width: 100%;
  transition: opacity .15s;
}
.slot-card-play:hover { opacity: .9; color: #0a0a14; }

/* HOT badge */
.slot-hot {
  position: absolute; top: 8px; right: 8px;
  background: #ef4444; color: #fff; font-size: .65rem; font-weight: 800;
  padding: 2px 7px; border-radius: 4px; text-transform: uppercase; letter-spacing: .05em;
}
.slot-new {
  position: absolute; top: 8px; right: 8px;
  background: var(--success); color: #fff; font-size: .65rem; font-weight: 800;
  padding: 2px 7px; border-radius: 4px; text-transform: uppercase; letter-spacing: .05em;
}

/* --- SEO CONTENT AREA --- */
.content-area { padding: 56px 0; }
.content-area .prose { max-width: 100%; }
.content-area p { color: var(--text-secondary); }
.content-area ul {
  list-style: none; margin: .75rem 0 1.25rem; padding: 0;
}
.content-area ul li {
  padding: .45rem 0 .45rem 1.4rem; position: relative;
  color: var(--text-secondary); border-bottom: 1px solid var(--border);
}
.content-area ul li:last-child { border-bottom: none; }
.content-area ul li::before {
  content: '▸'; position: absolute; left: 0; color: var(--accent); font-size: .8rem; top: .5rem;
}
.content-area ul li strong { color: var(--text-primary); }
.content-area ol {
  padding-left: 0; list-style: none; counter-reset: ol-counter;
  margin: 1rem 0 1.5rem;
}
.content-area ol li {
  counter-increment: ol-counter; padding: 14px 14px 14px 56px; position: relative;
  background: var(--bg-card); border-radius: var(--radius-sm);
  margin-bottom: 10px; color: var(--text-secondary);
  border-left: 3px solid var(--accent);
}
.content-area ol li::before {
  content: counter(ol-counter); position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
  width: 28px; height: 28px; background: var(--accent); color: #0a0a14;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: .85rem;
}
.content-area ol li strong { color: var(--text-primary); display: block; margin-bottom: 4px; }

/* Tables */
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1rem 0 1.5rem; border-radius: var(--radius); border: 1px solid var(--border); }
.table-scroll::-webkit-scrollbar { height: 4px; }
.table-scroll::-webkit-scrollbar-track { background: var(--bg-card); }
.table-scroll::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }
.content-area table { width: 100%; border-collapse: collapse; min-width: 480px; }
.content-area table thead { background: rgba(245,197,24,0.12); }
.content-area table th {
  text-align: left; padding: 12px 16px; font-size: .82rem; font-weight: 700;
  color: var(--accent); text-transform: uppercase; letter-spacing: .05em; white-space: nowrap;
}
.content-area table td {
  padding: 11px 16px; font-size: .9rem; color: var(--text-secondary);
  border-top: 1px solid var(--border);
}
.content-area table tbody tr:hover { background: rgba(255,255,255,0.03); }
.content-area table td strong { color: var(--text-primary); }

/* FAQ Accordion */
.faq-list { margin: .5rem 0 1.5rem; }
.faq-list details {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); margin-bottom: 8px; overflow: hidden;
}
.faq-list details[open] { border-color: rgba(245,197,24,0.4); }
.faq-list summary {
  padding: 14px 18px; cursor: pointer; font-weight: 600; font-size: .95rem;
  color: var(--text-primary); list-style: none; display: flex; justify-content: space-between; align-items: center;
  user-select: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; color: var(--accent); font-size: 1.3rem; font-weight: 300; flex-shrink: 0; transition: transform .2s; }
.faq-list details[open] summary::after { content: '−'; }
.faq-list .faq-body { padding: 0 18px 16px; color: var(--text-secondary); font-size: .93rem; line-height: 1.65; }
.faq-list .faq-body strong { color: var(--text-primary); }

/* Highlight cards / callout boxes */
.callout {
  background: linear-gradient(135deg, rgba(245,197,24,0.08), rgba(245,197,24,0.03));
  border: 1px solid rgba(245,197,24,0.25); border-radius: var(--radius);
  padding: 24px 28px; margin: 1.5rem 0;
}
.callout p { margin-bottom: 0; color: var(--text-secondary); }
.callout strong { color: var(--text-primary); }

/* Bonus hero callout */
.bonus-hero-card {
  background: linear-gradient(135deg, #1a1a2e, #0f0f1e);
  border: 1px solid rgba(245,197,24,0.3); border-radius: 14px;
  padding: 36px 32px; text-align: center; margin-bottom: 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.bonus-hero-card .big-val { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 900; color: var(--accent); line-height: 1; }
.bonus-hero-card .big-sub { font-size: 1rem; color: var(--text-muted); margin: 6px 0 20px; }
.bonus-hero-card .btn-primary { font-size: 1.05rem; padding: 15px 32px; }

/* --- CTA BANNER (in content) --- */
.cta-banner {
  background: linear-gradient(135deg, #1a1a2e 0%, #0d0d1a 100%);
  border: 1px solid rgba(245,197,24,0.25); border-radius: var(--radius);
  padding: 32px 28px; text-align: center; margin: 2.5rem 0;
}
.cta-banner h3 { color: var(--text-primary); font-size: 1.3rem; margin: 0 0 8px; }
.cta-banner p { color: var(--text-muted); margin-bottom: 20px; }

/* --- POPUP BOTTOM BANNER --- */
.popup-bottom {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 2000;
  background: linear-gradient(90deg, #0d0d1e, #13131f);
  border-top: 2px solid var(--accent);
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.6);
  transform: translateY(0); transition: transform .3s;
}
.popup-bottom.hidden { transform: translateY(110%); }
.popup-bottom .popup-text { font-size: .9rem; color: var(--text-secondary); }
.popup-bottom .popup-text strong { color: var(--accent); font-size: 1rem; }
.popup-bottom .btn-popup {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #0a0a14; font-weight: 800; font-size: .88rem;
  padding: 10px 22px; border-radius: 6px; white-space: nowrap;
  transition: transform .15s; display: inline-block;
}
.popup-bottom .btn-popup:hover { transform: scale(1.03); color: #0a0a14; }
.popup-close {
  background: none; color: var(--text-muted); font-size: 1.4rem; line-height: 1;
  padding: 4px 8px; border-radius: 4px; transition: color .2s; flex-shrink: 0;
}
.popup-close:hover { color: var(--text-primary); }
body.popup-open { padding-bottom: 68px; }

/* --- FOOTER --- */
.site-footer {
  background: var(--bg-card); border-top: 1px solid var(--border);
  padding: 48px 0 28px;
}
.footer-top {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 36px; margin-bottom: 36px;
}
.footer-brand .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-brand .footer-logo img { height: 34px; width: auto; }
.footer-brand .footer-logo span { font-weight: 800; font-size: 1.15rem; color: var(--accent); }
.footer-brand p { font-size: .84rem; color: var(--text-muted); line-height: 1.6; }
.footer-nav h4 { font-size: .8rem; font-weight: 700; color: var(--text-primary); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 14px; }
.footer-nav ul li { margin-bottom: 8px; }
.footer-nav ul li a { font-size: .87rem; color: var(--text-muted); transition: color .2s; }
.footer-nav ul li a:hover { color: var(--accent); }
.footer-payments h4 { font-size: .8rem; font-weight: 700; color: var(--text-primary); text-transform: uppercase; letter-spacing: .07em; margin-bottom: 14px; }
.payment-icons { display: flex; gap: 8px; flex-wrap: wrap; }
.payment-icon {
  background: rgba(255,255,255,0.07); border: 1px solid var(--border);
  border-radius: 5px; padding: 5px 10px;
  font-size: .75rem; color: var(--text-secondary); font-weight: 600; white-space: nowrap;
}
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; align-items: flex-start; gap: 20px; flex-wrap: wrap; justify-content: space-between;
}
.footer-disclaimer { font-size: .76rem; color: var(--text-muted); line-height: 1.65; max-width: 680px; }
.footer-18 {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent); color: #0a0a14; font-weight: 900; font-size: .85rem;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* --- PAGE HERO (subpages) --- */
.page-hero {
  position: relative; min-height: 320px; display: flex; align-items: center;
  overflow: hidden;
}
.page-hero .hero-bg { opacity: .25; }
.page-hero-content { position: relative; z-index: 1; padding: 48px 0; }
.page-hero-content .hero-badge { margin-bottom: 12px; }
.page-hero-content h1 { margin-bottom: 10px; }
.page-hero-content p { font-size: 1.1rem; margin-bottom: 24px; color: var(--text-secondary); max-width: 580px; }

/* --- FEATURE LIST (checkmarks) --- */
.feature-list { list-style: none !important; margin: 1rem 0 1.5rem !important; }
.feature-list li { padding-left: 0 !important; border-bottom: none !important; }
.feature-list li::before { display: none !important; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 8px 0; color: var(--text-secondary);
}
.feature-list li::first-line { color: green; }

/* Override for ✅ list items */
.content-area .check-list { list-style: none; margin: 1rem 0; }
.content-area .check-list li { display: flex; gap: 10px; padding: 7px 0; color: var(--text-secondary); border-bottom: none; }
.content-area .check-list li::before { display: none; }

/* Tips / warning box */
.tips-box {
  background: rgba(34,197,94,0.07); border-left: 4px solid var(--success);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px; margin: 1.5rem 0;
}
.tips-box h3 { color: var(--success); margin: 0 0 10px; font-size: 1rem; }
.tips-box ul { margin: 0; }
.tips-box ul li { border-bottom: none; }
.tips-box ul li::before { color: var(--success); }

/* Bonus steps */
.how-steps { list-style: none !important; counter-reset: step-counter; margin: 1rem 0 1.5rem !important; }
.how-steps li { counter-increment: step-counter; padding: 16px 16px 16px 60px !important; position: relative; background: var(--bg-card); border-radius: var(--radius-sm); margin-bottom: 10px; border-left: 3px solid rgba(245,197,24,0.5) !important; }
.how-steps li::before { content: counter(step-counter) !important; position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 30px; height: 30px; background: var(--accent); color: #0a0a14; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: .85rem; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-payments { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  body { padding-top: var(--header-h); }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .slots-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-primary, .hero-ctas .btn-secondary { text-align: center; justify-content: center; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .popup-bottom { gap: 10px; padding: 12px 16px; }
  .popup-bottom .popup-text { font-size: .82rem; }
  h2 { font-size: 1.35rem; }
  .section { padding: 40px 0; }
  .bonus-hero-card { padding: 24px 18px; }
  .hero-bonus-ribbon { gap: 10px; padding: 10px 14px; }
  .hero-bonus-ribbon .bonus-item .val { font-size: 1.2rem; }
  .content-area ol li { padding-left: 48px; }
}

@media (max-width: 400px) {
  .slots-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .hero-visual-title { font-size: 1.7rem; }
}
