/* ============================================
   lorno.blog - Dark Minimalist Video Platform
   Theme: Dark, sleek, content-first
   Font: Fredoka (Google Fonts)
   Icons: FontAwesome 6
   ============================================ */

/* ---- Reset & Base ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Fredoka', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: #999999;
  background: #0d0d0d;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button {
  font-family: 'Fredoka', sans-serif;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: 'Fredoka', sans-serif;
}

/* ---- Variables ---- */
:root {
  --bg: #0d0d0d;
  --surface: #1a1a1a;
  --surface-hover: #242424;
  --text-primary: #f5f5f5;
  --text-secondary: #999999;
  --text-muted: #666666;
  --accent: #e04a6a;
  --accent-hover: #ff6b8a;
  --border: rgba(255, 255, 255, 0.06);
  --success: #4ade80;
  --warning: #fbbf24;
  --header-height: 56px;
  --content-max: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-pill: 100px;
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.header-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Fredoka', sans-serif;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.logo-lg { font-size: 20px; }
.logo-sm { font-size: 16px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
  transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-actions button {
  color: var(--text-secondary);
  font-size: 16px;
  transition: color 0.25s ease;
  background: none;
  border: none;
  cursor: pointer;
}

.header-actions button:hover {
  color: var(--text-primary);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-secondary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: var(--surface);
  padding: 24px;
  z-index: 999;
  border-bottom: 1px solid var(--border);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu a {
  font-weight: 500;
  font-size: 18px;
  color: var(--text-secondary);
  transition: color 0.25s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--text-primary);
}

/* ---- Main Content ---- */
.main {
  padding-top: var(--header-height);
}

.container {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Page Title ---- */
.page-title {
  font-weight: 600;
  font-size: 28px;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  margin-top: 24px;
}

.page-subtitle {
  font-weight: 400;
  font-size: 15px;
  color: var(--text-secondary);
  margin-top: 6px;
}

/* ---- Filter Bar ---- */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.filter-pill {
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 13px;
  padding: 6px 20px;
  border-radius: var(--radius-pill);
  background: var(--surface);
  color: var(--text-secondary);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-pill:hover {
  color: var(--text-primary);
  background: var(--surface-hover);
}

.filter-pill.active {
  background: var(--accent);
  color: var(--text-primary);
}

/* ---- Video Card ---- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.video-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.video-thumb-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.video-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-card:hover .video-thumb-wrap img {
  transform: scale(1.03);
}

.duration-badge {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: var(--text-primary);
  font-weight: 500;
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 4px;
  font-family: 'Fredoka', sans-serif;
}

.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-card:hover .play-overlay {
  opacity: 1;
}

.play-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  font-size: 18px;
}

.video-info {
  padding: 12px 14px 14px;
}

.video-title {
  font-weight: 500;
  font-size: 14px;
  color: var(--text-primary);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.video-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 8px;
}

.video-meta span {
  font-weight: 400;
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.video-meta i {
  font-size: 12px;
}

/* ---- Category Card ---- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.category-card {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.category-card:hover {
  transform: scale(1.02);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
}

.category-card .cat-name {
  font-weight: 600;
  font-size: 20px;
  color: var(--text-primary);
}

.category-card .cat-count {
  font-weight: 400;
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ---- Actor Card ---- */
.actor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.actor-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.actor-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.actor-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.actor-card .actor-info {
  padding: 10px 12px 12px;
}

.actor-card .actor-name {
  font-weight: 500;
  font-size: 14px;
  color: var(--text-primary);
}

.actor-card .actor-count {
  font-weight: 400;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ---- Pagination ---- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 40px;
  margin-bottom: 40px;
}

.pagination button {
  font-family: 'Fredoka', sans-serif;
  font-weight: 500;
  font-size: 13px;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text-secondary);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.pagination button:hover {
  color: var(--text-primary);
  background: var(--surface-hover);
}

.pagination button.active {
  background: var(--accent);
  color: var(--text-primary);
}

/* ---- Video Player Page ---- */
.video-player-section {
  margin-top: 24px;
}

.video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: var(--radius);
  overflow: hidden;
}

.video-player video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Ad Banners */
.ad-banner-desktop {
  width: 728px;
  height: 90px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  margin: 16px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-weight: 400;
  font-size: 12px;
  border: 1px solid var(--border);
}

.ad-banner-mobile {
  display: none;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 1 / 1;
  background: var(--surface);
  border-radius: var(--radius-sm);
  margin: 16px auto 0;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-weight: 400;
  font-size: 12px;
  border: 1px solid var(--border);
}

/* Video Details */
.video-details {
  margin-top: 24px;
}

.video-details-title {
  font-weight: 600;
  font-size: 22px;
  color: var(--text-primary);
}

.video-details-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.video-details-meta .meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 400;
  font-size: 13px;
  color: var(--text-secondary);
  cursor: default;
}

.video-details-meta .meta-item i {
  font-size: 13px;
  color: var(--text-muted);
}

.video-details-meta .meta-item.clickable {
  cursor: pointer;
  transition: color 0.25s ease;
}

.video-details-meta .meta-item.clickable:hover {
  color: var(--text-primary);
}

.video-details-meta .meta-item.liked {
  color: var(--accent);
}

.video-details-meta .meta-item.liked i {
  color: var(--accent);
}

.video-description {
  margin-top: 16px;
  font-weight: 400;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.video-description .show-more {
  font-weight: 500;
  font-size: 13px;
  color: var(--accent);
  cursor: pointer;
  margin-left: 4px;
  transition: color 0.25s ease;
}

.video-description .show-more:hover {
  color: var(--accent-hover);
}

/* Tags */
.tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  background: var(--surface);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font-weight: 500;
  font-size: 12px;
  color: var(--text-secondary);
  transition: all 0.25s ease;
  cursor: pointer;
}

.tag:hover {
  color: var(--text-primary);
  background: var(--surface-hover);
}

/* Section Blocks */
.section-block {
  margin-top: 28px;
}

.section-title {
  font-weight: 600;
  font-size: 16px;
  color: var(--text-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title i {
  font-size: 15px;
  color: var(--text-muted);
}

/* Actors Row */
.actors-row {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.actor-mini {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  transition: transform 0.25s ease;
}

.actor-mini:hover {
  transform: scale(1.05);
}

.actor-mini img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.actor-mini .mini-name {
  font-weight: 500;
  font-size: 12px;
  color: var(--text-secondary);
  margin-top: 6px;
  max-width: 60px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Comments */
.comments-section {
  margin-top: 40px;
}

.comments-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.comment-count {
  background: var(--surface);
  border-radius: var(--radius-pill);
  padding: 2px 10px;
  font-weight: 500;
  font-size: 12px;
  color: var(--text-secondary);
}

.comment-form {
  margin-top: 16px;
}

.comment-form textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-weight: 400;
  font-size: 14px;
  color: var(--text-primary);
  resize: vertical;
  min-height: 80px;
  outline: none;
  transition: border-color 0.25s ease;
}

.comment-form textarea::placeholder {
  color: var(--text-muted);
}

.comment-form textarea:focus {
  border-color: var(--accent);
}

.comment-form button {
  margin-top: 10px;
  float: right;
  background: var(--accent);
  color: var(--text-primary);
  font-weight: 500;
  font-size: 13px;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.25s ease;
}

.comment-form button:hover {
  background: var(--accent-hover);
}

.comments-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  clear: both;
}

.comment-item {
  display: flex;
  gap: 12px;
}

.comment-item img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.comment-body {
  flex: 1;
}

.comment-header {
  display: flex;
  align-items: center;
  gap: 8px;
}

.comment-author {
  font-weight: 500;
  font-size: 13px;
  color: var(--text-primary);
}

.comment-time {
  font-weight: 400;
  font-size: 11px;
  color: var(--text-muted);
}

.comment-text {
  font-weight: 400;
  font-size: 13px;
  color: var(--text-secondary);
  margin-top: 6px;
  line-height: 1.5;
}

.comment-reply {
  font-weight: 500;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.25s ease;
}

.comment-reply:hover {
  color: var(--accent);
}

/* Related Videos */
.related-section {
  margin-top: 48px;
  margin-bottom: 48px;
}

.related-section .section-title {
  font-size: 18px;
  margin-bottom: 16px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

/* ---- Form Styles (Contact & DMCA) ---- */
.form-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: var(--surface-hover);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-weight: 400;
  font-size: 14px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.25s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
}

.form-group select {
  appearance: none;
  cursor: pointer;
}

.form-group select option {
  background: var(--surface-hover);
  color: var(--text-primary);
}

.btn-primary {
  font-family: 'Fredoka', sans-serif;
  background: var(--accent);
  color: var(--text-primary);
  font-weight: 500;
  font-size: 14px;
  padding: 12px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease;
}

.btn-primary:hover {
  background: var(--accent-hover);
}

/* ---- Contact Page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 24px;
  margin-top: 24px;
  margin-bottom: 48px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-info-item i {
  font-size: 16px;
  color: var(--accent);
  margin-top: 2px;
  width: 20px;
  text-align: center;
}

.contact-info-item .info-label {
  font-weight: 500;
  font-size: 13px;
  color: var(--text-secondary);
}

.contact-info-item .info-value {
  font-weight: 400;
  font-size: 14px;
  color: var(--text-primary);
  margin-top: 2px;
}

/* ---- DMCA Page ---- */
.dmca-content {
  max-width: 700px;
  margin: 0 auto;
}

.steps-list {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.step-item i {
  font-size: 14px;
  color: var(--success);
  margin-top: 3px;
  flex-shrink: 0;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 20px;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  accent-color: var(--accent);
}

.checkbox-group label {
  font-weight: 400;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ---- Partners Page ---- */
.partner-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: transform 0.3s ease, background 0.25s ease;
}

.partner-card:hover {
  transform: translateY(-3px);
  background: var(--surface-hover);
}

.partner-logo-placeholder {
  width: 120px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface-hover);
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-weight: 500;
  font-size: 14px;
}

.partner-name {
  font-weight: 500;
  font-size: 16px;
  color: var(--text-primary);
  margin-top: 16px;
}

.partner-desc {
  font-weight: 400;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
}

.partner-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  font-size: 13px;
  color: var(--accent);
  margin-top: 12px;
  transition: color 0.25s ease;
}

.partner-link:hover {
  color: var(--accent-hover);
}

/* Text Link Row */
.link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--surface);
  border-radius: 10px;
  padding: 14px 20px;
  transition: background 0.25s ease;
}

.link-row:hover {
  background: var(--surface-hover);
}

.link-row-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.link-row-left i {
  font-size: 13px;
  color: var(--text-muted);
}

.link-row-left span {
  font-weight: 500;
  font-size: 14px;
  color: var(--text-primary);
}

.link-row-right i {
  font-size: 12px;
  color: var(--text-muted);
}

/* ---- Partners Section (on index) ---- */
.partners-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 24px 0;
  margin-top: 40px;
}

