@font-face {
    font-family: Gontserrat-ExtraBold;
    src: url(../../fonts/Gontserrat-ExtraBold.ttf);
}
@font-face {
    font-family: Gontserrat;
    src: url(../../fonts/Gontserrat-Regular.ttf);
}
@font-face {
    font-family: Gontserrat-SemiBold;
    src: url(../../fonts/Gontserrat-SemiBold.ttf);
}
@font-face {
    font-family: Gontserrat-Light;
    src: url(../../fonts/Gontserrat-Light.ttf);
}
@font-face {
    font-family: Gontserrat-Medium;
    src: url(../../fonts/Gontserrat-Medium.ttf);
}
@font-face {
    font-family: Gontserrat-Bold;
    src: url(../../fonts/Gontserrat-Bold.ttf);
}

.project-nav {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  width: 100%;
  height: 65px;
  background-color: rgba(13, 18, 36, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
  z-index: 1000;
}

.project-nav__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 var(--gutter, 21%);
}

.project-nav__projects {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  height: 100%;
}

.project-nav__projects li {
  display: flex;
  align-items: center;
  height: 100%;
}

.project-nav__link {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.45);
  font-family: Gontserrat;
  font-size: 0.85rem;
  padding: 0 12px;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  transition: color 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  white-space: nowrap;
}

.project-nav__link:hover {
  color: #ffffff;
}

.project-nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 12px;
  right: 12px;
  height: 2px;
  background-color: rgb(158, 87, 240);
  box-shadow: 0 0 10px rgb(158, 87, 240);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-nav__link:hover::after,
.project-nav__link--active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.project-nav__link--active {
  color: #ffffff;
}

.project-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin: 0 !important;
  padding: 0 !important;
  background-color: #0d1224;
}

.project-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../../public/top-bg.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.8;
}

.project-hero__banner {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  z-index: 1;
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-hero:hover .project-hero__banner {
  transform: scale(1.03);
}

.project-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(13, 18, 36, 0.2) 0%,
    rgba(13, 18, 36, 0.4) 40%,
    rgba(13, 18, 36, 0.1) 70%,
    #0d1224 100%
  );
}

.project-hero__content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-left: var(--gutter, 21%);
  padding-right: var(--gutter, 21%);
  padding-bottom: min(12vh, 120px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  animation: heroFadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.project-hero__text-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
}

.project-hero__title {
  font-family: Gontserrat-ExtraBold;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  line-height: 1.05;
  margin: 0;
  background: linear-gradient(135deg, #ffffff 40%, rgb(210, 189, 235) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  filter: drop-shadow(0 4px 12px rgba(13, 18, 36, 0.5));
}

.project-hero__meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.project-hero__tag {
  font-family: Gontserrat;
  font-size: 0.75rem;
  color: rgb(215, 196, 238);
  background-color: rgba(13, 18, 36, 0.6);
  border: 1px solid rgba(158, 87, 240, 0.3);
  border-radius: 6px;
  padding: 6px 14px;
  backdrop-filter: blur(8px);
  transition: all 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-hero__tag:hover {
  background-color: rgba(158, 87, 240, 0.15);
  border-color: rgba(158, 87, 240, 0.6);
  cursor: pointer;
  color: white;
}

.project-hero__button-panel {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.project-btn {
  text-decoration: none;
  color: #ffffff;
  padding: 13px 28px;
  border-radius: 6px;
  font-family: Gontserrat-Medium;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  box-sizing: border-box;
}

.project-btn--primary {
  background: linear-gradient(135deg, rgb(158, 87, 240), rgb(68, 3, 143));
  box-shadow: 0 4px 20px rgba(158, 87, 240, 0.25);
  border: none;
}

.project-btn--primary:hover {
  box-shadow: 0 0px 24px rgba(158, 87, 240, 0.45);
  background: linear-gradient(135deg, rgb(173, 107, 252), rgb(81, 4, 168));
}

.project-btn--secondary {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(158, 87, 240, 0.4);
}

.project-btn--secondary:hover {
  background-color: rgba(158, 87, 240, 0.1);
  border-color: rgba(158, 87, 240, 0.7);
}

.project-hero__scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: color 0.3s ease, opacity 0.4s ease, visibility 0.4s ease;
  animation: scrollBounce 2s infinite ease-in-out;
}

.project-hero__scroll-indicator:hover {
  color: rgb(158, 87, 240);
  filter: drop-shadow(0 0 8px rgb(158, 87, 240));
}

.project-hero__scroll-indicator svg {
  width: 28px;
  height: 28px;
  display: block;
}

.project-hero__scroll-indicator--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.project-main {
  margin-top: 0;
  background-color: #0d1224;
}

.project-section {
  margin: 0 var(--gutter, 21%);
  padding: 110px 0;
  border-top: 1px solid #1f223c;
}

.project-section__inner {
  width: 100%;
}

.project-section__title {
  font-family: Gontserrat-SemiBold;
  font-size: clamp(1.6rem, 4.5vw, 2.2rem);
  color: white;
  margin-bottom: 54px;
  position: relative;
  display: inline-block;
  letter-spacing: -0.01em;
}

.project-section__title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, rgb(158, 87, 240), transparent);
  border-radius: 3px;
}

