* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
}

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

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
}

.logo {
  height: 40px;
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.search-bar {
  padding: 6px;
  border-radius: 4px;
  border: none;
}

.theme-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
}

.header-content {
  text-align: center;
  padding: 50px 20px;
}

.features {
  padding: 20px;
}

.list {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  margin-bottom: 20px;
}

.list img {
  width: 150px;
  border-radius: 4px;
  cursor: pointer;
}

.skeleton {
  width: 150px;
  height: 225px;
  background: #333;
  border-radius: 4px;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { background-color: #333; }
  50% { background-color: #444; }
  100% { background-color: #333; }
}

.player-section {
  padding: 20px;
  text-align: center;
}

.poster-player img {
  max-width: 200px;
  border-radius: 8px;
  margin-bottom: 10px;
}

#modal-video {
  width: 100%;
  max-width: 800px;
  height: 450px;
  border: none;
  border-radius: 8px;
}

.server-selector {
  margin: 10px 0;
}

.footer {
  padding: 20px;
  background: #111;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

@media (max-width: 600px) {
  #modal-video {
    height: 250px;
  }
  .poster-player img {
    max-width: 150px;
  }
}
