/* Ерөнхий тохиргоо */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; }
body { background-color: #141414; color: white; overflow-x: hidden; }

/* Navbar хэсэг */
.navbar { position: fixed; top: 0; width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 0 4%; height: 68px; background: linear-gradient(to bottom, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%); z-index: 100; transition: background-color 0.4s; }
.nav-left, .nav-right { display: flex; align-items: center; gap: 20px; }
.logo { color: #E50914; font-size: 30px; font-weight: bold; cursor: pointer; margin-right: 20px;}
.nav-links { list-style: none; display: flex; gap: 20px; }
.nav-links a { color: #e5e5e5; text-decoration: none; font-size: 14px; transition: color 0.4s; }
.nav-links a:hover, .nav-links a.active { color: white; font-weight: bold; }
.nav-right i { font-size: 20px; cursor: pointer; color: white; }
.nav-profile { width: 32px; height: 32px; border-radius: 4px; cursor: pointer; }
.notification { position: relative; cursor: pointer;}
.badge { position: absolute; top: -5px; right: -8px; background: #E50914; color: white; font-size: 10px; padding: 2px 5px; border-radius: 50%; font-weight: bold;}

/* Гол зураг болон гарчиг хэсэг */
.hero { position: relative; height: 85vh; 
    /* Ар талын гол cover зураг */
    background-image: url('https://images.unsplash.com/photo-1618331835717-801e976710b2?q=80&w=2070&auto=format&fit=crop'); 
    background-size: cover; background-position: center; display: flex; flex-direction: column; justify-content: flex-end; padding: 0 4% 15% 4%; }
.hero-fade-bottom { position: absolute; bottom: 0; left: 0; width: 100%; height: 150px; background: linear-gradient(to top, #141414 0%, transparent 100%); }
.hero-content { z-index: 10; max-width: 50%; }
.n-series { color: #E50914; font-size: 16px; letter-spacing: 5px; margin-bottom: 5px; text-shadow: 2px 2px 4px rgba(0,0,0,0.45); }
.hero-title { font-size: 80px; font-weight: 900; margin-bottom: 20px; text-shadow: 2px 2px 4px rgba(0,0,0,0.45); line-height: 1; }
.hero-buttons { display: flex; gap: 15px; margin-bottom: 20px; }
.play-btn, .info-btn { padding: 12px 28px; font-size: 18px; font-weight: bold; border-radius: 4px; border: none; cursor: pointer; display: flex; align-items: center; gap: 10px; transition: 0.2s; }
.play-btn { background-color: white; color: black; }
.play-btn:hover { background-color: rgba(255,255,255,0.7); }
.info-btn { background-color: rgba(109, 109, 110, 0.7); color: white; }
.info-btn:hover { background-color: rgba(109, 109, 110, 0.4); }

/* Баруун талын 10+ болон дуу хаах товч */
.hero-right { position: absolute; right: 0; bottom: 25%; display: flex; align-items: center; gap: 15px; z-index: 10; }
.mute-btn { background: transparent; border: 1px solid white; color: white; width: 40px; height: 40px; border-radius: 50%; font-size: 16px; cursor: pointer; display: flex; justify-content: center; align-items: center; }
.age-rating { background: rgba(51,51,51,0.8); border-left: 3px solid #dcdcdc; padding: 8px 50px 8px 15px; font-size: 18px; font-weight: bold; }
.hero-subtitle { position: absolute; bottom: 10%; left: 50%; transform: translateX(-50%); z-index: 10; font-size: 24px; font-weight: bold; text-shadow: 2px 2px 4px rgba(0,0,0,0.8); }

/* Киноны эгнээ (Slider) */
.sliders-container { margin-top: -5%; z-index: 20; position: relative; padding-bottom: 50px;}
.row-title { font-size: 20px; margin: 0 4% 10px 4%; font-weight: 500; }
.row { display: flex; overflow-x: auto; gap: 10px; padding: 0 4% 40px 4%; scroll-behavior: smooth; }
.row::-webkit-scrollbar { display: none; /* Доод талын scroll устгах */ }
.movie-card { min-width: 280px; height: 160px; position: relative; cursor: pointer; transition: transform 0.3s; border-radius: 4px; overflow: hidden; }
.movie-card:hover { transform: scale(1.05); z-index: 30; }
.movie-card img { width: 100%; height: 100%; object-fit: cover; }
.badge-new { position: absolute; bottom: 5px; left: 50%; transform: translateX(-50%); background: #E50914; color: white; font-size: 11px; font-weight: bold; padding: 2px 6px; border-radius: 2px; }