*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --black:#0A0A0A; --surface:#141414; --card:#1C1C1C; --border:#2A2A2A;
  --yellow:#FFD700; --red:#C4281C; --white:#F5F5F5; --muted:#888;
  --font-display:'Barlow Condensed',sans-serif; --font-body:'Inter',sans-serif;
}
body { background:var(--black); color:var(--white); font-family:var(--font-body); font-size:16px; line-height:1.6; -webkit-font-smoothing:antialiased; }
.site-header { border-bottom:1px solid var(--border); padding:14px 0; position:sticky; top:0; z-index:100; background:rgba(10,10,10,0.95); backdrop-filter:blur(8px); }
.site-header .inner { max-width:1100px; margin:0 auto; padding:0 20px; display:flex; align-items:center; justify-content:space-between; }
.logo { font-family:var(--font-display); font-size:22px; font-weight:900; letter-spacing:-0.5px; text-decoration:none; color:var(--white); }
.logo span { color:var(--yellow); }
.header-nav { display:flex; gap:24px; }
.header-nav a { color:var(--muted); text-decoration:none; font-size:13px; font-weight:500; transition:color .2s; }
.header-nav a:hover { color:var(--white); }
.breadcrumb { max-width:1100px; margin:0 auto; padding:14px 20px; font-size:12px; color:var(--muted); display:flex; gap:6px; align-items:center; flex-wrap:wrap; }
.breadcrumb a { color:var(--muted); text-decoration:none; }
.breadcrumb a:hover { color:var(--yellow); }
.breadcrumb span { color:var(--border); }
.hero { max-width:1100px; margin:0 auto; padding:20px 20px 40px; display:grid; grid-template-columns:1fr 360px; gap:48px; align-items:start; }
.home-hero, .cat-hero { max-width:1100px; margin:0 auto; padding:48px 20px 24px; }
.hero-eyebrow { font-family:var(--font-display); font-size:13px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--yellow); margin-bottom:10px; display:flex; align-items:center; gap:8px; }
.hero-eyebrow::before { content:''; display:block; width:28px; height:2px; background:var(--yellow); }
.hero-title { font-family:var(--font-display); font-size:clamp(34px,5vw,54px); font-weight:900; line-height:1.02; text-transform:uppercase; letter-spacing:-1px; margin-bottom:16px; }
.hero-title .set-number { font-size:0.5em; color:var(--muted); font-weight:600; display:block; letter-spacing:1px; margin-bottom:4px; }
.hero-meta { display:flex; flex-wrap:wrap; gap:10px; margin-bottom:24px; }
.tag { display:inline-flex; align-items:center; gap:5px; background:var(--card); border:1px solid var(--border); border-radius:4px; padding:5px 10px; font-size:12px; font-weight:600; color:var(--muted); text-transform:uppercase; letter-spacing:0.5px; }
.tag.theme { border-color:var(--red); color:#ff6b60; }
.hero-intro, .hero-intro-2 { font-size:17px; line-height:1.7; color:#CCC; max-width:620px; margin-bottom:12px; }
.affiliate-card { background:var(--card); border:1px solid var(--border); border-radius:12px; overflow:hidden; position:sticky; top:80px; }
.affiliate-card-img { width:100%; aspect-ratio:4/3; background:linear-gradient(135deg,#1a1a1a 0%,#2a1a00 50%,#1a1a1a 100%); display:flex; align-items:center; justify-content:center; border-bottom:1px solid var(--border); position:relative; overflow:hidden; }
.affiliate-card-img::after { content:''; position:absolute; inset:0; background:radial-gradient(ellipse at center,rgba(255,215,0,0.08) 0%,transparent 70%); }
.merchant-badge { position:absolute; top:10px; left:10px; background:var(--yellow); color:#000; font-family:var(--font-display); font-weight:900; font-size:10px; letter-spacing:1px; padding:3px 8px; border-radius:3px; z-index:2; }
.frame-illustration { width:180px; height:130px; border:3px solid rgba(255,215,0,0.6); border-radius:4px; display:flex; align-items:center; justify-content:center; position:relative; box-shadow:0 0 30px rgba(255,215,0,0.15), inset 0 0 20px rgba(0,0,0,0.5); }
.frame-illustration::before { content:attr(data-label); font-family:var(--font-display); font-size:9px; font-weight:700; letter-spacing:1px; color:rgba(255,215,0,0.5); position:absolute; bottom:8px; max-width:160px; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.frame-glyph { font-size:48px; opacity:0.9; margin-bottom:12px; }
.affiliate-card-body { padding:20px; }
.product-name { font-family:var(--font-display); font-size:18px; font-weight:800; text-transform:uppercase; letter-spacing:0.5px; margin-bottom:4px; }
.product-brand { font-size:12px; color:var(--muted); margin-bottom:14px; }
.product-price { font-family:var(--font-display); font-size:28px; font-weight:900; color:var(--yellow); line-height:1; margin-bottom:14px; }
.product-price .from { font-size:14px; font-weight:600; color:var(--muted); }
.cta-btn { display:block; width:100%; background:var(--yellow); color:#000; font-family:var(--font-display); font-size:17px; font-weight:900; text-transform:uppercase; letter-spacing:1px; text-decoration:none; text-align:center; padding:14px 20px; border-radius:6px; transition:transform .15s, box-shadow .15s; border:none; cursor:pointer; }
.cta-btn:hover { transform:translateY(-1px); box-shadow:0 6px 24px rgba(255,215,0,0.3); }
.cta-sub { text-align:center; font-size:12px; color:var(--muted); margin-top:10px; }
.cta-sub a { color:var(--muted); text-decoration:underline; }
.content-wrap { max-width:1100px; margin:0 auto; padding:0 20px 60px; display:grid; grid-template-columns:1fr 360px; gap:48px; }
.cat-grid-wrap { max-width:1100px; margin:0 auto; padding:12px 20px 60px; }
.section { margin-bottom:48px; }
.section-label { font-family:var(--font-display); font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:3px; color:var(--yellow); margin-bottom:16px; display:flex; align-items:center; gap:10px; }
.section-label::after { content:''; flex:1; height:1px; background:var(--border); }
.section h2 { font-family:var(--font-display); font-size:28px; font-weight:800; text-transform:uppercase; letter-spacing:-0.5px; margin-bottom:16px; line-height:1.1; }
.section p { color:#BBB; line-height:1.75; margin-bottom:14px; }
.specs-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(140px,1fr)); gap:2px; background:var(--border); border-radius:8px; overflow:hidden; margin-bottom:24px; }
.spec-cell { background:var(--card); padding:16px; display:flex; flex-direction:column; gap:4px; }
.spec-label { font-size:11px; color:var(--muted); text-transform:uppercase; letter-spacing:0.5px; }
.spec-value { font-family:var(--font-display); font-size:22px; font-weight:800; color:var(--white); line-height:1; }
.spec-value-sm { font-size:16px; }
.problem-cards { display:grid; grid-template-columns:repeat(2,1fr); gap:12px; margin-bottom:24px; }
.problem-card { background:var(--card); border:1px solid var(--border); border-radius:8px; padding:18px; }
.problem-icon { font-size:24px; margin-bottom:8px; }
.problem-card h3 { font-family:var(--font-display); font-size:16px; font-weight:800; text-transform:uppercase; letter-spacing:0.5px; margin-bottom:6px; color:var(--white); }
.problem-card p { font-size:13px; color:var(--muted); line-height:1.5; }
.recommendation-box { background:linear-gradient(135deg,rgba(255,215,0,0.06) 0%,rgba(255,215,0,0.02) 100%); border:1px solid rgba(255,215,0,0.25); border-radius:12px; padding:28px; margin-bottom:28px; }
.rec-title { font-family:var(--font-display); font-size:22px; font-weight:900; text-transform:uppercase; margin-bottom:14px; }
.rec-title em { color:var(--yellow); font-style:normal; }
.feature-list { list-style:none; margin-bottom:20px; }
.feature-list li { display:flex; align-items:flex-start; gap:10px; padding:8px 0; border-bottom:1px solid var(--border); font-size:14px; color:#CCC; }
.feature-list li:last-child { border:none; }
.feature-list li::before { content:'✓'; color:var(--yellow); font-weight:700; flex-shrink:0; margin-top:1px; }
.inline-cta { display:inline-flex; align-items:center; gap:8px; background:var(--yellow); color:#000; font-family:var(--font-display); font-size:16px; font-weight:900; text-transform:uppercase; letter-spacing:1px; text-decoration:none; padding:13px 24px; border-radius:6px; transition:transform .15s, box-shadow .15s; }
.inline-cta:hover { transform:translateY(-1px); box-shadow:0 6px 24px rgba(255,215,0,0.3); }
.inline-cta::after { content:'→'; font-size:18px; }
.aff-inline { color:var(--yellow); text-decoration:underline; text-underline-offset:3px; }
.faq-list { display:flex; flex-direction:column; gap:6px; }
.faq-item { background:var(--card); border:1px solid var(--border); border-radius:6px; overflow:hidden; }
.faq-item summary { padding:16px 20px; cursor:pointer; font-family:var(--font-display); font-size:17px; font-weight:700; letter-spacing:0.3px; list-style:none; }
.faq-item summary::-webkit-details-marker { display:none; }
.faq-item summary::after { content:'+'; float:right; color:var(--muted); }
.faq-item[open] summary::after { content:'−'; color:var(--yellow); }
.faq-item summary:hover { background:rgba(255,215,0,0.04); }
.faq-a { padding:0 20px 16px; font-size:14px; color:#AAA; line-height:1.7; }
.related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; }
.related-card { background:var(--card); border:1px solid var(--border); border-radius:8px; padding:16px; text-decoration:none; transition:border-color .2s, transform .15s; display:block; }
.related-card:hover { border-color:var(--yellow); transform:translateY(-2px); }
.related-set-num { font-size:11px; color:var(--yellow); font-weight:600; text-transform:uppercase; letter-spacing:1px; margin-bottom:4px; }
.related-set-name { font-family:var(--font-display); font-size:16px; font-weight:800; text-transform:uppercase; color:var(--white); line-height:1.1; margin-bottom:8px; }
.related-pieces { font-size:12px; color:var(--muted); }
.watermark { font-size:12px; color:var(--muted); margin-top:6px; }
.trust-page { max-width:760px; margin:0 auto; padding:24px 20px 60px; }
.trust-page h1 { margin-bottom:24px; }
.trust-page h2 { font-family:var(--font-display); font-size:24px; font-weight:800; text-transform:uppercase; margin:28px 0 12px; }
.trust-page p, .trust-page li { color:#BBB; line-height:1.75; margin-bottom:14px; }
.trust-page ul { padding-left:20px; }
.trust-page a { color:var(--yellow); }
.contact-form { display:flex; flex-direction:column; gap:14px; max-width:520px; }
.contact-form input, .contact-form textarea { background:var(--card); border:1px solid var(--border); border-radius:6px; padding:12px 14px; color:var(--white); font-family:var(--font-body); font-size:15px; }
.contact-form button { align-self:flex-start; }
.site-footer { border-top:1px solid var(--border); padding:32px 20px; font-size:13px; color:var(--muted); text-align:center; line-height:1.8; }
.site-footer a { color:var(--muted); text-decoration:underline; }
.site-footer h3 { font-family:var(--font-display); font-size:13px; font-weight:800; text-transform:uppercase; letter-spacing:1px; color:#AAA; margin-bottom:6px; }
.footer-cols { max-width:900px; margin:0 auto 16px; display:grid; grid-template-columns:2fr 1fr; gap:24px; text-align:left; }
.affiliate-disclosure-footer { max-width:700px; margin:0 auto 20px; font-size:12px; }
.lego-disclaimer { max-width:700px; margin:0 auto 10px; font-size:12px; }
#cookie-banner { position:fixed; bottom:0; left:0; right:0; background:var(--card); border-top:1px solid var(--border); padding:14px 20px; display:flex; gap:16px; align-items:center; justify-content:center; flex-wrap:wrap; z-index:200; font-size:13px; }
#cookie-banner[hidden] { display:none; }
#cookie-banner a { color:var(--yellow); }
.cookie-actions { display:flex; gap:8px; }
#cookie-banner button { font-family:var(--font-display); font-weight:800; text-transform:uppercase; letter-spacing:0.5px; border-radius:5px; padding:8px 16px; cursor:pointer; border:1px solid var(--border); }
#cookie-accept { background:var(--yellow); color:#000; border-color:var(--yellow); }
#cookie-decline { background:transparent; color:var(--muted); }
.err-404 { max-width:760px; margin:0 auto; padding:80px 20px; text-align:center; }
@media (max-width:768px) {
  .hero, .content-wrap { grid-template-columns:1fr; }
  .affiliate-card { position:static; }
  .aside-col { display:none; }
  .specs-grid { grid-template-columns:repeat(2,1fr); }
  .problem-cards { grid-template-columns:1fr; }
  .related-grid { grid-template-columns:repeat(2,1fr); }
  .header-nav { display:none; }
  .footer-cols { grid-template-columns:1fr; }
}
