.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(40,44,60,0.92);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  outline: none;
}
.nav-btn:hover {
  background: #6ab7ff;
  color: #23262f;
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
}
.nav-left {
  left: 32px;
}
.nav-right {
  right: 32px;
}
body {
  background: #181a20;
  color: #e2e2e2;
  font-family: 'Inter', Arial, sans-serif;
}
.project-details-container {
  /* max-width: 800px; */
  margin: 40px auto;
  background: #23262f;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  padding: 32px;
}
.project-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  color: #fff;
}
.project-description {
  font-size: 1.1rem;
  color: #bdbdbd;
  margin-bottom: 32px;
}
.carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow-x: auto;
  margin-bottom: 24px;
}
.carousel img {
  height: 180px;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
  transition: transform 0.2s, box-shadow 0.2s;
  background: #181a20;
  display: block;
}

.carousel {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow-x: auto;
  margin-bottom: 24px;
}


.carousel img:hover {
  transform: scale(1.05);
  border-radius: 10px !important;
  overflow: hidden;
}

/* Добавляем обёртку для каждого скриншота */
.carousel-img-wrapper {
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel img:hover {
  transform: scale(1.05);
  border-radius: 10px !important;
  overflow: hidden;
}
.fullscreen-modal {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(24,26,32,0.95);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.fullscreen-modal.active {
  display: flex;
}
.fullscreen-modal img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.45);
}
.close-btn {
  position: absolute;
  top: 32px;
  right: 48px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
  background: none;
  border: none;
  z-index: 10000;
}
nav[aria-label="breadcrumb"] ol {
  list-style: none;
  display: flex;
  gap: 8px;
  padding: 0;
  font-size: 1rem;
}
nav[aria-label="breadcrumb"] a {
  color: #6ab7ff;
  text-decoration: none;
}
nav[aria-label="breadcrumb"] li {
  color: #bdbdbd;
}
nav[aria-label="breadcrumb"] li:last-child {
  color: #fff;
}

.block-title {
    margin-top: 36px;
    margin-bottom: 18px;
    font-size: 1.25rem;
    color: #6ab7ff;
    font-weight: 600;
}