:root{--background:#000;--foreground:#fff;--accent:#fc0;--accent-contrast:#000}*{box-sizing:border-box;padding:0;margin:0}body,html{max-width:100vw;overflow-x:hidden;background:var(--background);color:var(--foreground);font-family:-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica,Arial,sans-serif}main{display:flex;flex-direction:column;justify-content:center;align-items:center;min-height:100vh;padding:2rem;text-align:center}.container{max-width:800px;width:100%}h1{font-size:clamp(2rem,8vw,4rem);font-weight:800;color:var(--accent);margin-bottom:1rem;text-transform:uppercase;letter-spacing:-.02em}p{font-size:clamp(1rem,3vw,1.25rem);color:var(--foreground);opacity:.9;max-width:600px;margin:0 auto 2rem;line-height:1.6}.image-container{position:relative;width:100%;max-width:500px;margin:0 auto;aspect-ratio:1/1;border:4px solid var(--accent);border-radius:20px;overflow:hidden;background:#111;box-shadow:0 20px 50px rgba(255,204,0,.1)}.image-container img{width:100%;height:100%;object-fit:cover}.badge{display:inline-block;background:var(--accent);color:var(--accent-contrast);padding:.5rem 1rem;font-weight:700;border-radius:4px;margin-bottom:1.5rem;font-size:.875rem;text-transform:uppercase}.progress-bar{width:100%;height:8px;background:#222;border-radius:4px;margin-top:3rem;overflow:hidden;position:relative}.progress-fill{position:absolute;top:0;left:0;height:100%;width:60%;background:var(--accent);animation:shine 2s linear infinite}@keyframes shine{0%{opacity:.7}50%{opacity:1}to{opacity:.7}}