html, body {
  background-color: #0f0f0f;
}

[hidden] {
  display: none !important;
}

@font-face {
  font-family: "Vinque";
  src: url("../fonts/vinque-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

.layout {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 30px;
  background-color: rgba(20, 20, 20, 0.4);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(15px) saturate(180%);
  -webkit-backdrop-filter: blur(15px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 99;
}

.logo {
  width: 80px;
  height: auto;
}

a {
  text-decoration: none;
}

.layout nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 20px;
  position: relative;
}
.layout nav > a:first-child {
  order: -1;
  margin-left: 0;
}

.layout-links {
  display: flex;
  gap: 25px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.layout-links > a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
  padding: 10px;
}

.layout-links > a:hover {
  color: rgb(223, 109, 43);
  cursor: pointer;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(255, 127, 0, 0.4);
  transition: all 0.6s ease;
}

.authorize {
  background-color: #5b2c0d;
  border: 2px solid #FF6600;
  color: #ffffff;
  padding: 10px 22px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.authorize:hover {
  background-color: #3a261a;
  border-color: #ffa733;
  box-shadow: 0 0 10px rgba(255, 127, 0, 0.4);
}

.user-role {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #f76f3e;
  margin-left: 15px;
}

.clear-role {
  cursor: pointer;
  font-weight: bold;
  color: #900;
}
.clear-role:hover {
  color: red;
  text-decoration: underline;
}

.layout-contact {
  order: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  padding-right: 0;
  margin-left: auto;
}
.authorize--mobile {
  display: none;
  width: 100%;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
}
.layout-footer-mobile {
  display: none;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #333;
  color: #cfcfcf;
}
.layout-footer-mobile__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  line-height: 1.2;
}
.layout-footer-mobile__logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
}
.layout-footer-mobile__mortred {
  width: 100%;
  display: flex;
}

.burger {
  display: none;
  background-color: #5b2c0d;
  border: 2px solid #FF6600;
  color: #fff;
  font-size: 24px;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.burger:hover {
  background-color: #3a261a;
  border-color: #ffa733;
  box-shadow: 0 0 10px rgba(255, 127, 0, 0.4);
}
.menu-toggle {
  display: none;
  background-color: #5b2c0d;
  border: 2px solid #FF6600;
  color: #fff;
  font-size: 16px;
  padding: 8px 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.menu-toggle:hover {
  background-color: #3a261a;
  border-color: #ffa733;
  box-shadow: 0 0 10px rgba(255, 127, 0, 0.4);
}

.desktop-only {
  display: flex;
}

.mobile-only {
  display: none;
}

@media (max-width: 768px) {
  .layout {
    padding: 6px 12px;
  }
  .layout nav {
    justify-content: flex-start;
    gap: 8px;
    padding: 0 6px;
  }
  .logo {
    width: 60px;
  }
  .burger {
    display: none;
  }
  .menu-toggle {
    display: inline-flex;
    z-index: 120;
    order: 3;
    margin-left: 0;
    padding: 8px 12px;
    font-size: 15px;
  }
  .layout-links {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 70%;
    background-color: #141414;
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 20px;
    gap: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 99;
    box-shadow: 0 0 20px rgba(255, 127, 0, 0.3);
  }
  .layout-links.open {
    transform: translateX(0);
  }
  .layout-links > a {
    color: #fff;
    font-size: 18px;
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid #333;
  }
  .layout-links > a:hover {
    color: #ffa733;
  }
  .authorize--mobile {
    display: inline-flex;
  }
  .layout-footer-mobile {
    display: flex;
  }
  .layout-contact {
    display: flex;
    order: 2;
    margin-left: 0;
    gap: 8px;
  }
  .layout-contact .authorize {
    padding: 8px 14px;
    font-size: 14px;
  }
  .desktop-only {
    display: none;
  }
  .layout-contact.desktop-only {
    display: flex;
  }
  .mobile-only {
    display: block;
  }
  .user-role.mobile-only {
    font-size: 18px;
    margin-top: 10px;
  }
}
.wrapperSloiOne {
  background-color: #141414;
}

.sloi-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
.sloi-slider .sloi-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}
.sloi-slider .sloi-slide.active {
  opacity: 1;
  z-index: 1;
}
.sloi-slider .sloi-slide .content-wrapper {
  max-width: 600px;
  position: absolute;
  top: 50%;
  left: 15%;
  transform: translateY(-50%);
  color: #fff;
  text-align: left;
}
.sloi-slider .sloi-slide .arrows {
  position: absolute;
  top: -40px;
  display: flex;
  gap: 10px;
}
.sloi-slider .sloi-slide .arrows .arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  color: #fff;
  transition: 0.3s;
}
.sloi-slider .sloi-slide .arrows .arrow.right {
  border-color: #ff6600;
  color: #ff6600;
}
.sloi-slider .sloi-slide .arrows .arrow:hover {
  background: rgba(255, 255, 255, 0.2);
}
.sloi-slider .sloi-slide .title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
}
.sloi-slider .sloi-slide .description {
  font-size: 20px;
  line-height: 1.5;
  margin-bottom: 30px;
  max-width: 550px;
}
.sloi-slider .sloi-slide .main-btn {
  background-color: #5b2c0d;
  border: 2px solid #FF6600;
  color: #ffffff;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.sloi-slider .sloi-slide .main-btn:hover {
  background-color: #3a261a;
  border-color: #ffa733;
  box-shadow: 0 0 10px rgba(255, 127, 0, 0.4);
}
.sloi-slider .sloi-slide .dots {
  display: flex;
  gap: 10px;
  margin-top: 50px;
}
.sloi-slider .sloi-slide .dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #999;
  cursor: pointer;
  transition: 0.3s;
}
.sloi-slider .sloi-slide .dots .dot.active {
  background: #ff6600;
  transform: scale(1.2);
}

