/* GLOBAL VARIABLES */
  :root {
    --bg: #1a0a14;
    --surface: #301828;
    --accent: #ff6b9d;
    --accent2: #4dd0ff;
    --text: #fff0f8;
    --muted: #c295b2;
    --font-display: 'Anton', sans-serif;
    --font-body: 'Barlow', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  }

  /* RESET & BASE */
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body {
    background-color: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
  }
  a { text-decoration: none; color: var(--accent2); transition: var(--transition); }
  a:hover { color: var(--accent); }
  h1, h2, h3, .display-text { font-family: var(--font-display); font-weight: normal; letter-spacing: 1px; text-transform: uppercase; }
  .container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }

  /* BUTTONS (Shared Header/Footer/CTA) */
  .btn {
    display: inline-flex; justify-content: center; align-items: center;
    padding: 10px 20px; font-family: var(--font-display); font-size: 16px;
    border-radius: 4px; text-transform: uppercase; cursor: pointer;
    min-height: 44px; min-width: 44px; transition: var(--transition);
    border: 2px solid transparent; text-decoration: none;
  }
  .btn-primary {
    background-color: var(--accent); color: var(--bg);
    box-shadow: 3px 3px 0 var(--accent2);
  }
  .btn-primary:hover {
    background-color: var(--accent2); box-shadow: 3px 3px 0 var(--accent); transform: translate(-2px, -2px);
  }
  .btn-secondary {
    background-color: transparent; color: var(--accent);
    border-color: var(--accent);
  }
  .btn-secondary:hover {
    background-color: var(--accent); color: var(--bg); box-shadow: 3px 3px 0 var(--accent2);
  }

  /* HEADER (Strict Copy Styles) */
  header { background-color: var(--surface); border-bottom: 2px solid var(--accent); position: sticky; top: 0; z-index: 100; }
  .header-inner { display: flex; justify-content: space-between; align-items: center; height: 70px; }
  .logo-area a { display: flex; align-items: center; }
  .nav-links { display: none; gap: 20px; }
  .nav-links a { color: var(--text); font-weight: 600; font-size: 15px; text-transform: uppercase; }
  .nav-links a:hover { color: var(--accent); }
  .header-ctas { display: none; gap: 10px; }
  .mobile-toggle {
    display: block; background: none; border: none; color: var(--accent);
    font-size: 28px; cursor: pointer; min-height: 44px; min-width: 44px;
  }
  @media (min-width: 1024px) {
    .nav-links { display: flex; }
    .header-ctas { display: flex; }
    .mobile-toggle { display: none; }
  }
  /* Mobile Menu Active State */
  .nav-active {
    display: flex !important; flex-direction: column; position: absolute;
    top: 70px; left: 0; width: 100%; background-color: var(--surface);
    padding: 20px; border-bottom: 2px solid var(--accent); box-shadow: 0 10px 20px rgba(0,0,0,0.5);
  }
  .nav-active.header-ctas { top: auto; bottom: -140px; border-bottom: none; padding-top: 0; flex-direction: row; justify-content: center; }

  /* PAGE SPECIFIC DESIGN: GRAFFITI POP */

  /* Hero Section */
  .hero-banner {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, rgba(48,24,40,0.9) 0%, rgba(26,10,20,0.9) 100%);
    position: relative;
    border-bottom: 4px dashed var(--accent2);
    overflow: hidden;
  }
  .hero-banner::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,107,157,0.1) 0%, transparent 60%);
    z-index: 0; pointer-events: none;
  }
  .hero-content { position: relative; z-index: 1; text-align: center; }

  .breadcrumb {
    font-size: 14px; color: var(--muted); margin-bottom: 20px;
    display: flex; justify-content: center; align-items: center; gap: 8px; flex-wrap: wrap;
  }
  .breadcrumb a { color: var(--accent); font-weight: 600; }
  .breadcrumb span { color: var(--text); }

  .hero-banner h1 {
    font-size: clamp(32px, 5vw, 56px);
    color: var(--text);
    text-shadow: 3px 3px 0 var(--accent), -2px -2px 0 var(--accent2);
    margin-bottom: 25px;
    line-height: 1.1;
  }

  .meta-chips { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
  .chip {
    background-color: var(--surface); border: 2px solid var(--accent2);
    color: var(--accent2); padding: 5px 15px; border-radius: 50px;
    font-weight: 700; font-size: 13px; text-transform: uppercase;
    box-shadow: 0 0 10px rgba(77,208,255,0.3);
  }

  /* Main Content Area */
  .main-content { padding: 50px 0; }

  /* Intro Block */
  .intro-block {
    font-size: 18px; font-weight: 500; color: var(--text);
    padding: 30px; background-color: var(--surface);
    border-left: 8px solid var(--accent);
    border-radius: 0 12px 12px 0;
    margin-bottom: 50px;
    box-shadow: 5px 5px 0 rgba(0,0,0,0.5);
    position: relative;
  }
  .intro-block::after {
    content: '"'; position: absolute; top: -20px; right: 20px;
    font-family: var(--font-display); font-size: 80px;
    color: rgba(255,107,157,0.1); line-height: 1;
  }

  /* Pop Cards for Sections */
  .pop-card {
    background-color: var(--surface);
    border: 3px solid var(--accent);
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 8px 8px 0 var(--accent2);
    transition: transform 0.3s ease;
  }
  .pop-card:nth-child(even) {
    border-color: var(--accent2);
    box-shadow: -8px 8px 0 var(--accent);
  }
  .pop-card:hover { transform: translateY(-5px); }

  .pop-card h2 {
    font-size: 28px; color: var(--accent); margin-bottom: 20px;
    border-bottom: 2px dashed var(--muted); padding-bottom: 10px;
  }
  .pop-card:nth-child(even) h2 { color: var(--accent2); }

  .pop-card p { margin-bottom: 15px; color: var(--text); font-size: 16px; }
  .pop-card p:last-child { margin-bottom: 0; }
  .pop-card a { font-weight: 700; text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 4px; }
  .pop-card a:hover { background-color: var(--accent); color: var(--bg); text-decoration: none; }

  /* Custom List Styling */
  .graffiti-list {
    list-style: none; margin: 20px 0; padding: 20px;
    background-color: rgba(0,0,0,0.2); border-radius: 8px;
    border: 2px solid var(--muted);
  }
  .graffiti-list li {
    position: relative; padding-left: 35px; margin-bottom: 15px;
    font-weight: 500;
  }
  .graffiti-list li:last-child { margin-bottom: 0; }
  .graffiti-list li::before {
    content: '★'; position: absolute; left: 0; top: 0;
    color: var(--accent2); font-size: 20px; line-height: 1.2;
  }

  /* Decorative Divider */
  .candy-divider {
    height: 12px; width: 100%; max-width: 200px; margin: 40px auto;
    background: repeating-linear-gradient(45deg, var(--accent), var(--accent) 10px, var(--accent2) 10px, var(--accent2) 20px);
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(255,107,157,0.5);
  }

  /* FAQ Accordion */
  .faq-container { margin-top: 50px; }
  .faq-title { text-align: center; font-size: 36px; margin-bottom: 30px; color: var(--text); text-shadow: 2px 2px 0 var(--accent); }
  details {
    background-color: var(--surface); border: 2px solid var(--muted);
    border-radius: 8px; margin-bottom: 15px; overflow: hidden;
    transition: var(--transition);
  }
  details[open] { border-color: var(--accent); box-shadow: 4px 4px 0 var(--accent2); }
  summary {
    padding: 20px; font-family: var(--font-display); font-size: 20px;
    cursor: pointer; list-style: none; display: flex; justify-content: space-between;
    align-items: center; color: var(--text); letter-spacing: 0.5px;
  }
  summary::-webkit-details-marker { display: none; }
  summary::after {
    content: '+'; color: var(--accent); font-size: 28px;
    transition: transform 0.3s ease;
  }
  details[open] summary::after { content: '-'; color: var(--accent2); transform: rotate(180deg); }
  details p { padding: 0 20px 20px; color: var(--muted); border-top: 1px solid rgba(255,255,255,0.1); margin-top: 10px; padding-top: 15px; }

  /* Related Pages (Sticker Wall) */
  .sticker-wall {
    margin: 60px 0; padding: 40px 20px;
    background: var(--surface);
    border: 4px solid var(--accent);
    border-radius: 20px;
    position: relative;
    text-align: center;
  }
  .sticker-wall::before {
    content: 'JELAJAH'; position: absolute; top: -25px; left: 50%; transform: translateX(-50%);
    background: var(--bg); padding: 0 20px; font-family: var(--font-display);
    font-size: 28px; color: var(--accent2); letter-spacing: 2px;
  }
  .sticker-grid {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 15px; margin-top: 20px;
  }
  .sticker {
    display: inline-block; padding: 12px 24px; font-family: var(--font-display);
    font-size: 18px; text-transform: uppercase; border-radius: 4px;
    color: var(--bg); text-decoration: none; font-weight: normal;
    box-shadow: 4px 4px 0 rgba(0,0,0,0.8);
    transition: transform 0.2s;
  }
  .sticker:hover { transform: scale(1.05) rotate(0deg) !important; color: var(--bg); }
  .sticker-pink { background-color: var(--accent); transform: rotate(-3deg); }
  .sticker-blue { background-color: var(--accent2); transform: rotate(2deg); }
  .sticker-white { background-color: var(--text); color: var(--bg); transform: rotate(-1deg); }

  /* Mega CTA */
  .mega-cta {
    background: linear-gradient(45deg, var(--accent), var(--accent2));
    border-radius: 16px; padding: 50px 30px; text-align: center;
    margin: 60px auto; max-width: 900px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    color: var(--bg);
  }
  .mega-cta h2 { font-size: clamp(28px, 4vw, 42px); color: var(--bg); margin-bottom: 15px; }
  .mega-cta p { font-size: 18px; font-weight: 600; margin-bottom: 30px; color: var(--bg); }
  .cta-buttons { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
  .btn-large { font-size: 20px; padding: 15px 30px; border-radius: 8px; border: 3px solid var(--bg); }
  .btn-large.btn-primary { background: var(--bg); color: var(--accent); box-shadow: 5px 5px 0 rgba(0,0,0,0.3); }
  .btn-large.btn-primary:hover { background: var(--text); color: var(--bg); box-shadow: none; transform: translateY(2px); }
  .btn-large.btn-secondary { background: transparent; color: var(--bg); box-shadow: 5px 5px 0 rgba(0,0,0,0.3); }
  .btn-large.btn-secondary:hover { background: var(--bg); color: var(--accent2); box-shadow: none; transform: translateY(2px); }

  /* FOOTER (Strict Copy Styles) */
  footer { background-color: var(--bg); border-top: 2px solid var(--surface); padding: 60px 0 20px; margin-top: 40px; }
  .footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
  .footer-brand h2 { color: var(--accent); font-size: 36px; margin-bottom: 15px; text-transform: lowercase; }
  .footer-brand p { color: var(--muted); font-size: 15px; }
  .footer-links-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 30px; }
  .footer-col h3 { color: var(--text); font-size: 18px; margin-bottom: 20px; border-bottom: 1px solid var(--surface); padding-bottom: 10px; }
  .footer-col ul { list-style: none; }
  .footer-col ul li { margin-bottom: 10px; }
  .footer-col ul li a { color: var(--muted); font-size: 15px; }
  .footer-col ul li a:hover { color: var(--accent2); padding-left: 5px; }
  .footer-bottom { text-align: center; padding-top: 20px; border-top: 1px solid var(--surface); color: var(--muted); font-size: 14px; }
  @media (min-width: 768px) { .footer-grid { grid-template-columns: 1fr 2fr; } }

  /* RESPONSIVE BREAKPOINTS */
  @media (max-width: 767px) {
    .pop-card { padding: 20px; }
    .intro-block { padding: 20px; font-size: 16px; }
    .mega-cta { padding: 30px 20px; }
    .cta-buttons { flex-direction: column; width: 100%; }
    .btn-large { width: 100%; }
    .sticker-grid { flex-direction: column; }
    .sticker { width: 100%; transform: none !important; }
  }


/* pipeline image & layout guards */
html, body { overflow-x: clip; }
img { max-width: 100%; height: auto; }
img.site-logo { height: 40px; width: auto; max-width: 240px; object-fit: contain; flex: none; }
header .logo a { display: inline-flex; align-items: center; flex: none; text-decoration: none; }
img.hero-visual { width: 100%; max-width: 560px; height: auto; object-fit: cover; border-radius: 16px; display: block; margin-inline: auto; }
img[class^="strip-"], img[class*=" strip-"] { width: 100%; height: auto; display: block; border-radius: 12px; object-fit: cover; }
/* 合规声明块（zb-disclaimer，全站 footer） */
.zb-disclaimer { margin-top: 18px !important; padding: 14px 0 0 0 !important; border-top: 1px solid rgba(128,128,128,.25) !important; font-size: .72rem !important; line-height: 1.7 !important; opacity: .85 !important; display: block !important; text-align: left !important; width: 100% !important; clear: both !important; }
.zb-disclaimer .zb-18 { display: inline-block !important; padding: 2px 10px !important; border: 1.5px solid currentColor !important; border-radius: 6px !important; font-weight: 800 !important; letter-spacing: 1px !important; margin: 0 0 10px 0 !important; font-size: .78rem !important; }
.zb-disclaimer p { display: block !important; margin: 5px 0 !important; padding: 0 !important; color: inherit !important; font-size: .72rem !important; line-height: 1.7 !important; }
.zb-disclaimer p:last-child { margin-bottom: 0 !important; }
