* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: #0d0d14; color: #e8e8e8; font-family: Arial, Helvetica, sans-serif; font-size: 16px; line-height: 1.7; }
a { color: #e50914; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; }

nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; background: #0d0d14; border-bottom: 1px solid #222; padding: 0 24px; height: 56px; display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 20px; font-weight: bold; color: #e50914; letter-spacing: 1px; }
.nav-links { display: flex; gap: 20px; list-style: none; }
.nav-links a { color: #999; font-size: 13px; }
.nav-links a:hover { color: #e8e8e8; text-decoration: none; }

.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 80px 24px 60px; position: relative; overflow: hidden; }
.hero-grid { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(8,1fr); grid-template-rows: repeat(6,1fr); gap: 3px; opacity: 0.08; }
.hero-grid div { background: #333; border-radius: 2px; }
.hero-overlay { position: absolute; inset: 0; background: rgba(13,13,20,0.88); }
.hero-content { position: relative; z-index: 1; max-width: 700px; text-align: center; }
.hero-tag { display: inline-block; background: #e50914; color: #fff; font-size: 11px; font-weight: bold; letter-spacing: 2px; text-transform: uppercase; padding: 4px 12px; margin-bottom: 18px; }
.hero h1 { font-size: clamp(32px,5vw,64px); font-weight: bold; color: #fff; line-height: 1.1; margin-bottom: 18px; }
.hero h1 em { color: #e50914; font-style: normal; }
.hero-lead { font-size: 16px; color: #aaa; max-width: 500px; margin: 0 auto 28px; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn-red { display: inline-block; background: #e50914; color: #fff; font-size: 15px; font-weight: bold; padding: 13px 28px; border-radius: 3px; }
.btn-red:hover { background: #c0070f; color: #fff; text-decoration: none; }
.btn-outline { display: inline-block; background: transparent; color: #e8e8e8; font-size: 15px; font-weight: bold; padding: 12px 28px; border: 1px solid #444; border-radius: 3px; }
.btn-outline:hover { border-color: #888; color: #fff; text-decoration: none; }

.wrap { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 56px 24px; max-width: 1160px; margin: 0 auto; }

.sec-head { display: flex; align-items: baseline; justify-content: space-between; border-bottom: 1px solid #222; padding-bottom: 12px; margin-bottom: 24px; }
.sec-head h2 { font-size: 22px; font-weight: bold; color: #fff; }
.sec-head h2 em { color: #e50914; font-style: normal; }

.grid-films { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px,1fr)); gap: 10px; }
.film-card { display: block; background: #161620; border: 1px solid #222; border-radius: 3px; overflow: hidden; transition: border-color 0.2s; }
.film-card:hover { border-color: #e50914; text-decoration: none; }
.film-card-icon { height: 80px; background: #1e1e2a; display: flex; align-items: center; justify-content: center; font-size: 26px; }
.film-card-body { padding: 8px 10px; }
.film-card-name { font-size: 12px; color: #e8e8e8; line-height: 1.4; margin-bottom: 3px; }
.film-card-sub { font-size: 11px; color: #666; }

.sub-hero { padding: 88px 24px 48px; background: #111118; border-bottom: 1px solid #1e1e2a; }
.sub-hero-in { max-width: 820px; }
.breadcrumb { font-size: 12px; color: #666; margin-bottom: 14px; }
.breadcrumb a { color: #e50914; }
.breadcrumb span { margin: 0 5px; color: #444; }
.sub-hero h1 { font-size: clamp(24px,3.5vw,46px); font-weight: bold; color: #fff; line-height: 1.15; margin-bottom: 12px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.tag { font-size: 11px; padding: 3px 10px; border: 1px solid #2a2a3a; color: #888; text-transform: uppercase; letter-spacing: 0.5px; }
.tag-red { border-color: rgba(229,9,20,0.35); color: #ff6b6b; }
.sub-hero p { font-size: 15px; color: #999; max-width: 580px; margin-bottom: 24px; line-height: 1.75; }

.content-wrap { max-width: 1160px; margin: 0 auto; padding: 48px 24px; }
.content-grid { display: grid; grid-template-columns: 1fr 320px; gap: 32px; align-items: start; }
.main-col h2 { font-size: 19px; font-weight: bold; color: #fff; margin: 28px 0 12px; padding-bottom: 8px; border-bottom: 1px solid #1e1e2a; }
.main-col h2:first-child { margin-top: 0; }
.main-col p { font-size: 15px; color: #aaa; line-height: 1.8; margin-bottom: 14px; }
.main-col ul { list-style: none; margin-bottom: 16px; }
.main-col ul li { font-size: 14px; color: #aaa; padding: 6px 0 6px 16px; border-bottom: 1px solid #1a1a24; position: relative; }
.main-col ul li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 5px; height: 5px; background: #e50914; border-radius: 50%; }
.faq-item { margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid #1e1e2a; }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-size: 14px; font-weight: bold; color: #e8e8e8; margin-bottom: 5px; }
.faq-a { font-size: 14px; color: #999; line-height: 1.6; }

.side-card { background: #161620; border: 1px solid #222; border-radius: 3px; padding: 20px; margin-bottom: 18px; position: sticky; top: 72px; }
.side-card h3 { font-size: 14px; font-weight: bold; color: #fff; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid #222; }
.side-icon { font-size: 36px; text-align: center; margin-bottom: 12px; }
.side-desc { font-size: 13px; color: #888; margin-bottom: 16px; line-height: 1.6; }
.btn-cta { display: block; background: #e50914; color: #fff; font-size: 15px; font-weight: bold; padding: 14px; text-align: center; border-radius: 3px; margin-bottom: 8px; }
.btn-cta:hover { background: #c0070f; color: #fff; text-decoration: none; }
.cta-note { font-size: 11px; color: #555; text-align: center; }
.details-row { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid #1e1e2a; font-size: 13px; }
.details-row:last-child { border-bottom: none; }
.details-row span:first-child { color: #666; }
.details-row span:last-child { color: #e8e8e8; }
.ok { color: #4caf50 !important; }

.all-pages { background: #111118; border-top: 1px solid #1e1e2a; padding: 48px 24px; }
.all-pages-in { max-width: 1160px; margin: 0 auto; }
.all-pages-in h2 { font-size: 20px; font-weight: bold; color: #fff; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid #222; }
.all-pages-in h2 em { color: #e50914; font-style: normal; }
.pages-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px,1fr)); gap: 0; list-style: none; }
.pages-list li a { display: block; font-size: 13px; color: #666; padding: 6px 4px; border-bottom: 1px solid #1a1a24; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pages-list li a:hover { color: #e50914; text-decoration: none; }

footer { background: #0a0a10; border-top: 1px solid #1a1a24; padding: 28px 24px; text-align: center; }
.foot-links { display: flex; justify-content: center; gap: 18px; margin-bottom: 10px; flex-wrap: wrap; }
.foot-links a { font-size: 12px; color: #555; text-transform: uppercase; letter-spacing: 0.5px; }
.foot-links a:hover { color: #999; text-decoration: none; }
footer p { font-size: 12px; color: #444; }

@media(max-width:768px){
  nav { padding: 0 16px; }
  .nav-links { display: none; }
  .content-grid { grid-template-columns: 1fr; }
  .side-card { position: static; }
  .section, .content-wrap, .sub-hero { padding-left: 16px; padding-right: 16px; }
  .grid-films { grid-template-columns: repeat(auto-fill,minmax(120px,1fr)); }
}