body {
  margin: 0;
  font-family: sans-serif;
  background: #0c0c0f;
  color: #fff;
  cursor: pointer;
}

#mainWebsite {
  display: none;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  background: #15151b;
  border-bottom: 1px solid #222;
  flex-wrap: wrap;
}

.header .logo {
  font-weight: bold;
  font-size: 20px;
}

.header .search-box {
  flex: 1;
  margin: 0 10px;
}

.header .search-box input {
  width: 100%;
  padding: 6px 10px;
  border-radius: 5px;
  border: none;
  outline: none;
  font-size: 14px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 5px;
}

#adstraa-banner {
  text-align: center;
  margin: 20px 0;
  background: transparent !important;
  border: none !important;
}

.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  margin-bottom: 20px;
}

@media (min-width: 768px) { 
  .grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  } 
}

.card {
  background: #15151b;
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s;
  position: relative;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-2px);
}

.card img {
  width: 100%;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45px;
  height: 45px;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.4);
}

.play-btn::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 12px solid white;
  margin-left: 3px;
}

.duration {
  position: absolute;
  bottom: 5px;
  right: 5px;
  background: rgba(0,0,0,0.6);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 12px;
}

.title {
  padding: 6px;
  font-size: 13px;
  line-height: 1.2;
  text-align: center;
  background: #222;
  font-weight: bold;
}

.stats {
  padding: 0 5px 6px;
  font-size: 11px;
  color: #aaa;
  text-align: center;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.pagination span {
  padding: 5px 10px;
  margin: 0 3px;
  border-radius: 5px;
  background: #222;
  cursor: pointer;
}

.pagination span.active {
  background: #ff2a55;
}