.aboutUs {
  color: #fff;
  padding-top: 50px;
}
.aboutUs__header {
  margin-bottom: 50px;
}
.aboutUs__title {
  font-size: 38px;
  font-weight: 700;
}
.aboutUs__content {
  display: flex;
  justify-content: right;
  gap: 50px;
}
.aboutUs__image img {
  width: 350px;
  height: auto;
  object-fit: contain;
}
.aboutUs__text {
  max-width: 65%;
  font-size: 18px;
  line-height: 1.2;
  text-align: left;
  padding-right: 5%;
}
.aboutUs__text p {
  margin-bottom: 20px;
}
.aboutUs__line {
  margin-top: 80px;
  display: flex;
  align-items: center;
  position: relative;
  height: 2px;
}

@media (max-width: 1024px) {
  .aboutUs__image img {
    width: 350px;
    height: auto;
    object-fit: contain;
    padding-left: 100px;
  }
  .aboutUs__line img {
    width: 95%;
  }
}
@media (max-width: 425px) {
  .aboutUs__content {
    display: flex;
    gap: 50px;
    flex-direction: column;
    align-items: center;
  }
  .aboutUs__image img {
    width: 350px;
    height: auto;
    object-fit: contain;
    padding-left: 0;
  }
}
@media (max-width: 375px) {
  .aboutUs__image img {
    width: 300px;
    height: auto;
    object-fit: contain;
    padding-left: 0;
  }
  .aboutUs__text {
    max-width: 70%;
  }
}
@media (max-width: 375px) {
  .aboutUs__image img {
    width: 280px;
    height: auto;
    object-fit: contain;
    padding-left: 0;
  }
  .aboutUs__text {
    max-width: 65%;
    font-size: 16px;
  }
}
.mark {
  padding-bottom: 1%;
}

.wrapperValues {
  color: #fff;
  width: 100%;
}
.wrapperValues__title {
  padding-top: 5%;
  padding-bottom: 5%;
}
.wrapperValues__container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 1250px;
  margin: 0 auto;
}
.wrapperValues__container img {
  width: 150px;
  height: auto;
  padding-bottom: 100px;
}
.wrapperValues__card {
  width: 500px;
  display: flex;
}
.wrapperValues__card h2 {
  text-align: left;
  font-size: 26px;
  padding-bottom: 15px;
}
.wrapperValues__card p {
  color: #5b5a5a;
  text-align: left;
  font-size: 14px;
}
.wrapperValues__line {
  margin-top: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 2px;
}

@media (max-width: 1024px) {
  .wrapperValues__container {
    width: 450px;
  }
}
@media (max-width: 425px) {
  .wrapperValues__container img {
    width: 100px;
    height: auto;
    padding-bottom: 100px;
  }
  .wrapperValues__title {
    padding-top: 15%;
    padding-bottom: 15%;
  }
  .wrapperValues__card {
    width: 400px;
    margin: 10px;
  }
  .wrapperValues__container {
    width: 400px;
  }
  .wrapperValues__line img {
    width: 80%;
  }
}
@media (max-width: 430px) {
  .wrapperValues__container {
    width: 400px;
  }
}
@media (max-width: 390px) {
  .wrapperValues__container {
    width: 350px;
  }
}
@media (max-width: 393px) {
  .wrapperValues__container {
    width: 350px;
  }
}
@media (max-width: 375px) {
  .wrapperValues__container {
    width: 300px;
  }
}
.mark {
  padding-bottom: 1%;
}

