/* Bowler Racing Landing — scoped styles */
#bowler-landing {
  --navy:#0a1d3a;
  --red:#c51924;
  --blue:#0e2b66;
  --text:#e9eef7;
  --muted:#a9b7d0;
  --bg:#070e1c;
  --card:#0d1b36;
  --max:1150px;
  --radius:14px;
  --shadow:0 10px 30px rgba(0,0,0,.3);
  color: var(--text);
  font-family: -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background:#070e1c;
}

/* Dark page background when landing is present */
body.bowler-landing-active,
.theme-bowler-racing-temp body,
.theme-bowler_racing_temp body,
.theme-bowler-racing body {
  background:#070e1c !important;
}

/* Make theme containers transparent */
body.bowler-landing-active .entry-content,
body.bowler-landing-active .site,
body.bowler-landing-active .site-content,
body.bowler-landing-active .content-area,
body.bowler-landing-active .page,
body.bowler-landing-active .page-content,
body.bowler-landing-active .hentry,
body.bowler-landing-active main,
body.bowler-landing-active .wp-site-blocks,
body.bowler-landing-active .wp-block-group,
body.bowler-landing-active .alignfull,
body.bowler-landing-active .alignwide {
  background: transparent !important;
}

/* utility */
#bowler-landing a { color:#fff; text-decoration:none; border-bottom:1px solid rgba(255,255,255,.25); }
#bowler-landing a:hover { border-color: var(--red); }
#bowler-landing .br-wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
#bowler-landing section { padding: 64px 0; }
#bowler-landing p { margin: 0 0 14px; }
#bowler-landing .br-small { font-size: 14px; }

/* hero full-bleed */
#bowler-landing .br-hero {
  position: relative;
  min-height: 74vh;
  display: grid;
  align-items: end;
  padding: 32px 0 60px;
  background: radial-gradient(80% 60% at 70% 10%, rgba(255,255,255,.08), transparent 60%);
  overflow: clip;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
#bowler-landing .br-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero) center/cover no-repeat;
  filter: saturate(1.05) contrast(1.05);
  transform: translateZ(0);
}
#bowler-landing .br-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,14,28,.25) 0%, rgba(7,14,28,.65) 40%, rgba(7,14,28,.95) 100%);
}
#bowler-landing .br-hero-inner { position: relative; z-index: 1; }
#bowler-landing .br-badge {
  display:inline-grid; grid-auto-flow:column; gap:10px; align-items:center;
  background: rgba(11,28,60,.7);
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  backdrop-filter: blur(4px);
  font-size:14px; letter-spacing:.4px; color: var(--muted);
}
#bowler-landing .br-badge .dot { width:8px; height:8px; border-radius:50%; background: var(--red); box-shadow:0 0 8px rgba(197,25,36,.9); }
#bowler-landing h1 { font-size: clamp(34px, 5vw, 56px); margin: 14px 0 8px; line-height: 1.08; text-shadow: 0 4px 18px rgba(0,0,0,.6); }
#bowler-landing .br-tagline { font-size: clamp(16px, 2.2vw, 20px); color:var(--muted); max-width: 900px; }
#bowler-landing .br-cta-row { display:flex; gap:14px; margin-top:24px; flex-wrap:wrap; }
#bowler-landing .br-btn {
  display:inline-block; padding:12px 18px; border-radius:10px; font-weight:600; letter-spacing:.2px;
  border: 1px solid rgba(255,255,255,.18); box-shadow: 0 10px 30px rgba(0,0,0,.3);
  background: linear-gradient(180deg, #122a55, #0e2245);
}
#bowler-landing .br-btn.accent { background: linear-gradient(180deg, #d62b36, #b0151f); border-color: rgba(255,255,255,.2); }
#bowler-landing .br-btn:hover { transform: translateY(-1px); }
#bowler-landing .br-pill { display:inline-block; padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.06); margin-left:6px; font-size: 14px; }

/* sections & cards */
#bowler-landing .br-card {
  background: linear-gradient(180deg, rgba(13,27,54,.75), rgba(8,18,38,.9));
  border:1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
  padding: 28px;
}
#bowler-landing h2 { font-size: clamp(24px, 3.2vw, 34px); margin: 0 0 10px; }
#bowler-landing .br-accent-bar { height:4px; width:96px; background: linear-gradient(90deg, var(--red), #ff4b57); border-radius: 4px; margin: 10px 0 22px; }
#bowler-landing .br-grid { display: grid; gap: 24px; }
@media (min-width: 880px) { #bowler-landing .br-cols-2 { grid-template-columns: 1.2fr 1fr; } }
#bowler-landing ul.br-pointy { list-style: none; padding: 0; margin: 0; }
#bowler-landing ul.br-pointy li::before { content: "• "; color: #ff8087; font-weight: 900; margin-right: 6px; }

/* footer */
#bowler-landing .br-footer-inner { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:10px; color:#a9b7d0; padding: 36px 20px 70px; }
#bowler-landing .br-logo-word { font-weight:800; letter-spacing:.5px; }
#bowler-landing .br-contact a { border-bottom: 1px dashed rgba(255,255,255,.35); }
