 :root {
      --primary-color: #000000;
      --secondary-color: #FFEB3B;
      --accent-color: #FFFFFF;
    }
    
    body {
      font-family: 'Roboto', sans-serif;
      background-color: var(--primary-color);
      color: var(--accent-color);
      overflow-x: hidden;
    }
    
    /* Navbar */
    nav {
      background-color: var(--primary-color) !important;
      border-bottom: 2px solid var(--secondary-color);
    }
    
    nav .brand-logo {
      display: flex;
      align-items: center;
      color: white;
    }
    
    /* Video Banner com Iframe do YouTube */
    .video-container {
      position: relative;
      height: 100vh;
      overflow: hidden;
    }
    
    .video-container iframe {
      position: absolute;
      top: 50%;
      left: 50%;
      width: 100vw;
      height: 56.25vw; /* 16:9 aspect ratio */
      min-height: 100vh;
      min-width: 177.77vh; /* 16:9 aspect ratio */
      transform: translateX(-50%) translateY(-50%);
      z-index: 1;
    }
    
   .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0; /* Inicialmente transparente */
  animation: fadeIn 1.5s ease-in-out 7s forwards; /* Animação com atraso de 5s */
}

/* Definir os keyframes para a animação */
@keyframes fadeIn {
  to {
    opacity: 1; /* Termina com opacidade total */
  }
}
    
    .video-content {
      z-index: 3;
      position: relative;
      padding: 2rem;
      max-width: 800px;
    }
    
    .cta-buttons {
      margin-top: 2rem;
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 15px;
    }
    
    .btn-custom {
      background-color: var(--secondary-color);
      color: var(--primary-color);
      border-radius: 30px;
      padding: 0 30px;
      font-weight: bold;
      text-transform: uppercase;
    }
    
    .btn-custom:hover {
      background-color: var(--accent-color);
    }
    
    .btn-outline {
      background-color: transparent;
      border: 2px solid var(--secondary-color);
      color: var(--secondary-color);
    }
    
    .btn-outline:hover {
      background-color: var(--secondary-color);
      color: var(--primary-color);
    }
    
    /* Content Sections */
    .section-title {
      text-align: center;
      margin: 3rem 0 2rem;
      font-size: 2.5rem;
      color: var(--secondary-color);
      text-transform: uppercase;
      font-weight: bold;
    }
    
    .icon-block {
      text-align: center;
      padding: 20px;
      transition: transform 0.3s;
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.05);
      height: 100%;
      border: 1px solid rgba(255, 235, 59, 0.2);
    }
    
    .icon-block:hover {
      transform: translateY(-10px);
      background: rgba(255, 235, 59, 0.1);
    }
    
    .icon-block img {
      transition: transform 0.3s;
      margin-bottom: 15px;
      filter: brightness(0) invert(1);
    }
    
    .icon-block:hover img {
      transform: scale(1.1);
      filter: brightness(0) invert(79%) sepia(90%) saturate(465%) hue-rotate(4deg) brightness(105%) contrast(107%);
    }
    
    /* Artists Preview */
    .video-card {
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s;
      margin-bottom: 20px;
      background: #1a1a1a;
      border: 1px solid rgba(255, 235, 59, 0.2);
    }
    
    .video-card:hover {
      transform: translateY(-5px);
      border-color: var(--secondary-color);
    }
    
    .video-thumb {
      height: 180px;
      overflow: hidden;
      position: relative;
    }
    
    .video-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    
    .video-card:hover .video-thumb img {
      transform: scale(1.1);
    }
    
    .play-icon {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: var(--secondary-color);
      font-size: 3rem;
      opacity: 0.8;
      transition: opacity 0.3s;
    }
    
    .video-card:hover .play-icon {
      opacity: 1;
    }
    
    .video-info {
      padding: 15px;
    }
    
    .video-title {
      font-weight: bold;
      color: var(--accent-color);
      margin-bottom: 5px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }
    
    .video-date {
      color: var(--secondary-color);
      font-size: 0.9rem;
    }
    
    /* Footer */
    footer {
      background-color: #0c0c0c;
      padding: 30px 0;
      margin-top: 50px;
      border-top: 2px solid var(--secondary-color);
    }
    
    /* Loader para vídeos */
    .loader {
      display: flex;
      justify-content: center;
      padding: 20px;
    }
    
    .progress {
      background-color: #333;
    }
    
    .progress .indeterminate {
      background-color: var(--secondary-color);
    }
    
    /* Responsive Adjustments */
    @media (max-width: 992px) {
      .video-content h1 {
        font-size: 2.5rem;
      }
      
      .video-content h5 {
        font-size: 1.2rem;
      }
    }
    
    @media (max-width: 600px) {
      .video-container {
        height: 80vh;
      }
      
      .video-content h1 {
        font-size: 2rem;
      }
      
      .cta-buttons {
        flex-direction: column;
        align-items: center;
      }
      
      .btn-custom {
        width: 100%;
        margin-bottom: 10px;
      }
    }