﻿/* =========================================================
   ColTube Black & Green Theme
   ========================================================= */

/* ========= Base ========= */
body {
  background-color: #000000;
  color: #00FF00;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  margin: 0;
  padding: 0;
}

/* ======== Header ======== */
header.site-header {
  background-color: #000000;
  color: #00FF00;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #00FF00;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header.site-header h1 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}

.auto-style1 {
  font-family: "Blade Runner Movie Font";
  color: #00FF00;
  font-size: xx-large;
}

/* ======== Search Bar ======== */
.search-bar {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #00FF00;
  width: 220px;
  font-size: 0.9rem;
  background-color: #000000;
  color: #00FF00;
  display: block;
  margin: 10px auto;
}

.search-bar::placeholder {
  color: #00FF00;
}

.search-bar:focus {
  outline: none;
  border-color: #00FF00;
  box-shadow: 0 0 4px #00FF00;
}

/* ======== Sort Buttons ======== */
.sort-container {
  text-align: center;
  margin: 10px 0;
}

.sort-button {
  padding: 8px 12px;
  margin: 0 5px 10px 5px;
  border: 1px solid #00FF00;
  border-radius: 6px;
  background-color: #000000;
  color: #00FF00;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.2s ease;
}

.sort-button:hover {
  background-color: #00FF00;
  color: #000000;
}

/* ========= Video Grid ========= */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  padding: 20px;
}

.video-card {
  background-color: #000000;
  color: #00FF00;
  border: 1px solid #00FF00;
  border-radius: 10px;
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.video-card:hover {
  transform: scale(1.03);
  box-shadow: 0 0 10px #00FF00;
}

.video-card img {
  width: 100%;
  height: auto;
  display: block;
}

.video-card h3, .video-card .artist {
  color: #00FF00;
  margin: 8px;
}

/* ========= Video Player ========= */
.video-container {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  border-radius: 10px;
  background-color: #000000;
  box-shadow: 0 0 20px rgba(0,255,0,0.5);
}

.video-container video {
  width: 100%;
  height: auto;
  border-radius: 10px;
  border: 1px solid #00FF00;
}

.video-info h2, .video-info p {
  color: #00FF00;
}

/* ======== Footer ======== */
footer {
  text-align: center;
  padding: 20px;
  font-size: 0.85rem;
  color: #00FF00;
  border-top: 1px solid #00FF00;
  background-color: #000000;
}

/* ========= Responsive ========= */
@media (max-width: 600px) {
  .video-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 10px;
  }

  header.site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .search-bar {
    width: 100%;
    margin-top: 10px;
  }
}