.wrapperProjects {
  color: #fff;
  width: 100%;
}
.wrapperProjects__title {
  padding-top: 5%;
  padding-bottom: 5%;
  text-align: center;
}
.wrapperProjects__container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 1250px;
  margin: 0 auto;
}
.wrapperProjects__container img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.wrapperProjects__container img:hover {
  transform: scale(1.05);
  box-shadow: 0 0 15px rgba(255, 102, 0, 0.5);
}
.wrapperProjects__card {
  width: 500px;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.wrapperProjects__card h2 {
  text-align: center;
  font-size: 26px;
}
.wrapperProjects__card p {
  color: #5b5a5a;
  text-align: center;
  font-size: 14px;
  margin-top: 10px;
}
.wrapperProjects__card a {
  display: block;
  width: 100%;
}
.wrapperProjects__card .project-img {
  width: 100%;
  padding-bottom: 20px;
}
.wrapperProjects__card .project-text {
  width: 90%;
}
.wrapperProjects__line {
  margin-top: 80px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 2px;
}
.wrapperProjects__line img {
  width: 100%;
  max-width: 1000px;
}

@media (max-width: 1024px) {
  .wrapperProjects__container {
    width: 450px;
  }
}
@media (max-width: 425px) {
  .wrapperProjects__container img {
    width: 100%;
    height: auto;
  }
  .wrapperProjects__title {
    padding-top: 15%;
    padding-bottom: 15%;
  }
  .wrapperProjects__card {
    width: 400px;
    margin: 10px;
  }
  .wrapperProjects__container {
    width: 400px;
  }
  .wrapperProjects__line img {
    width: 80%;
  }
}
@media (max-width: 430px) {
  .wrapperProjects__container {
    width: 400px;
  }
}
@media (max-width: 390px) {
  .wrapperProjects__container {
    width: 350px;
  }
}
@media (max-width: 393px) {
  .wrapperProjects__container {
    width: 350px;
  }
}
@media (max-width: 375px) {
  .wrapperProjects__container {
    width: 300px;
  }
}
.team {
  text-align: center;
  background-color: #141414;
  color: #fff;
}
.team__header-row {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 100px;
  margin-bottom: 20px;
  position: relative;
}
.team__title {
  padding-top: 0;
  font-size: 32px;
  margin: 0;
  flex: 0 0 auto;
  text-align: center;
}
.team__view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 127, 0, 0.5);
  color: #ffa733;
  background: #1a1a1a;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.3px;
  box-shadow: 0 0 0 1px rgba(255, 127, 0, 0.15);
  transition: all 0.2s ease;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.team__view-all:hover {
  background: rgba(255, 127, 0, 0.08);
  border-color: #ffa733;
  box-shadow: 0 8px 24px rgba(255, 127, 0, 0.15);
}
.team__description {
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 40px;
  color: #aaa;
}
.team__slider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-wrap: wrap;
}
.team__cards {
  display: flex;
  gap: 20px;
  padding-top: 50px;
  flex-wrap: wrap;
  justify-content: center;
}
.team__card {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  width: 270px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.team__card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 15px auto;
}
.team__card h3 {
  font-size: 18px;
  margin: 0;
}
.team__card p {
  font-size: 14px;
  color: #888;
}
.team-profile-modal {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 127, 0, 0.12), transparent 30%),
    radial-gradient(circle at 80% 80%, rgba(255, 127, 0, 0.12), transparent 30%),
    rgba(0, 0, 0, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 1200;
  backdrop-filter: blur(10px);
  animation: teamModalFade 0.35s ease;
}
.team-profile-card {
  background: linear-gradient(135deg, rgba(20, 20, 20, 0.94), rgba(26, 18, 10, 0.9));
  border: 1px solid rgba(255, 127, 0, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 50px rgba(255, 127, 0, 0.2);
  border-radius: 18px;
  max-width: 900px;
  width: min(900px, 94vw);
  max-height: 90vh;
  overflow: auto;
  color: #e7e7e7;
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
  animation: teamCardPop 0.4s ease;
}
.team-profile-card::before,
.team-profile-card::after {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(255, 127, 0, 0.06) 0, transparent 60%);
  filter: blur(50px);
  opacity: 0.7;
  animation: cardGlow 8s ease-in-out infinite alternate;
  pointer-events: none;
}
.team-profile-card::after {
  inset: 10% -40% -20% 20%;
  background: linear-gradient(120deg, rgba(255, 127, 0, 0.16), transparent 50%);
  filter: blur(30px);
  animation-duration: 10s;
}
.team-profile-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #5b2c0d;
  border: 2px solid #ff6600;
  color: #fff;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
}
.team-profile-close:hover {
  background: #3a261a;
  border-color: #ffa733;
  box-shadow: 0 0 12px rgba(255, 127, 0, 0.5);
}
.team-profile-body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  align-items: start;
}
.team-profile-left {
  background: linear-gradient(145deg, rgba(255, 127, 0, 0.15), rgba(20, 20, 20, 0.8));
  border: 1px solid rgba(255, 127, 0, 0.25);
  border-radius: 12px;
  padding: 18px;
  text-align: center;
  box-shadow: inset 0 0 0 1px rgba(255, 127, 0, 0.06);
}
.team-profile-rank {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.team-profile-rank img {
  height: 120px;
  object-fit: contain;
}
.team-profile-rank span {
  font-size: 20px;
  font-weight: 700;
  color: #ffa733;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.team-profile-name {
  margin: 6px 0 12px 0;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.team-profile-avatar {
  width: 180px;
  height: 180px;
  margin: 0 auto 14px auto;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 127, 0, 0.45);
  box-shadow: 0 0 30px rgba(255, 127, 0, 0.35), 0 0 0 6px rgba(255, 127, 0, 0.08);
  position: relative;
  isolation: isolate;
}
.team-profile-avatar::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  background: conic-gradient(from 90deg, rgba(255, 127, 0, 0.15), transparent 45%, rgba(255, 127, 0, 0.15));
  z-index: -1;
  animation: spinGlow 12s linear infinite;
}
.team-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.team-profile-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.team-profile-meta li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, rgba(26, 26, 26, 0.9), rgba(26, 18, 10, 0.9));
  border: 1px solid rgba(255, 127, 0, 0.18);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 15px;
  color: #cfcfcf;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
