/* বেসিক রিসেট */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }
body { background-color: #f4f4f9; color: #333; }

/* ন্যাভিগেশন বার */
header { background: #181818; color: #fff; padding: 15px 5%; display: flex; justify-content: space-between; align-items: center; }
header h2 { margin: 0; font-size: 24px; cursor: pointer; }
header nav a { color: #fff; text-decoration: none; margin-left: 20px; font-weight: 500; transition: 0.3s; }
header nav a:hover { color: #00a8ff; }

/* ভিডিও গ্রিড (হোমপেজ) */
.video-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; padding: 25px 5%; }
.video-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.05); transition: transform 0.2s; }
.video-card:hover { transform: translateY(-5px); }
.video-card img { width: 100%; height: 160px; object-fit: cover; }
.video-info { padding: 15px; }
.video-info h3 { font-size: 16px; margin-bottom: 8px; color: #111; }
.video-info p { color: #777; font-size: 14px; }

/* ভিডিও দেখার পেজ (Watch Page) */
.watch-container { max-width: 1000px; margin: 30px auto; padding: 0 20px; }
.video-player { width: 100%; border-radius: 12px; background: #000; outline: none; }
.video-details { margin-top: 20px; }
.video-details h1 { font-size: 22px; margin-bottom: 10px; }

/* ট্যাগ করা মডেলদের সেকশন */
.model-tags { margin-top: 25px; padding: 20px; background: #fff; border-radius: 10px; border: 1px solid #eaeaea; }
.model-tags h3 { font-size: 16px; margin-bottom: 15px; color: #555; }
.tag { display: inline-flex; align-items: center; background: #e3f2fd; color: #1565c0; padding: 6px 15px; border-radius: 20px; font-size: 14px; margin-right: 10px; margin-bottom: 10px; font-weight: 500; }
.tag i { margin-right: 5px; }