.project-overview__description {
  font-family: Gontserrat;
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgb(185, 170, 205);
  max-width: 780px;
  margin-bottom: 56px;
}

.project-overview__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 40px;
}

.project-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0 0 0 32px;
  border-left: 1px solid #1f223c;
  transition: border-color 0.3s ease;
}

.project-stat:first-child {
  padding-left: 0;
  border-left: none;
}

.project-stat:hover {
  border-color: rgba(158, 87, 240, 0.3);
}

.project-stat__value {
  font-family: Gontserrat-Bold;
  font-size: 2rem;
  color: white;
  line-height: 1;
}

.project-stat__unit {
  font-size: 1.2rem;
}

.project-stat__label {
  font-family: Gontserrat-Medium;
  font-size: 0.75rem;
  color: rgb(140, 120, 175);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.project-role__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.project-role__badge {
  display: inline-block;
  width: fit-content;
  font-family: Gontserrat-SemiBold;
  font-size: 0.95rem;
  color: rgb(174, 115, 245);
  background: linear-gradient(135deg, rgba(158, 87, 240, 0.12), rgba(158, 87, 240, 0.03));
  border: 1px solid rgba(158, 87, 240, 0.35);
  border-radius: 6px;
  padding: 10px 24px;
}

.project-role__description {
  font-family: Gontserrat;
  font-size: 1.05rem;
  line-height: 1.9;
  color: rgb(185, 170, 205);
  max-width: 750px;
}

.project-trailer__wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  background-color: #11152c;
  border: 1px solid rgba(158, 87, 240, 0.2);
  transition: border-color 0.3s ease;
}

.project-trailer__wrapper:hover {
  border-color: rgba(158, 87, 240, 0.4);
}

.project-trailer__wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.project-tasks .project-section__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.project-tasks .project-section__title {
  align-self: flex-start;
}

.project-task {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 40px 30px;
  border-radius: 14px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.project-task:hover {
  background-color: rgba(17, 21, 44, 0.4);
  cursor: pointer;
}

.project-task__image {
  border-radius: 10px;
  overflow: hidden;
  background-color: #11152c;
  border: 1px solid #1f223c;
}

.project-task__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 16 / 9;
  transition: transform 0.6s ease;
}

.project-task:hover .project-task__image {
  border-color: rgba(158, 87, 240, 0.35);
  box-shadow: 0 0 35px rgba(158, 87, 240, 0.1);
}

.project-task:hover .project-task__image img {
  transform: scale(1.04);
}

.project-task__title {
  font-family: Gontserrat-SemiBold;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.project-task__description {
  font-family: Gontserrat;
  font-size: 1rem;
  line-height: 1.85;
  color: rgb(185, 170, 205);
}

.project-task--reverse {
  direction: rtl;
}

.project-task--reverse > * {
  direction: ltr;
}

.project-awards {
  position: relative;
}

.project-awards__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.project-award {
  display: grid;
  grid-template-columns: 1fr 340px;
  min-height: 220px;
  background-color: #11152c;
  border: 1px solid #1f223c;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-award:hover {
  border-color: rgba(158, 87, 240, 0.45);
  background-color: #141834;
  cursor: pointer;
}

.project-award__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  padding: 36px 40px;
}

.project-award__header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.project-award__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(158, 87, 240, 0.18), rgba(68, 3, 143, 0.12));
  border: 1px solid rgba(158, 87, 240, 0.35);
  flex-shrink: 0;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.project-award:hover .project-award__icon {
  border-color: rgba(158, 87, 240, 0.6);
  background: linear-gradient(135deg, rgba(158, 87, 240, 0.28), rgba(68, 3, 143, 0.2));
}

.project-award__meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.project-award__title {
  font-family: Gontserrat-SemiBold;
  font-size: 1.2rem;
  color: white;
  letter-spacing: -0.01em;
}