.team-profile-meta strong {
  color: #ffa733;
  font-size: 16px;
}
.team-profile-right {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.team-profile-block {
  background: linear-gradient(135deg, #171717, #14100c);
  border: 1px solid rgba(255, 127, 0, 0.2);
  border-radius: 12px;
  padding: 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 127, 0, 0.08), 0 10px 26px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.team-profile-block:hover {
  transform: translateY(-4px);
  box-shadow: inset 0 0 0 1px rgba(255, 127, 0, 0.12), 0 16px 32px rgba(0, 0, 0, 0.45);
}
.team-profile-block__title {
  font-size: 18px;
  font-weight: 700;
  color: #ffa733;
  letter-spacing: 0.6px;
  margin-bottom: 12px;
  text-transform: uppercase;
}
.team-profile-tokens {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px, 1fr));
  gap: 10px;
}
.team-profile-token {
  background: radial-gradient(circle at 30% 20%, rgba(255, 127, 0, 0.16), #1d1d1d 55%);
  border: 1px solid rgba(255, 127, 0, 0.25);
  border-radius: 12px;
  padding: 12px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  min-height: 120px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.team-profile-token:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35), 0 0 18px rgba(255, 127, 0, 0.35);
}
.team-profile-token img {
  width: 90%;
  max-width: 110px;
  height: auto;
  max-height: 90px;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(255, 127, 0, 0.25));
  transition: transform 0.3s ease;
}
.team-profile-token:hover img {
  transform: scale(1.05);
}
.team-profile-skills {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.team-profile-skillrow {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 12px;
  align-items: center;
}
.team-profile-skillrow .skill-name {
  font-size: 14px;
  font-weight: 700;
  color: #e7e7e7;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.skill-bar {
  width: 100%;
  height: 14px;
  background: #262626;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 127, 0, 0.15);
}
.skill-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff9a3c, #f07a00, #ff9a3c);
  border-radius: 999px;
  background-size: 200% 100%;
  animation: skillShine 2.6s ease-in-out infinite;
}
.team-profile-empty {
  font-size: 14px;
  color: #b3b3b3;
}
@keyframes teamModalFade {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes teamCardPop {
  from {
    transform: translateY(18px) scale(0.98);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
@keyframes cardGlow {
  0% {
    opacity: 0.4;
    transform: rotate(0deg);
  }
  100% {
    opacity: 0.8;
    transform: rotate(12deg);
  }
}
@keyframes spinGlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes skillShine {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.modal-open {
  overflow: hidden;
}
.team__rank {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.team__rank img {
  height: 60px;
  width: auto;
  object-fit: contain;
  border-radius: 0;
  display: block;
}
.team__rank span {
  font-size: 9px;
  font-weight: 700;
  color: #ffa733;
  letter-spacing: 0.6px;
}
.team__nav {
  background: none;
  border: none;
  font-size: 24px;
  color: #ffa733;
  cursor: pointer;
  transition: all 0.3s ease;
}
.team__nav:hover {
  color: #fff;
  transform: scale(1.1);
}
.team__nav--left {
  margin-top: 45px;
  margin-right: 10px;
}
.team__nav--right {
  margin-top: 45px;
  margin-left: 10px;
}
.team__line {
  margin-top: 15%;
  display: flex;
  align-items: center;
  position: relative;
  height: 2px;
}
.team__line img {
  width: 100%;
}

@media (max-width: 1024px) {
  .team__card {
    width: 230px;
  }
  .team__nav {
    font-size: 22px;
  }
  .team__line img {
    width: 95%;
  }
}
@media (max-width: 768px) {
  .team__card {
    width: 170px;
  }
  .team__nav {
    font-size: 20px;
  }
  .team__cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}
@media (max-width: 430px) {
  .team__cards {
    flex-direction: column;
    align-items: center;
  }
  .team__card {
    width: 150px;
    padding: 16px;
    max-width: 92vw;
  }
  .team__card img {
    width: 90px;
    height: 90px;
  }
  .team__nav {
    font-size: 25px;
  }
  .team__nav--left {
    margin-top: 45px;
    margin-right: 30px;
  }
  .team__nav--right {
    margin-top: 45px;
    margin-left: 30px;
  }
}
@media (max-width: 425px) {
  .team__cards {
    flex-direction: column;
    align-items: center;
  }
  .team__nav {
    font-size: 25px;
  }
  .team__nav--left {
    margin-top: 45px;
    margin-right: 30px;
  }
  .team__nav--right {
    margin-top: 45px;
    margin-left: 30px;
  }
}
.team__cards {
  overflow: hidden;
}
.team-page {
  min-height: 100vh;
  background-color: #141414;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.team-page__hero {
  padding: 80px 20px 20px;
  text-align: center;
}
.team-page__hero h1 {
  margin: 0 0 10px 0;
  font-size: 34px;
}
.team-page__hero p {
  margin: 0 auto 16px auto;
  max-width: 760px;
  color: #b8b8b8;
  line-height: 1.6;
}
.team-page__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 127, 0, 0.5);
  color: #ffa733;
  text-decoration: none;
  background: #1a1a1a;
  font-weight: 700;
  transition: all 0.2s ease;
}
.team-page__back:hover {
  background: rgba(255, 127, 0, 0.08);
  border-color: #ffa733;
  box-shadow: 0 8px 24px rgba(255, 127, 0, 0.15);
}
.team-page__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px 80px;
}
.team-page__grid {
  align-items: stretch;
}
.team-page__card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-sizing: border-box;
  height: 100%;
}
.team__cards {
  align-items: stretch;
}
.team__card {
  box-sizing: border-box;
}
.team-page__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.team-page__card {
  width: 100%;
  text-align: center;
  padding: 22px;
}
@media (max-width: 600px) {
  .team-page__grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
  }
  .team-page__card {
    padding: 16px;
  }
}
@media (max-width: 600px) {
  .team-page__grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
  .team-page__card {
    padding: 18px;
  }
}
@media (max-width: 480px) {
  .team-page__inner {
    padding: 16px 14px 60px;
  }
  .team-page__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .team-page__card {
    padding: 16px;
  }
}
.team-page__role {
  margin: 6px 0 12px 0;
  font-size: 14px;
  color: #cfcfcf;
  text-align: center;
}
.team-page__rank {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #ffa733;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.team-page__rank img {
  width: 96px;
  height: 96px;
  object-fit: contain;
}
.team-page__meta {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #121212;
  border: 1px solid rgba(255, 127, 0, 0.1);
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #b5b5b5;
}
.team-page__meta strong {
  color: #ffa733;
}
.team-page__skills {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.team-page__skillrow {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.team-page__skillrow .skill-name {
  font-size: 14px;
  color: #eaeaea;
}
.team-page__skillbar {
  background: #0d0d0d;
  border-radius: 8px;
  border: 1px solid rgba(255, 127, 0, 0.2);
  overflow: hidden;
  height: 8px;
}
.team-page__skillbar-fill {
  background: linear-gradient(90deg, #ff7f00, #ffa733);
  height: 100%;
  width: 0;
}
.team-page__tokens {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 12px;
}
.team-page__token {
  flex: 0 0 32px;
}
.team-page__token img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}
.team-page__card-footer {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 127, 0, 0.1);
  font-size: 12px;
  color: #9a9a9a;
  text-align: center;
}
.news {
  padding: 80px 20px;
  background-color: #141414;
  color: #fff;
}
.news__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.news__title {
  font-size: 32px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.news__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.news__admin-icon {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 127, 0, 0.4);
  border-radius: 10px;
  padding: 6px;
  background: #1f1f1f;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.news__admin-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.news__admin-icon:hover {
  background-color: #3a261a;
  border-color: #ffa733;
  box-shadow: 0 0 10px rgba(255, 127, 0, 0.4);
}
.news__admin-btn--hidden {
  display: none;
}
.news__admin-btn,
.news__add-btn {
  background-color: #1f1f1f;
  border: 2px solid #ff6600;
  color: #ffffff;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.news__add-btn {
  font-size: 15px;
}
.news__admin-btn:hover,
.news__add-btn:hover {
  background-color: #3a261a;
  border-color: #ffa733;
  box-shadow: 0 0 10px rgba(255, 127, 0, 0.4);
}
.news__slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.news__cards {
  padding-top: 20px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.news__card {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 20px;
  width: 300px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  text-align: left;
  gap: 10px;
}
.news__card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}
.news__card h3 {
  font-size: 18px;
  margin: 0;
}
.news__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: #aaa;
}
.news__tag {
  background: #1f1f1f;
  border: 1px solid #2d2d2d;
  border-radius: 8px;
  padding: 4px 8px;
}
.news__summary {
  margin: 0 0 10px;
  color: #ccc;
  font-size: 14px;
  line-height: 1.5;
  flex: 1;
}
.news__card .news__more {
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  background-color: #5b2c0d;
  border: 2px solid #FF6600;
  color: #ffffff;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.news__card .news__more:hover {
  background-color: #3a261a;
  border-color: #ffa733;
  box-shadow: 0 0 10px rgba(255, 127, 0, 0.4);
}
.news__nav {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: transparent;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  color: #fff;
  transition: 0.6s;
}
.news__nav:hover {
  border-color: #ff6600;
  color: #ff6600;
}
.news__empty {
  text-align: center;
  color: #aaa;
  padding: 40px 0;
  width: 100%;
}
.news__pagination {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.news__pagination .news__dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #555;
  cursor: pointer;
  transition: background 0.2s;
}
.news__pagination .news__dot.active {
  background: #ff6600;
}

