body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #181824;
  color: #eaeaea;
}
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #10101a;
  padding: 12px 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px #0004;
}
.logo {
  font-size: 2rem;
  font-weight: bold;
  color: #00bfff;
  letter-spacing: 1px;
}
.main-nav {
  display: flex;
  gap: 24px;
}
.nav-link {
  color: #eaeaea;
  text-decoration: none;
  font-size: 1.1em;
  padding: 6px 12px;
  border-radius: 4px;
  transition: background 0.2s;
}
.nav-link.active, .nav-link:hover {
  background: #23233a;
  color: #00bfff;
}
.search-bar {
  display: flex;
  align-items: center;
  gap: 4px;
  background: #23233a;
  border-radius: 24px;
  padding: 4px 12px;
}
#searchInput {
  border: none;
  background: transparent;
  color: #eaeaea;
  font-size: 1em;
  outline: none;
  width: 180px;
}
#searchBtn {
  background: #00bfff;
  border: none;
  color: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 1.1em;
}
.suggestions {
  position: absolute;
  background: #23233a;
  color: #eaeaea;
  border-radius: 8px;
  margin-top: 36px;
  left: 0;
  right: 0;
  z-index: 200;
  display: none;
}
.burger {
  display: none;
  background: none;
  border: none;
  color: #00bfff;
  font-size: 2em;
  cursor: pointer;
}

.main-content {
  display: flex;
  gap: 32px;
  max-width: 1400px;
  margin: 32px auto 0 auto;
  padding: 0 16px;
}
.sidebar {
  width: 260px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.categories-block, .actors-block {
  background: #23233a;
  border-radius: 12px;
  padding: 16px;
}
.cat-item, .actor-item {
  background: #181824;
  color: #eaeaea;
  border-radius: 6px;
  padding: 6px 12px;
  margin: 4px 0;
  display: inline-block;
  font-size: 0.98em;
  cursor: pointer;
  transition: background 0.2s;
}
.cat-item:hover, .actor-item:hover {
  background: #00bfff22;
  color: #00bfff;
}
.actor-count {
  color: #aaa;
  font-size: 0.9em;
  margin-left: 6px;
}

.videos-section {
  flex: 1;
  min-width: 0;
}
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.video-card {
  background: #23233a;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px #0002;
  display: flex;
  flex-direction: column;
  transition: transform 0.15s;
}
.video-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 6px 24px #0004;
}
.video-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #111;
}
.video-title {
  font-size: 1.05em;
  font-weight: bold;
  margin: 12px 12px 4px 12px;
  color: #fff;
  min-height: 40px;
}
.video-meta {
  font-size: 0.95em;
  color: #aaa;
  margin: 0 12px 12px 12px;
}

.ad-block {
  margin: 16px 0;
  text-align: center;
  background: #23233a;
  border-radius: 8px;
  padding: 12px 0;
}
.native-ad {
  background: #00bfff22;
  color: #00bfff;
  border-radius: 8px;
  padding: 12px;
  margin: 16px 0;
  font-weight: bold;
}

.loader {
  text-align: center;
  color: #00bfff;
  font-size: 1.2em;
  margin: 24px 0;
  display: none;
}

.main-footer {
  background: #10101a;
  color: #aaa;
  text-align: center;
  padding: 24px 0 12px 0;
  margin-top: 48px;
  font-size: 1.1em;
} 