.video-gallery-container {
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.video-gallery-container .video-gallery {
  display: flex;
  gap: 25px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1400px;
  width: 100%;
}

.video-gallery-container .video-card {
  flex: 1;
  min-width: 350px;
  max-width: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-gallery-container .video-card:hover {
  transform: translateY(-5px);
}

.video-gallery-container .video-container {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
  background: #000;
}

.video-gallery-container .video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-gallery-container .video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.video-gallery-container .video-container:hover .video-controls {
  opacity: 1;
}

.video-gallery-container .play-pause-btn {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-gallery-container .play-pause-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.video-gallery-container .play-pause-btn i {
  color: white;
  font-size: 18px;
}

.video-gallery-container .video-info {
  padding: 15px;
  color: #fff;
}

.video-gallery-container .video-info h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #e6e6e6;
}

.video-gallery-container .video-info p {
  font-size: 14px;
  color: #a0a0a0;
  line-height: 1.5;
  margin-bottom: 12px;
}

.video-gallery-container .video-meta {
  display: flex;
  justify-content: space-between;
  color: #888;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 12px;
}

@media (max-width: 768px) {
  .video-gallery-container .video-gallery {
    flex-direction: column;
    align-items: center;
  }

  .video-gallery-container .video-card {
    min-width: 100%;
    max-width: 100%;
  }
}

.fashion-section {
  background: linear-gradient(rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.85)), #0a0a0a;
  color: #fff;
  padding: 3rem 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
  color: #d4af37;
  font-weight: 700;
}

.invite-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  transition: transform 0.3s ease;
  height: 100%;
}

.invite-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.invite-card i {
  font-size: 2.5rem;
  color: #d4af37;
  margin-bottom: 15px;
}

.invite-card h3 {
  color: #d4af37;
  margin-bottom: 15px;
  font-weight: 600;
}

.highlights {
  background: rgba(212, 175, 55, 0.1);
  border-radius: 10px;
  padding: 25px;
  margin-top: 30px;
}

.highlights h3 {
  color: #d4af37;
  text-align: center;
  margin-bottom: 20px;
}

.highlight-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.highlight-item i {
  color: #d4af37;
  font-size: 1.5rem;
  margin-right: 15px;
}

.btn-register {
  background: linear-gradient(45deg, #d4af37, #f1e5ac);
  color: #000;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  display: block;
  margin: 30px auto;
  transition: all 0.3s ease;
}

.btn-register:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.event-details {
  text-align: center;
  margin-bottom: 30px;
  padding: 15px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 10px;
}

.event-details i {
  color: #d4af37;
  margin-right: 10px;
}

@media (max-width: 768px) {
  .invite-card {
    margin-bottom: 20px;
  }

  .highlight-item {
    margin-bottom: 20px;
  }
}
.benefits-section {
  background: linear-gradient(to right, #0a0a2a, #1a1a4a);
  color: white;
  padding: 3rem 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.section-title {
  text-align: center;
  margin-bottom: 2.5rem;
  color: #ffd700;
  font-weight: 700;
  position: relative;
}

.section-title:after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: #ffd700;
  margin: 15px auto;
}

.benefit-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
  height: 100%;
  border-left: 4px solid #ffd700;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.benefit-icon {
  font-size: 2.5rem;
  color: #ffd700;
  margin-bottom: 15px;
}

.benefit-title {
  color: #ffd700;
  margin-bottom: 15px;
  font-weight: 600;
}

.nomination-fee {
  background: rgba(255, 215, 0, 0.1);
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  margin: 30px 0;
  border: 1px solid #ffd700;
}

.guest-highlight {
  text-align: center;
  margin-bottom: 30px;
  padding: 15px;
  background: rgba(255, 215, 0, 0.1);
  border-radius: 10px;
}

@media (max-width: 768px) {
  .benefit-card {
    margin-bottom: 20px;
  }
}