@media (max-width: 1024px) {
  .news__card {
    width: 250px;
  }
  .news__nav {
    width: 24px;
    height: 24px;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .news__header {
    align-items: flex-start;
  }
  .news__title {
    font-size: 26px;
  }
}
@media (max-width: 430px) {
  .news__slider {
    flex-direction: column;
  }
}

.news-layer {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 999;
}
.news-layer__card {
  background: #111;
  color: #fff;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 20px;
  width: min(960px, 100%);
  max-height: 90vh;
  overflow: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45);
  position: relative;
}
.news-layer__card--narrow {
  width: min(420px, 100%);
}
.news-layer__card--wide {
  width: min(960px, 100%);
}
.news-layer__card--scroll {
  padding-top: 12px;
}
.news-layer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.news-layer__close {
  background: #1c1c1c;
  border: 1px solid #444;
  color: #fff;
  border-radius: 8px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.news-layer__close:hover {
  border-color: #ff6600;
  color: #ff6600;
}
.news-layer__close--floating {
  position: sticky;
  top: 0;
  margin-left: auto;
}
.news-layer__hint {
  color: #999;
  font-size: 13px;
  margin-bottom: 6px;
}
.news-admin__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.news-admin__grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.news-admin__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #ccc;
  font-size: 14px;
}
.news-admin__field input,
.news-admin__field textarea {
  background: #1a1a1a;
  border: 1px solid #333;
  color: #fff;
  border-radius: 8px;
  padding: 10px;
}
.news-admin__field textarea {
  resize: vertical;
  min-height: 80px;
}
.news-admin__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.news-admin__submit {
  background-color: #5b2c0d;
  border: 2px solid #FF6600;
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.news-admin__submit:hover {
  background-color: #3a261a;
  border-color: #ffa733;
  box-shadow: 0 0 10px rgba(255, 127, 0, 0.4);
}
.news-admin__secondary {
  background: transparent;
  border: 1px solid #555;
  color: #fff;
  border-radius: 8px;
  padding: 10px 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.news-admin__secondary:hover {
  border-color: #ff6600;
  color: #ff6600;
}
.news-admin__error {
  color: #ff8a80;
  font-size: 13px;
}
.news-modal__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.news-modal__tag {
  background: #1f1f1f;
  border: 1px solid #2d2d2d;
  border-radius: 8px;
  padding: 6px 10px;
  color: #ccc;
  font-size: 13px;
}
.news-modal__title {
  font-size: 24px;
  margin: 0 0 8px;
}
.news-modal__summary {
  margin: 0 0 16px;
  color: #ccc;
}
.news-modal__gallery {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-bottom: 16px;
}
.news-modal__photo img {
  width: 100%;
  border-radius: 10px;
}
.news-modal__text p {
  margin-bottom: 12px;
  line-height: 1.6;
  color: #ddd;
}
.news-modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 10px;
}
.news-modal__delete {
  background: #2b0f0f;
  border: 1px solid #ff4d4f;
  color: #fff;
  border-radius: 8px;
  padding: 8px 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-weight: 600;
}
.news-modal__delete:hover {
  background: #3b0f0f;
  box-shadow: 0 0 10px rgba(255, 77, 79, 0.35);
}
.news-page {
  background-color: #141414;
  color: #fff;
  padding-top: 80px;
}
.news-page__title {
  font-size: 36px;
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}
.news-page__list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  gap: 40px;
  width: 70%;
  margin: 0 auto;
}
.news-page__pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.news-page__pagination .news-page__dot {
  font-size: 20px;
  color: #aaa;
  cursor: pointer;
  transition: color 0.3s;
}
.news-page__pagination .news-page__dot.active {
  color: #f90;
  font-weight: bold;
}
.news-page__pagination .news-page__dot:hover {
  color: #f90;
}