.project-award__event {
  font-family: Gontserrat;
  font-size: 0.82rem;
  color: rgb(158, 87, 240);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.project-award__description {
  font-family: Gontserrat;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgb(175, 160, 195);
  max-width: 520px;
}

.project-award__photo {
  position: relative;
  overflow: hidden;
  border-left: 1px solid #1f223c;
}

.project-award__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.project-award:hover .project-award__photo img {
  transform: scale(1.05);
}

.project-cta {
  text-align: center;
  padding: 0;
}

.project-cta__nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 28px 0;
}

.project-cta__prev,
.project-cta__next,
.project-cta__home {
  text-decoration: none;
  font-family: Gontserrat;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.project-cta__prev svg,
.project-cta__next svg {
  transition: transform 0.2s ease;
}

.project-cta__prev:hover {
  color: rgb(174, 115, 245);
}
.project-cta__prev:hover svg {
  transform: translateX(-3px);
}

.project-cta__next:hover {
  color: rgb(174, 115, 245);
}
.project-cta__next:hover svg {
  transform: translateX(3px);
}

.project-cta__home {
  color: white;
  font-family: Gontserrat-SemiBold;
  position: relative;
}

.project-cta__home::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(158, 87, 240, 0.5);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.project-cta__home:hover::after {
  transform: scaleX(1);
}

.video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #060810;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(158, 87, 240, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(158, 87, 240, 0.05);
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.video-player:hover {
  border-color: rgba(158, 87, 240, 0.4);
}

.video-player__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.video-player__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    to bottom,
    rgba(6, 8, 16, 0.3) 0%,
    rgba(6, 8, 16, 0.55) 100%
  );
  transition: opacity 0.35s ease;
  z-index: 3;
}

.video-player__overlay--hidden {
  opacity: 0;
  pointer-events: none;
}

.video-player__big-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  background: rgba(158, 87, 240, 0.25);
  backdrop-filter: blur(8px);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

.video-player__big-play:hover {
  background: rgba(158, 87, 240, 0.6);
  border-color: rgb(158, 87, 240);
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(158, 87, 240, 0.5);
}

.video-player__big-play svg {
  width: 30px;
  height: 30px;
  margin-left: 4px;
}

.video-player__controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  padding: 40px 20px 16px;
  background: linear-gradient(to top, rgba(6, 8, 16, 0.92) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
}

.video-player:hover .video-player__controls,
.video-player--paused .video-player__controls {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.video-player__progress-area {
  margin-bottom: 10px;
  padding: 6px 0;
  cursor: pointer;
}

.video-player__progress-bar {
  position: relative;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  transition: height 0.15s ease;
}

.video-player__progress-area:hover .video-player__progress-bar {
  height: 5px;
}

.video-player__progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, rgb(158, 87, 240), rgb(110, 40, 190));
  border-radius: 3px;
  pointer-events: none;
}

.video-player__progress-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%) scale(0);
  width: 13px;
  height: 13px;
  background: white;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(158, 87, 240, 0.8);
  pointer-events: none;
  transition: transform 0.15s ease;
}

.video-player__progress-area:hover .video-player__progress-thumb {
  transform: translate(-50%, -50%) scale(1);
}

.video-player__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.video-player__left,
.video-player__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.video-player__btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: color 0.15s ease, background 0.15s ease;
}

.video-player__btn:hover {
  color: white;
  background: rgba(158, 87, 240, 0.2);
}

.video-player__btn svg {
  width: 20px;
  height: 20px;
  display: block;
}

.video-player__time {
  font-family: Gontserrat;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.video-player__volume-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.video-player__volume-bar {
  width: 70px;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  transition: height 0.15s ease;
}

.video-player__volume-bar:hover {
  height: 5px;
}

.video-player__volume-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: linear-gradient(to right, rgb(158, 87, 240), rgb(110, 40, 190));
  border-radius: 3px;
  pointer-events: none;
}

@media (max-width: 1024px) {
  .project-hero__title {
    font-size: clamp(2.4rem, 6vw, 3.6rem);
  }

  .project-overview__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .project-stat,
  .project-stat:first-child {
    padding: 22px 24px;
    border: 1px solid #1f223c;
    border-left: 1px solid #1f223c;
    border-radius: 12px;
    background-color: rgba(17, 21, 44, 0.5);
  }

  .project-stat:hover {
    background-color: rgba(20, 24, 52, 0.7);
  }

  .project-task {
    gap: 40px;
    padding: 32px 20px;
  }

  .project-award {
    grid-template-columns: 1fr 260px;
  }
}

