/* Pin Up Casino Canada - Premium Dark Glassmorphism Landing 2026 */
:root {
  --bg-deep: #070b14;
  --bg-card: rgba(16, 24, 40, 0.65);
  --glass: rgba(255, 255, 255, 0.04);
  --glass-border: rgba(255, 255, 255, 0.08);
  --gold: #e8c547;
  --gold-dim: #b8942f;
  --cyan: #00e5ff;
  --cyan-dim: #00b8d4;
  --text: #eef3fb;
  --text-muted: #8b9bb4;
  --success: #00c853;
  --danger: #ff5252;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.55);
  --header-h: 78px;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}

*, *::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-deep);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Background ambient */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(0, 229, 255, 0.07), transparent),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(232, 197, 71, 0.05), transparent);
  pointer-events: none;
  z-index: -1;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container {
  width: min(1180px, 92%);
  margin-inline: auto;
}

/* ========== HEADER ========== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(7, 11, 20, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--glass-border);
  transition: background 0.3s, box-shadow 0.3s;
}
.site-header.scrolled {
  background: rgba(7, 11, 20, 0.92);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.logo img {
  height: 42px;
  width: auto;
  object-fit: contain;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-desktop a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
  position: relative;
}
.nav-desktop a:hover,
.nav-desktop a.active { color: var(--gold); }
.nav-desktop a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.25s;
}
.nav-desktop a:hover::after { width: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dim));
  color: #0a0e17;
  box-shadow: 0 8px 24px rgba(232, 197, 71, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232, 197, 71, 0.4);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--glass-border);
}
.btn-outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.btn-ghost {
  background: var(--glass);
  color: var(--text);
  border: 1px solid var(--glass-border);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  transition: 0.3s;
}

/* Mobile nav */
.mobile-nav {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: rgba(7, 11, 20, 0.97);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  border-bottom: 1px solid var(--glass-border);
  z-index: 999;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-weight: 500;
}
.mobile-nav a:hover { background: var(--glass); color: var(--gold); }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 3rem) 0 4rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, 
    rgba(7,11,20,0.92) 0%, 
    rgba(7,11,20,0.75) 45%, 
    rgba(7,11,20,0.4) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(0, 229, 255, 0.12);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--cyan);
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}
.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.hero h1 span { color: var(--gold); }
.hero-lead {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 540px;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.stat-item {
  text-align: left;
}
.stat-num {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

/* ========== SECTIONS ========== */
section {
  padding: 5.5rem 0;
  position: relative;
}
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1.08rem;
  max-width: 620px;
  margin-bottom: 2.5rem;
}

/* Glass card */
.glass {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Trust strip */
.trust-strip {
  padding: 2.5rem 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  background: rgba(0,0,0,0.25);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  text-align: center;
}
.trust-item {
  padding: 0.5rem;
}
.trust-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.trust-item span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Bonus highlight */
.bonus-section {
  background: linear-gradient(180deg, transparent, rgba(232,197,71,0.03), transparent);
}
.bonus-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.bonus-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.bonus-visual img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.bonus-badge {
  position: absolute;
  top: 1.2rem; left: 1.2rem;
  background: linear-gradient(135deg, var(--gold), #c9a227);
  color: #0a0e17;
  font-weight: 800;
  font-size: 0.85rem;
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
}
.bonus-features {
  display: grid;
  gap: 1rem;
  margin: 1.75rem 0;
}
.bonus-feat {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem;
  background: var(--glass);
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
}
.bonus-feat svg, .bonus-feat .icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  color: var(--gold);
}
.bonus-feat h4 {
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.bonus-feat p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* How it works steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}
.step-card {
  padding: 1.75rem;
  position: relative;
  transition: transform 0.25s;
}
.step-card:hover { transform: translateY(-4px); }
.step-num {
  width: 42px; height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-dim));
  color: #041018;
  font-weight: 800;
  border-radius: 12px;
  margin-bottom: 1.1rem;
  font-size: 1.1rem;
}
.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
.step-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Two column content */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

.visual-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--glass-border);
}
.visual-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

/* Tables */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  background: var(--bg-card);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
th, td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--glass-border);
}
th {
  background: rgba(0,0,0,0.25);
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
}
tr:last-child td { border-bottom: none; }
tr:hover td { background: rgba(255,255,255,0.02); }