.partners-label {
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.partners-list {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.partners-list a {
  font-weight: 400;
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.25s ease;
}

.partners-list a:hover {
  color: var(--text-secondary);
}

.partners-cta {
  font-weight: 500;
  font-size: 13px;
  color: var(--accent);
  transition: color 0.25s ease;
}

.partners-cta:hover {
  color: var(--accent-hover);
}

/* ---- Footer ---- */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer-brand .logo {
  font-size: 16px;
}

.footer-tagline {
  font-weight: 400;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}

.footer-heading {
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-weight: 400;
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--text-primary);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 32px;
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copyright {
  font-weight: 400;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  font-size: 16px;
  color: var(--text-muted);
  transition: color 0.25s ease;
}

.footer-social a:hover {
  color: var(--text-primary);
}

/* ---- Scrollbar ---- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #444;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .actor-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .ad-banner-desktop {
    display: none;
  }

  .ad-banner-mobile {
    display: flex;
  }

  .video-details-meta {
    gap: 14px;
  }

  .container {
    padding: 0 16px;
  }

  .header-inner {
    padding: 0 16px;
  }
}

@media (max-width: 480px) {
  .video-grid {
    grid-template-columns: 1fr;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .actor-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .video-details-meta {
    gap: 10px;
  }

  .video-details-meta .meta-item {
    font-size: 12px;
  }

  .pagination {
    flex-wrap: wrap;
  }
}