.news-card {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.news-card__image {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
}
.news-card__content {
  flex: 1;
  text-align: left;
}
.news-card__category {
  color: #FF6600;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  display: inline-block;
}
.news-card__title {
  font-size: 22px;
  margin-bottom: 10px;
}
.news-card__meta {
  font-size: 14px;
  color: #aaa;
  margin-bottom: 12px;
}
.news-card__summary {
  font-size: 16px;
  margin-bottom: 20px;
  color: #ddd;
  white-space: pre-line;
}
.news-card__button {
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
  background-color: #5b2c0d;
  border: 2px solid #FF6600;
  color: #ffffff;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.news-card__button:hover {
  background-color: #3a261a;
  border-color: #ffa733;
  box-shadow: 0 0 10px rgba(255, 127, 0, 0.4);
}

@media (max-width: 768px) {
  .news-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .news-card__image {
    width: 60%;
    height: auto;
  }
  .news-card__content {
    text-align: center;
    width: 450px;
  }
  .news-card__title {
    font-size: 20px;
  }
  .news-card__summary {
    font-size: 15px;
  }
  .news-page__list {
    width: 100%;
    padding: 0 10px;
  }
}
.line {
  margin-top: 80px;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  position: relative;
  height: 2px;
}

.btnsNews {
  display: flex;
  gap: 10px;
}

@media (max-width: 1024px) {
  .line img {
    width: 95%;
  }
}
@media (max-width: 430px) {
  .news-card__content {
    width: 400px;
  }
  .btnsNews {
    display: flex;
    gap: 10px;
    justify-content: center;
  }
}
@media (max-width: 425px) {
  .news-card__content {
    width: 400px;
  }
  .btnsNews {
    display: flex;
    gap: 10px;
    justify-content: center;
  }
}
@media (max-width: 393px) {
  .news-card__content {
    width: 350px;
  }
  .btnsNews {
    display: flex;
    gap: 10px;
    justify-content: center;
  }
}
@media (max-width: 375px) {
  .news-card__content {
    width: 350px;
  }
  .btnsNews {
    display: flex;
    gap: 10px;
    justify-content: center;
  }
}
@media (max-width: 320px) {
  .news-card__content {
    width: 300px;
  }
}
.advunture {
  text-align: center;
  background-color: #141414;
  color: #fff;
  padding-top: 60px;
}
.advunture__title {
  font-size: 32px;
  margin-bottom: 20px;
  padding-top: 50px;
}
.advunture__description {
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto 40px;
  color: #aaa;
}
.advunture__slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
.advunture__cards {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 50px;
}
.advunture__card {
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 20px;
  width: 300px;
  cursor: pointer;
  transition: transform 0.3s;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.advunture__card:hover {
  transform: scale(1.05);
}
.advunture__card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 15px;
}
.advunture__card h3 {
  font-size: 18px;
  margin: 0;
}
.advunture__nav {
  background: none;
  border: none;
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  transition: color 0.2s;
}
.advunture__nav:hover {
  color: #f90;
}
.advunture__nav--left {
  margin-top: 2%;
  margin-right: 10px;
}
.advunture__nav--right {
  margin-top: 2%;
  margin-left: 10px;
}
.advunture__line {
  margin-top: 15%;
  margin-bottom: 10%;
  display: flex;
  align-items: center;
  position: relative;
  height: 2px;
}
.advunture__line img {
  width: 100%;
}
.advunture__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
.advunture__modal-content {
  background-color: #141414;
  padding: 30px;
  border-radius: 10px;
  max-width: 700px;
  width: 40%;
  position: relative;
  box-shadow: 0 0 20px rgba(255, 127, 0, 0.3);
}
.advunture__modal-content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 20px;
}
.advunture__modal-content h3 {
  font-size: 22px;
  color: #fff;
}
.advunture__modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: #5b2c0d;
  border: 2px solid #FF6600;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.advunture__modal-close:hover {
  background-color: #3a261a;
  border-color: #ffa733;
  box-shadow: 0 0 10px rgba(255, 127, 0, 0.4);
}

@media (max-width: 1024px) {
  .advunture__card {
    width: 230px;
  }
  .advunture__line img {
    width: 95%;
  }
  .advunture__nav--left {
    margin-top: 2%;
    margin-right: 0;
  }
  .advunture__nav--right {
    margin-top: 2%;
    margin-left: 0;
  }
  .advunture__modal-content {
    width: 40%;
  }
}
@media (max-width: 768px) {
  .advunture__card {
    width: 200px;
  }
  .advunture__modal-content {
    width: 50%;
  }
}
@media (max-width: 428px) {
  .advunture__cards {
    flex-direction: column;
  }
  .advunture__modal-content {
    width: 70%;
  }
}
.advunture__edit,
.advunture__delete {
  margin-right: 10px;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
  background-color: #5b2c0d;
  border: 2px solid #FF6600;
  color: #ffffff;
  text-transform: uppercase;
  transition: all 0.3s ease;
}
.advunture__edit:hover,
.advunture__delete:hover {
  background-color: #3a261a;
  border-color: #ffa733;
  box-shadow: 0 0 10px rgba(255, 127, 0, 0.4);
}