/* Pros cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.pc-card {
  padding: 1.75rem;
}
.pc-card h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  font-size: 1.2rem;
}
.pc-card.pros h3 { color: var(--success); }
.pc-card.cons h3 { color: var(--danger); }
.pc-card ul {
  display: grid;
  gap: 0.75rem;
}
.pc-card li {
  position: relative;
  padding-left: 1.4rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.pc-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.45em;
  width: 8px; height: 8px;
  border-radius: 50%;
}
.pc-card.pros li::before { background: var(--success); }
.pc-card.cons li::before { background: var(--danger); }

/* Evaluation scores */
.scores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}
.score-card {
  padding: 1.25rem;
  text-align: center;
}
.score-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.score-label {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.35rem;
}
.score-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  margin-top: 0.75rem;
  overflow: hidden;
}
.score-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--cyan));
  border-radius: 2px;
}

/* Who suits */
.suit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.suit-card {
  padding: 1.75rem;
}
.suit-card h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
  color: var(--gold);
}
.suit-card ul {
  display: grid;
  gap: 0.6rem;
}
.suit-card li {
  font-size: 0.93rem;
  color: var(--text-muted);
  padding-left: 1.2rem;
  position: relative;
}
.suit-card li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--cyan);
}

/* FAQ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}
.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.active { border-color: rgba(232, 197, 71, 0.35); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 1.2rem 1.4rem;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: inherit;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  transition: transform 0.3s;
  color: var(--cyan);
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.active .faq-a {
  max-height: 500px;
}
.faq-a-inner {
  padding: 0 1.4rem 1.3rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Final CTA */
.final-cta {
  text-align: center;
  padding: 5rem 0;
}
.final-cta .glass {
  padding: 3.5rem 2rem;
  position: relative;
  overflow: hidden;
}
.final-cta .glass::before {
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(circle, rgba(232,197,71,0.12), transparent 70%);
  pointer-events: none;
}
.final-cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 1rem;
}
.final-cta p {
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2rem;
}

/* Footer */
.site-footer {
  padding: 3.5rem 0 2rem;
  border-top: 1px solid var(--glass-border);
  background: rgba(0,0,0,0.3);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand img {
  height: 38px;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.55rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--cyan); }
.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Floating CTA */
.float-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.35s;
}
.float-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.float-cta .btn {
  box-shadow: 0 12px 40px rgba(232, 197, 71, 0.4);
  padding: 1rem 1.5rem;
}

/* Cookie notice */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: rgba(10, 14, 23, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--glass-border);
  padding: 1rem 1.5rem;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-bar.show { display: flex; }
.cookie-bar p {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 560px;
}
.cookie-bar .btn { padding: 0.6rem 1.2rem; font-size: 0.85rem; }

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Content blocks for full text */
.content-block {
  margin-bottom: 2.5rem;
}
.content-block h3 {
  font-size: 1.35rem;
  margin-bottom: 0.9rem;
  color: var(--gold);
}
.content-block p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}
.content-block ul, .content-block ol {
  margin: 1rem 0 1.25rem 1.25rem;
  color: var(--text-muted);
}
.content-block li {
  margin-bottom: 0.45rem;
  padding-left: 0.4rem;
}
.content-block ol { list-style: decimal; }
.content-block ul { list-style: disc; }

/* Responsive */
@media (max-width: 960px) {
  .nav-desktop, .header-cta { display: none; }
  .burger { display: flex; }
  .bonus-layout,
  .split,
  .pros-cons,
  .suit-grid,
  .footer-top {
    grid-template-columns: 1fr;
  }
  .split.reverse { direction: ltr; }
  .hero { min-height: auto; padding-top: calc(var(--header-h) + 2rem); }
  .hero-stats { gap: 1.25rem; }
}

@media (max-width: 600px) {
  :root { --header-h: 68px; }
  .hero h1 { font-size: 2.1rem; }
  .section-title { font-size: 1.7rem; }
  .btn { padding: 0.75rem 1.3rem; font-size: 0.9rem; }
  .float-cta { bottom: 1rem; right: 1rem; }
  .float-cta .btn { padding: 0.85rem 1.2rem; font-size: 0.88rem; }
  th, td { padding: 0.75rem; font-size: 0.85rem; }
}