@media (max-width: 768px) {
  .project-nav {
    height: auto;
    padding: 14px 0;
  }

  .project-nav__content {
    flex-direction: column;
    gap: 14px;
  }

  .project-nav__projects {
    height: auto;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 8px;
    row-gap: 8px;
  }

  .project-nav__projects li {
    height: auto;
  }

  .project-nav__link {
    padding: 6px 10px;
  }

  .project-hero {
    height: auto;
    min-height: 100vh;
    align-items: flex-end;
    padding-top: 90px !important;
  }

  .project-hero__content {
    padding-bottom: clamp(40px, 8vh, 80px);
    gap: 20px;
  }

  .project-hero__title {
    font-size: clamp(2.1rem, 8vw, 3rem);
  }

  .project-hero__button-panel {
    width: 100%;
  }

  .project-hero__button-panel .project-btn {
    flex: 1 1 auto;
    text-align: center;
  }

  .project-section {
    padding: 70px 0;
  }

  .project-section__title {
    margin-bottom: 36px;
  }

  .project-overview__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .project-stat,
  .project-stat:first-child {
    padding: 18px 20px;
    border-radius: 10px;
  }

  .project-stat__value {
    font-size: 1.7rem;
  }

  .project-role__description,
  .project-overview__description {
    font-size: 1rem;
    line-height: 1.75;
  }

  .project-task {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 16px;
  }

  .project-task--reverse {
    direction: ltr;
  }

  .project-task__title {
    font-size: 1.3rem;
  }

  .project-award {
    grid-template-columns: 1fr;
  }

  .project-award__photo {
    border-left: none;
    border-top: 1px solid #1f223c;
    height: 220px;
  }

  .project-award__body {
    padding: 28px 24px;
  }

  .project-cta__nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "home home"
      "prev next";
    gap: 10px;
    padding: 24px 0;
  }

  .project-cta__home,
  .project-cta__prev,
  .project-cta__next {
    justify-content: center;
    padding: 13px 16px;
    border-radius: 8px;
    box-sizing: border-box;
  }

  .project-cta__home {
    grid-area: home;
    background-color: rgba(158, 87, 240, 0.08);
    border: 1px solid rgba(158, 87, 240, 0.35);
  }

  .project-cta__home::after {
    display: none;
  }

  .project-cta__home:hover {
    background-color: rgba(158, 87, 240, 0.15);
    border-color: rgba(158, 87, 240, 0.6);
  }

  .project-cta__prev {
    grid-area: prev;
    border: 1px solid #1f223c;
  }

  .project-cta__next {
    grid-area: next;
    border: 1px solid #1f223c;
    justify-content: flex-end;
  }

  .project-cta__prev:hover,
  .project-cta__next:hover {
    border-color: rgba(158, 87, 240, 0.5);
    background-color: rgba(158, 87, 240, 0.08);
  }

  .video-player__controls {
    padding: 32px 14px 12px;
  }

  .video-player__volume-bar {
    width: 50px;
  }
}

@media (max-width: 480px) {
  .project-nav__link {
    font-size: 0.78rem;
    padding: 5px 8px;
  }

  .project-hero__title {
    font-size: clamp(1.9rem, 9vw, 2.4rem);
  }

  .project-hero__tag {
    font-size: 0.7rem;
    padding: 5px 11px;
  }

  .project-hero__button-panel {
    flex-direction: column;
    align-items: stretch;
  }

  .project-btn {
    padding: 12px 20px;
  }

  .project-section {
    padding: 54px 0;
  }

  .project-section__title {
    font-size: 1.5rem;
  }

  .project-overview__stats {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 28px;
  }

  .project-stat,
  .project-stat:first-child {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-radius: 10px;
  }

  .project-stat__label {
    text-align: right;
  }

  .project-stat__value {
    font-size: 1.5rem;
  }

  .project-role__badge {
    font-size: 0.85rem;
    padding: 8px 18px;
  }

  .project-task {
    padding: 18px 12px;
  }

  .project-task__title {
    font-size: 1.15rem;
    margin-bottom: 10px;
  }

  .project-task__description {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .project-award__header {
    gap: 12px;
  }

  .project-award__icon {
    width: 40px;
    height: 40px;
  }

  .project-award__title {
    font-size: 1.05rem;
  }

  .project-award__description {
    font-size: 0.88rem;
  }

  .project-award__photo {
    height: 180px;
  }

  .project-cta__prev,
  .project-cta__next,
  .project-cta__home {
    font-size: 0.78rem;
  }

  .video-player__big-play {
    width: 56px;
    height: 56px;
  }

  .video-player__big-play svg {
    width: 24px;
    height: 24px;
  }

  .video-player__right .video-player__volume-group {
    display: none;
  }

  .video-player__time {
    font-size: 0.7rem;
  }
}