:root {
  --primary-accent:#8b5cf6; --bg-primary:#141414; --bg-secondary:#181818;
  --text-primary:#fff; --text-secondary:#e5e5e5; --border-subtle:rgba(139,92,246,.2);
}
body {font-family:Inter,system-ui; background:var(--bg-primary); color:var(--text-primary);}
.loading-screen{position:fixed;inset:0;display:flex;flex-direction:column;align-items:center;justify-content:center;background:#0f0f1e;z-index:9999;}
.navbar{position:fixed;top:0;width:100%;display:flex;justify-content:space-between;align-items:center;padding:16px 4%;background:rgba(20,20,20,.8);z-index:1000;}
.row-container{padding:32px 4%;}
.row{display:flex;gap:8px;overflow-x:auto;}
.movie-card{position:relative;min-width:180px;height:270px;cursor:pointer;border-radius:6px;overflow:hidden;transition:.3s;box-shadow:0 2px 8px rgba(0,0,0,.6);}
.movie-card img{width:100%;height:100%;object-fit:cover;}
.movie-card:hover{transform:scale(1.05);}
.footer-links{display:flex;justify-content:center;gap:32px;margin:24px 0;}
.footer-links a{color:#999;text-decoration:none;}
.footer-links a:hover{color:#fff;}