.advunture__card h3 {
  margin-bottom: 15px;
}

.contacts {
  background-color: #141414;
  color: #fff;
  padding-top: 60px;
}
.contacts__title {
  font-size: 32px;
  margin-bottom: 50px;
  margin-top: 50px;
  text-align: center;
}
.contacts__info {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-right: 20px;
  padding-left: 20px;
}
.contacts__details {
  flex: 1;
  font-size: 16px;
  line-height: 1.2;
  max-width: 400px;
}
.contacts__map {
  flex: 1;
  min-width: 300px;
}
@media (max-width: 768px) {
  .contacts__info {
    flex-direction: column;
    align-items: center;
  }
  .contacts__details {
    text-align: center;
  }
  .contacts__map {
    width: 100%;
  }
}

.line {
  margin-top: 150px;
  margin-bottom: 50px;
  display: flex;
  align-items: center;
  position: relative;
  height: 2px;
}

@media (max-width: 1024px) {
  .line img {
    width: 95%;
  }
}
@media (max-width: 320px) {
  .contacts__details {
    font-size: 14px;
  }
  .contacts__info {
    padding-right: 10px;
    padding-left: 10px;
  }
}
.footer {
  background-color: #141414;
  color: #fff;
  padding: 60px 20px;
  text-align: center;
  position: relative;
}
.footer__logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 20px;
  text-align: center;
}
.footer__logo img {
  width: 200px;
  height: auto;
  align-items: center;
  object-fit: contain;
}
.footer__line {
  width: 60px;
  height: 2px;
  background-color: #ff6600;
  margin: 0 auto 20px;
}
.footer__copyright {
  font-size: 14px;
  color: #aaa;
  letter-spacing: 0.5px;
}
.footer {
  padding: 60px 20px;
}
@media (max-width: 768px) {
  .footer {
    padding: 40px 14px;
  }
  .footer__logo img {
    width: 160px;
  }
  .footer__logo {
    gap: 8px;
    font-size: 20px;
  }
}
.footer__mortred {
  margin-top: 24px;
  display: flex;
  justify-content: center;
}
.mortred-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  min-height: 72px;
  border-radius: 999px;
  text-decoration: none;
  color: #f3f4f5;
  background: linear-gradient(120deg, #3a3f46, #6f747c, #d0d4d9);
  background-size: 210% 210%;
  border: 1px solid rgba(208, 212, 217, 0.85);
  box-shadow:
    0 14px 42px rgba(0, 0, 0, 0.55),
    0 0 26px rgba(208, 212, 217, 0.35),
    inset 0 0 1px rgba(255, 255, 255, 0.35);
  cursor: pointer;
  isolation: isolate;
  overflow: hidden;
  flex-shrink: 0;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
  animation: mortred-gradient 7s ease-in-out infinite, mortred-soft-glow 2.6s ease-in-out infinite;
}
.mortred-btn::before {
  content: "";
  position: absolute;
  inset: -36%;
  background: radial-gradient(circle at 28% 18%, rgba(208, 212, 217, 0.32), transparent 52%);
  filter: blur(38px);
  opacity: 0.85;
  z-index: 0;
  transition: opacity 0.3s ease;
}
.mortred-btn:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 16px 56px rgba(0, 0, 0, 0.65),
    0 0 38px rgba(208, 212, 217, 0.5);
  filter: saturate(1.03);
}
.mortred-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 12px 38px rgba(0, 0, 0, 0.55);
}
.mortred-btn::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  pointer-events: none;
  z-index: 1;
}
.mortred-btn__text {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 4px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-family: "Vinque", "Georgia", serif;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.35);
  line-height: 1.05;
}
.mortred-btn__label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
}
.mortred-btn__brand {
  font-size: 19px;
  color: #f6f7f8;
  white-space: nowrap;
}
.mortred-btn__shine {
  position: absolute;
  inset: -60% auto -60% -45%;
  width: 42%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  filter: blur(1.2px);
  transform: skewX(-18deg);
  animation: mortred-shine 3s ease-in-out infinite;
  z-index: 2;
  opacity: 0.85;
  pointer-events: none;
}
.mortred-btn--compact {
  gap: 8px;
  padding: 10px 16px;
  min-height: 64px;
}
.mortred-btn--compact .mortred-btn__brand {
  font-size: 17px;
}
.mortred-btn--compact .mortred-btn__label {
  font-size: 11px;
}
.layout-footer-mobile__mortred .mortred-btn {
  width: 100%;
  justify-content: flex-start;
}
.layout-contact .mortred-btn {
  flex-shrink: 0;
}
@keyframes mortred-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes mortred-soft-glow {
  0% {
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.55), 0 0 22px rgba(208, 212, 217, 0.35);
  }
  50% {
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.55), 0 0 30px rgba(208, 212, 217, 0.5);
  }
  100% {
    box-shadow: 0 14px 42px rgba(0, 0, 0, 0.55), 0 0 22px rgba(208, 212, 217, 0.35);
  }
}
@keyframes mortred-shine {
  0% {
    transform: translateX(-120%) skewX(-18deg);
    opacity: 0;
  }
  22% {
    opacity: 1;
  }
  60% {
    transform: translateX(160%) skewX(-18deg);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 900px) {
  .mortred-btn {
    min-height: 70px;
    gap: 9px;
  }
}

@media (max-width: 768px) {
  .mortred-btn {
    width: 100%;
    min-height: 70px;
  }
  .mortred-btn__brand {
    font-size: 18px;
  }
  .mortred-btn__label {
    font-size: 11px;
  }
}

@media (max-width: 430px) {
  .footer__logo {
    font-size: 16px;
  }
  .footer__logo img {
    width: 120px;
  }
}
@media (max-width: 390px) {
  .footer__logo {
    font-size: 16px;
  }
  .footer__logo img {
    width: 120px;
  }
}
@media (max-width: 393px) {
  .footer__logo {
    font-size: 16px;
  }
  .footer__logo img {
    width: 120px;
  }
}
@media (max-width: 375px) {
  .footer__logo {
    font-size: 18px;
  }
  .footer__logo img {
    width: 190px;
  }
}
@media (max-width: 320px) {
  .footer__logo {
    font-size: 16px;
  }
  .footer__logo img {
    width: 150px;
  }
}
.container-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.container-icons a {
  display: block;
  width: 40px;
  height: 40px;
}
.container-icons a img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: contain;
  transition: transform 0.2s ease;
  color: white;
}
@media (max-width: 900px) {
  .team-profile-body {
    grid-template-columns: 1fr;
  }
  .team-profile-avatar {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 600px) {
  .team-profile-card {
    padding: 18px 14px;
    width: 94vw;
    max-height: 90vh;
    overflow-y: auto;
  }
  .team-profile-block__title {
    font-size: 16px;
  }
  .team-profile-token {
    min-height: 96px;
  }
  .team-profile-modal {
    padding: 12px;
  }
  .team-profile-avatar {
    width: 130px;
    height: 130px;
  }
  .team-profile-tokens {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  }
}
.container-icons a img:hover {
  transform: scale(1.4);
}

@media (max-width: 425px) {
  .container-icons a img {
    width: 90%;
  }
  .container-icons {
    right: 5px;
  }
}
@media (max-width: 390px) and (max-width: 393px) {
  .container-icons a img {
    width: 90%;
  }
  .container-icons {
    right: 5px;
  }
}
.register-page {
  background: radial-gradient(circle at 20% 20%, rgba(255, 127, 0, 0.08), transparent 25%),
    radial-gradient(circle at 80% 10%, rgba(255, 127, 0, 0.06), transparent 25%),
    #141414;
  min-height: 100vh;
  color: #fff;
}
.register {
  max-width: 1100px;
  margin: 0 auto;
  padding: 140px 20px 100px;
  text-align: center;
}
.register__header {
  margin-bottom: 30px;
}
.register__eyebrow {
  display: inline-block;
  padding: 6px 12px;
  background: rgba(255, 127, 0, 0.12);
  border: 1px solid rgba(255, 127, 0, 0.25);
  border-radius: 999px;
  color: #ffa733;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  font-size: 13px;
}
.register__title {
  margin: 14px 0 8px;
  font-size: 32px;
  letter-spacing: 0.3px;
}
.register__subtitle {
  margin: 0 auto;
  max-width: 620px;
  color: #cfcfcf;
  line-height: 1.5;
}
.register__card {
  max-width: 620px;
  margin: 0 auto;
  background: #141414;
  border: 1px solid rgba(255, 127, 0, 0.2);
  border-radius: 18px;
  padding: 28px 26px;
  position: relative;
  box-shadow: none;
  overflow: hidden;
}
.register__form {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  z-index: 1;
}
.register__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}
.register__field span {
  font-weight: 700;
  letter-spacing: 0.2px;
  color: #f0f0f0;
}
.register__field input,
.register__field textarea {
  background: #111;
  border: 1px solid rgba(255, 127, 0, 0.2);
  border-radius: 12px;
  padding: 12px 14px;
  color: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.register__field input:focus,
.register__field textarea:focus {
  outline: none;
  border-color: #ffa733;
  box-shadow: 0 0 12px rgba(255, 127, 0, 0.25);
  transform: translateY(-1px);
}
.register__actions {
  margin-top: 4px;
  display: flex;
  justify-content: center;
}
.register__submit {
  background-color: #5b2c0d;
  border: 2px solid #ff6600;
  color: #ffffff;
  padding: 12px 26px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 0 0 1px rgba(255, 127, 0, 0.15);
}
.register__submit:hover {
  background-color: #3a261a;
  border-color: #ffa733;
  box-shadow: 0 10px 22px rgba(255, 127, 0, 0.25);
  transform: translateY(-1px);
}
.register__submit:active {
  transform: translateY(0);
}
.register__message {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
  text-align: center;
}
.register__message--error {
  background: rgba(255, 81, 47, 0.1);
  color: #ff9b7a;
  border: 1px solid rgba(255, 81, 47, 0.35);
  box-shadow: 0 0 20px rgba(255, 81, 47, 0.1);
}
.register__message--shake {
  animation: registerShake 0.45s ease;
}
@keyframes registerShake {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-6px);
  }
  50% {
    transform: translateX(6px);
  }
  75% {
    transform: translateX(-4px);
  }
  100% {
    transform: translateX(0);
  }
}
@media (max-width: 600px) {
  .register {
    padding-top: 120px;
  }
  .register__card {
    padding: 22px 20px;
  }
  .register__title {
    font-size: 24px;
  }
  .register__subtitle {
    font-size: 14px;
  }
}
:root {
  color-scheme: dark;
}

body {
  background-color: #141414;
  color: #fff;
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, sans-serif;
}

main {
  overflow-x: hidden;
}

/* Perf tweaks */
.news__image {
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  width: 100%;
}

.wrapperProjects__card .project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  display: block;
}

.contacts__map iframe {
  width: 100%;
  min-height: 400px;
  border: 0;
  background: #0f0f0f;
}
