.profile-hero {
  padding: 100px 20px 60px;
  background: linear-gradient(
    135deg,
    var(--bg-darker-blue) 0%,
    var(--bg-dark-blue) 100%
  );
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.profile-container {
  display: flex;
  gap: 50px;
  align-items: center;
  max-width: 1200px;
}

.profile-image-box {
  flex: 1;
  max-width: 450px;
  position: relative;
}

.profile-image-box::before {
  content: "";
  position: absolute;
  top: -15px;
  left: -15px;
  right: 15px;
  bottom: 15px;
  border: 2px solid var(--neon-cyan);
  border-radius: 20px;
  z-index: 0;
}

.profile-img {
  width: 100%;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
  aspect-ratio: 3/4;
  object-fit: cover;
}

.profile-info {
  flex: 1;
}

.profile-name {
  font-size: 3.5rem;
  color: var(--neon-cyan);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
  text-shadow: 0 0 15px var(--neon-glow);
}

.profile-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 30px;
}

.stat-item {
  background: var(--bg-accent-blue);
  padding: 15px;
  border-radius: 10px;
  border-left: 3px solid var(--neon-cyan);
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.stat-value {
  font-size: 1.2rem;
  color: var(--text-primary);
  font-weight: bold;
  text-transform: uppercase;
}

.profile-bio {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
}

.profile-video-section {
  padding: 80px 20px;
  background-color: var(--bg-dark-blue);
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 15px;
  border: 2px solid rgba(0, 255, 255, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.video-wrapper:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 25px var(--neon-glow);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.profile-events-section {
  padding: 80px 20px;
  background-color: var(--bg-darker-blue);
}

.events-carousel {
  display: flex;
  max-height: 450px;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 10px 50px 10px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.carousel-card {
  flex: 0 0 380px;
  margin: 0;
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
}

@media (max-width: 992px) {
  .profile-container {
    flex-direction: column;
  }

  .profile-name {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .profile-name {
    font-size: 2.5rem;
  }

  .carousel-card {
    flex: 0 0 320px;
  }
}

@media (max-width: 480px) {
  .profile-video-section {
    padding: 20px 0px 50px;
    background-color: var(--bg-dark-blue);
  }

  .container {
    width: 95%;

    .section-title {
      text-align: center;
      margin-bottom: 10px;
    }
  }

  .profile-hero {
    padding: 60px 15px 40px;
  }

  .profile-name {
    font-size: 2rem;
  }

  .profile-stats {
    grid-template-columns: 1fr;
  }

  .carousel-card {
    flex: 0 0 260px;
  }

  .carousel-card .poster-wrapper {
    height: 220px;
  }

  .carousel-card .event-title {
    font-size: 1.1rem;
  }

  .events-carousel {
    gap: 15px;
  }
}

.custom-x-scroll {
  display: flex;
  overflow-x: auto;
  padding-bottom: 20px;
  gap: 20px;

  scrollbar-width: thin;
  scrollbar-color: rgba(0, 255, 255, 0.4) rgba(0, 0, 0, 0.2);
}

.upcoming-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: linear-gradient(45deg, #00ffff, #a0d3ff);
  color: #0b132b;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 5px 12px;
  padding-top: 8px;
  border-radius: 20px;
  z-index: 10;
  box-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
  letter-spacing: 1px;
}

.upcoming-event {
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.2);
  animation: pulse-glow 2s infinite alternate;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 5px rgba(0, 255, 255, 0.2);
  }
  100% {
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.6);
  }
}
