:root {
    --brand-pink: #e1306c;
    --brand-purple: #c13584;
    --brand-orange: #f56040;
    --brand-yellow: #ffdc80;
    
    --bg-dark: #0a0a0a;
    --bg-card: #ffffff;
    --text-dark: #111111;
    --text-muted: #666666;
    
    --poster-bg: linear-gradient(135deg, var(--brand-purple), var(--brand-pink), var(--brand-orange));
    
    --font-heading: 'Impact', -apple-system, sans-serif;
    --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background-color: var(--bg-dark); color: #fff; font-family: var(--font-body); line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: 0.2s; }
ul { list-style: none; }

/* Navigation */
.nav { background: #000; padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; border-bottom: 2px solid #333; position: sticky; top: 0; z-index: 100; }
.nav-brand { font-family: var(--font-heading); font-size: 28px; letter-spacing: 2px; text-transform: uppercase; color: #fff; }
.nav-links { display: flex; gap: 30px; }
.nav-links a { font-size: 14px; font-weight: 700; color: #aaa; text-transform: uppercase; letter-spacing: 1px; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-btn { background: #fff; color: #000 !important; padding: 8px 24px; font-weight: 800; text-transform: uppercase; border-radius: 4px; }
.nav-btn:hover { background: var(--brand-yellow); }

/* Poster Hero */
.hero-wrapper { padding: 40px 5%; background: var(--poster-bg); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; min-height: 80vh; }
.poster-container { display: flex; max-width: 1200px; width: 100%; background: var(--bg-card); color: var(--text-dark); box-shadow: 0 30px 60px rgba(0,0,0,0.5); border-radius: 12px; overflow: hidden; position: relative; z-index: 2; }
.poster-content { flex: 1; padding: 60px; display: flex; flex-direction: column; justify-content: center; }
.poster-qr-side { width: 320px; background: #f0f0f0; border-left: 2px dashed #ccc; padding: 40px; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }

.hero-tag { display: inline-block; background: #000; color: #fff; padding: 6px 12px; font-weight: 800; font-size: 14px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.poster-content h1 { font-family: var(--font-heading); font-size: 64px; line-height: 1; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; }
.poster-content p { font-size: 18px; color: var(--text-muted); font-weight: 500; margin-bottom: 40px; max-width: 500px; }
.btn-group { display: flex; gap: 16px; }
.btn { padding: 16px 32px; font-weight: 800; font-size: 16px; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: 0.2s; border: none; text-align: center; }
.btn-primary { background: #000; color: #fff; }
.btn-primary:hover { background: var(--brand-pink); color: #fff; transform: translateY(-2px); }
.btn-secondary { background: transparent; color: #000; border: 2px solid #000; }
.btn-secondary:hover { background: #000; color: #fff; }

/* QR Box Styling */
.qr-box-mock { width: 200px; height: 200px; background: #fff; border: 10px solid #000; position: relative; margin-bottom: 24px; display: flex; align-items: center; justify-content: center; padding: 15px; }
.qr-inner { width: 100%; height: 100%; background: repeating-linear-gradient(45deg, #000, #000 10px, #fff 10px, #fff 20px); opacity: 0.8; }
.qr-corner { position: absolute; width: 30px; height: 30px; border: 4px solid var(--brand-pink); }
.qr-tl { top: -14px; left: -14px; border-right: none; border-bottom: none; }
.qr-tr { top: -14px; right: -14px; border-left: none; border-bottom: none; }
.qr-bl { bottom: -14px; left: -14px; border-right: none; border-top: none; }
.qr-br { bottom: -14px; right: -14px; border-left: none; border-top: none; }
.poster-qr-side h3 { font-family: var(--font-heading); font-size: 28px; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 1px; }
.poster-qr-side p { font-size: 14px; font-weight: 700; color: var(--text-muted); }

/* Stats */
.stats { display: flex; justify-content: center; gap: 40px; padding: 60px 20px; background: #111; flex-wrap: wrap; }
.stat-box { text-align: center; background: #1a1a1a; padding: 30px; border-left: 4px solid var(--brand-pink); min-width: 220px; }
.stat-box h3 { font-family: var(--font-heading); font-size: 48px; color: #fff; margin-bottom: 5px; }
.stat-box p { font-size: 14px; font-weight: 700; color: #888; text-transform: uppercase; letter-spacing: 1px; }

/* Main Content Container */
.container { max-width: 1200px; margin: 0 auto; padding: 80px 20px; }
.section-title { font-family: var(--font-heading); font-size: 40px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 40px; text-align: center; color: #fff; }
.section-title span { display: block; font-size: 14px; color: var(--brand-pink); letter-spacing: 4px; margin-bottom: 10px; }

/* About */
.about-panel { background: #111; padding: 60px; border: 1px solid #333; margin-bottom: 80px; text-align: center; }
.about-panel p { font-size: 18px; color: #bbb; line-height: 1.8; margin-bottom: 20px; }

/* Features Grid */
.feat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; margin-bottom: 80px; }
.feat-card { background: #fff; color: var(--text-dark); padding: 40px 30px; border-bottom: 6px solid var(--brand-orange); transition: 0.3s; }
.feat-card:hover { transform: translateY(-5px); }
.feat-title { font-family: var(--font-heading); font-size: 24px; text-transform: uppercase; margin-bottom: 15px; display: flex; align-items: center; justify-content: space-between; }
.feat-card p { font-size: 15px; color: var(--text-muted); font-weight: 500; }

/* Guide & Image Display */
.img-poster { border: 10px solid #fff; margin-bottom: 80px; box-shadow: 0 20px 40px rgba(0,0,0,0.8); background: #fff; }
.img-poster img { width: 100%; display: block; }
.guide-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-bottom: 80px; }
.guide-step { background: #1a1a1a; padding: 30px; position: relative; border-top: 2px solid var(--brand-pink); }
.guide-num { font-family: var(--font-heading); font-size: 60px; color: #333; position: absolute; top: 10px; right: 20px; line-height: 1; }
.guide-step h3 { font-family: var(--font-heading); font-size: 20px; color: #fff; margin-bottom: 10px; position: relative; z-index: 2; text-transform: uppercase; }
.guide-step p { color: #888; font-size: 14px; position: relative; z-index: 2; font-weight: 500; }

/* FAQ */
.faq-wrap { max-width: 900px; margin: 0 auto 80px; }
.faq-box { background: #fff; color: #000; margin-bottom: 16px; padding: 24px; border-left: 8px solid var(--brand-purple); }
.faq-q { font-family: var(--font-heading); font-size: 20px; text-transform: uppercase; margin-bottom: 12px; }
.faq-a { font-size: 15px; color: var(--text-muted); font-weight: 500; }

/* Footer */
.footer { background: #000; border-top: 1px solid #333; padding: 60px 20px; text-align: center; }
.footer-brand { font-family: var(--font-heading); font-size: 32px; color: #fff; text-transform: uppercase; margin-bottom: 30px; }
.footer-links { display: flex; justify-content: center; gap: 30px; margin-bottom: 30px; flex-wrap: wrap; }
.footer-links a { color: #888; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 14px; }
.footer-links a:hover { color: #fff; }
.footer-copy { color: #555; font-size: 12px; font-weight: 700; }

@media (max-width: 900px) {
    .poster-container { flex-direction: column; }
    .poster-qr-side { width: 100%; border-left: none; border-top: 2px dashed #ccc; padding: 30px; }
    .nav-links { display: none; }
    .poster-content { padding: 40px 20px; text-align: center; }
    .poster-content h1 { font-size: 48px; }
    .btn-group { justify-content: center; }
}