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

body {
  background: black;
  padding: 3rem 1rem;
  min-height: 100vh;
  background-color: black;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
}

.header {
  margin-bottom: 2rem;
  text-align: center;
}

.header h1 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.header p {
  font-size: 16px;
  color: #777;
}

.filter-container {
  display: flex;
  gap: 8px;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-left: 20px;
  padding-right: 20px;
}

.filter-label {
  font-weight: 600;
  color: #1a1a1a;
  font-size: 14px;
  margin-right: 4px;
}

.filter-button {
  padding: 2px 8px;
  border: 1.5px solid #1a1a1a;
  border-radius: 3px;
  background: black;
  color: #888;
  cursor: pointer;
  font-size: 15px;
  font-weight: 400;
  transition: all 250ms ease;
  text-transform: uppercase;
}

.filter-button:hover {
  border-color: #1a1a1a;
  /*background: #333;*/
  color: #fff;
  font-weight: 800;
}

.filter-button.active {
  background: #1a1a1a;
  color: white;
  border-color: #1a1a1a;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 48px;
  padding: 0;
  margin-bottom: 3rem;
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  background: #fff;
  /*aspect-ratio: 1 / 1.2;*/
  aspect-ratio: 16 / 9;
  cursor: pointer;
  border: 1px solid #666666;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.video-card:hover {
  border-color: #ddd;
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 350ms ease;
}

.video-card:hover .video-thumbnail img {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 55px;
  height: 55px;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 300ms ease, transform 300ms ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.video-card:hover .play-button {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.15);
}

.play-icon {
  font-size: 32px;
  color: #1a1a1a;
  margin-left: 4px;
  font-weight: bold;
}

.video-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0.95) 100%);
  transition: all 300ms ease;
}

.video-artist {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.video-title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0;
  letter-spacing: -0.3px;
}

.video-card:hover .video-title {
  font-size: 19px;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
}

.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  position: relative;
  width: 95%;
  max-width: 1200px;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  transform: scale(0.92);
  transition: transform 300ms ease;
}

.modal-backdrop.active .modal-content {
  transform: scale(1);
}

.modal-iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  transition: all 250ms ease;
  z-index: 1001;
  font-weight: 300;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.modal-content:hover .modal-close {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-close:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
}

.modal-nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.12);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1002;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-content:hover .modal-nav-button {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-nav-button:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-50%) scale(1.1);
}

.modal-nav-button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.modal-nav-prev {
  left: 24px;
}

.modal-nav-next {
  right: 24px;
}

.modal-nav-button svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: #999;
}

@media (max-width: 1024px) {
  .gallery-container {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 768px) {
  body {
    padding: 1.5rem 0.75rem;
  }
}

@media (max-width: 768px) {
  .gallery-container {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .header h1 {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .filter-container {
    gap: 2px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 768px) {
  .video-title {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .gallery-container {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 12px;
  }
}

@media (max-width: 480px) {
  .header h1 {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .filter-container {
    gap: 2px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

