* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Исправление для Retina дисплеев MacBook */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

/* Корректное отображение изображений на Retina */
img {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  max-width: 100%;
  height: auto;
}

/* Исправление для SVG на Retina */
svg {
  shape-rendering: geometricPrecision;
}

h1,
h2,
h3 {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #000;
  display: block;
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  top: 0;
  left: 0;
  padding: 0;
  background: #131028 url(../img/bg.png) top no-repeat;
  width: 100%;
  color: #C6C5DE;
  background-size: 100% 100%;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

html,
body {
  width: 100vw;
  overflow-x: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Дополнительная оптимизация для Retina дисплеев */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  body {
    -webkit-font-smoothing: subpixel-antialiased;
  }
  
  img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

::-webkit-scrollbar {
  width: 5px;
  background-color: #fff;
  height: 5px;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: rgb(255 72 0 / 64%);
  width: 10px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(92, 26, 0, 0.64);
  border-radius: 10px;
  background-color: #fff;
}

@font-face {
  font-family: "SF Pro";
  src: url("../fonts/SF-Pro-Display-Medium.otf") format("opentype");
  font-weight: 500;
}


header{
  width: 100%;
  height: auto;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  border: 1px solid #242249;
background: rgba(21, 18, 44, 0.10);
backdrop-filter: blur(305.5px);
}
.container{
  width: 100%;
  max-width: 1440px;
  display: block;
  margin: 0 auto;
}
.header_items {
  display: flex;
  align-items: center;
  padding-top: 28px;
  padding-bottom: 28px;
}
.header_item:first-child {
  flex-shrink: 0;
}
.header_item:last-child {
  margin-left: auto;
  min-width: 0;
}
.header_item_right {
  display: flex;
  align-items: center;
  gap: 48px;
}
.header_logo {
  vertical-align: middle;
  cursor: pointer;
  display: inline-block;
  flex-shrink: 0;
}
.header_logo img {
  display: block;
  width: auto;
  height: 42px;
  max-width: none;
}
.header_navs {
  display: flex;
  align-items: center;
  gap: 44px;
  list-style: none;
}
.header_nav a{

}

.header_nav a{
  color: #C6C5DE;
leading-trim: both;
text-edge: cap;
font-family: "Inter", sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: normal;
cursor: pointer;
transition: all .5s;
}
.header_nav a:hover{
  color: #F631FC;
}
.header_powered {
  outline: none;
  border: none;
  cursor: pointer;
  width: fit-content;
  transition: all .5s;
  color: #A8A2B2;
leading-trim: both;
text-edge: cap;
font-family: "Inter", sans-serif;
padding: 12px 32px;
border-radius: 46px;
border: 1px solid rgba(168, 162, 178, 0.25);
background: rgba(36, 35, 58, 0.50);
font-size: 12px;
font-style: normal;
font-weight: 400;
line-height: 110%; /* 250% */
}




main{
  position: relative;
}
.intro {
  width: 100%;
  height: auto;
  margin-top: 210px;
}
.intro_blocks {
  display: flex;
  align-items: center;
}
.intro_blocks:first-child{
  position: relative;
}
.intro_block:last-child {
  margin-left: auto;
  width: 709px;
  background: var(--intro-bg, url(../img/intro_bg.png)) center no-repeat;
}
.intro_block_money{
  position: absolute;
  left: -250px;
  top: -50px;
  z-index: 0; /* под монетой */
  max-width: 850px;
  width: 100%;
}
.intro_block_image {
  vertical-align: middle;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  /* Красивые кольца с ярким свечением как у текста */
  border: none;
  box-shadow:
    /* Мягкий внутренний переход */
    inset 0 0 0 1px rgba(246,49,252,0.3),
    /* Первое кольцо - #F631FC с переходом */
    0 0 0 14px rgba(246,49,252,0.12),
    0 0 0 16px rgba(255,255,255,0.18),
    /* Второе кольцо - светлее для перехода */
    0 0 0 28px rgba(246,49,252,0.08),
    0 0 0 30px rgba(255,255,255,0.12),
    /* Яркое свечение как у intro_block_coin */
    0 0 32px rgba(250, 100, 255, 0.52),
    0 0 60px rgba(250, 100, 255, 0.35),
    0 16px 50px rgba(246,49,252,0.3);
}
.intro_block_teg {
  color: #FFF;
leading-trim: both;
text-edge: cap;
font-family: "Inter", sans-serif;
padding: 12px 32px;
font-size: 16px;
font-style: normal;
font-weight: 600;
line-height: 110%; /* 187.5% */
border-radius: 46px;
width: fit-content;
background: #F631FC;
}
.intro_block_coin{
  leading-trim: both;
text-edge: cap;
text-shadow: 0 0 32px rgba(250, 100, 255, 0.52);
font-family: "Inter", sans-serif;
background: var(--Style, linear-gradient(90deg, #F937FF 0%, #FB88FF 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
font-size: 68px;
font-style: normal;
margin-top: 10px;
font-weight: 700;
line-height: 1.3;
padding-bottom: 8px;
}
.intro_block_tittle {
  margin-top: 28px;
  color: #FFF;
leading-trim: both;
text-edge: cap;
font-family: "Inter", sans-serif;
font-size: 64px;
font-style: normal;
font-weight: 700;
line-height: 1.3; /* Increased to prevent descender clipping */
overflow: visible;
}
.intro_block_tittle span{
background: var(--Style, linear-gradient(90deg, #F937FF 0%, #FB88FF 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
leading-trim: both;
text-edge: cap;
font-family: Inter;
font-size: 64px;
font-style: normal;
font-weight: 700;
line-height: 1.3;
}
.intro_block_subtittle {
color: #9190AD;
leading-trim: both;
text-edge: cap;
font-family: "Inter", sans-serif;
margin-top: 32px;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 110%; /* 155% */
letter-spacing: 0.2px;
}
.intro_block_subtittle span{
  background: var(--Style, linear-gradient(90deg, #F937FF 0%, #FB88FF 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
leading-trim: both;
text-edge: cap;
font-family: "Inter", sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 110%;
letter-spacing: 0.2px;
}
.intro_block_adress {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.intro_block_adress_tittle {
color: #A8A2B2;
leading-trim: both;
text-edge: cap;
font-family: "Inter", sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 110%; /* 187.5% */
}
.intro_block_adress_copy {
border-radius: 46px;
border: 1px solid #A8A2B2;
background: #24233A;
padding: 12px 32px;
display: flex;
gap: 12px;
width: fit-content;
align-items: center;
width: 202px;
overflow: hidden;
}
.intro_block_adress_copy_input {
  color: #FFF;
leading-trim: both;
text-edge: cap;
font-family: "Inter", sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 110%; /* 187.5% */
background: transparent;
outline: none;
border: none;
width: 100%;
}
.intro_block_adress_copy_input::placeholder{
    color: #FFF;

}
.intro_block_adress_copy_icon {
  vertical-align: middle;
  cursor: pointer;
  transition: all .5s;
}
.intro_block_adress_copy_icon:hover{
  opacity: .5;
}
.intro_block_adress_copy {
  position: relative;
}
.copy-notification {
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%) translateX(-10px);
  background: #2DE37D;
  color: #FFF;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 2px 8px rgba(45, 227, 125, 0.3);
  z-index: 100;
  font-family: "Manrope", sans-serif;
}
.copy-notification.show {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.intro_block_progress {
 width: 100%;
 margin-top: 40px; 
}
.intro_block_progress_texts {
  display: flex;
  align-items: center;
}
.intro_block_progress_text {
leading-trim: both;
text-edge: cap;
font-family: "Inter", sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 110%; /* 187.5% */
}
.intro_block_progress_text:first-child{
color: #2DFF8A;
}
.intro_block_progress_text:last-child{
color: #FF2D2D;
margin-left: auto;
}
.intro_block_progress_rect {
  width: 100%;
  height: 12px;
  border-radius: 51px;
  margin-top: 16px;
  background: #24233A;
  overflow: hidden;
  position: relative;
}
.intro_block_progress_rect_now {
  border-radius: 62px;
  background: linear-gradient(90deg, #F631FC 0%, #FF6BF7 50%, #F631FC 100%);
  background-size: 200% 100%;
  width: 87%;
  height: 100%;
  position: relative;
  animation: progressPulse 3s ease-in-out infinite, progressFlow 4s linear infinite, progressCompetition 20s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(246, 49, 252, 0.6), 
              0 0 40px rgba(246, 49, 252, 0.4),
              inset 0 0 20px rgba(255, 255, 255, 0.1);
  transition: width 3s ease-in-out;
}

@keyframes progressPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(246, 49, 252, 0.6), 
                0 0 40px rgba(246, 49, 252, 0.4),
                inset 0 0 20px rgba(255, 255, 255, 0.1);
  }
  50% {
    box-shadow: 0 0 30px rgba(246, 49, 252, 0.8), 
                0 0 60px rgba(246, 49, 252, 0.6),
                inset 0 0 30px rgba(255, 255, 255, 0.2);
  }
}

@keyframes progressFlow {
  0% {
    background-position: 0% 0%;
  }
  100% {
    background-position: 200% 0%;
  }
}

@keyframes progressCompetition {
  0%, 100% {
    width: 87%;
  }
  33% {
    width: 86.97%;
  }
  66% {
    width: 87.05%;
  }
}

.intro_block_progress_rect_lost {
  margin-top: 16px;
  color: #9890A9;
leading-trim: both;
text-edge: cap;
text-align: right;
font-family: "Inter", sans-serif;
font-size: 12px;
font-style: normal;
font-weight: 500;
line-height: 110%; /* 250% */
}
.intro_block_buttons {
  margin-top: 32px;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.intro_block_button {
  outline: none;
  border: none;
  cursor: pointer;
  width: 100%;
  height: auto;
  padding: 23px 0px;
  border-radius: 16px;
  border: 1px solid rgba(107, 105, 146, 0.40);
  color: #FFF;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  background: linear-gradient(180deg, #2DE37D 0%, #157841 100%);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(45, 227, 125, 0.2);
}
.intro_block_button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.intro_block_button:hover::after {
  width: 500px;
  height: 500px;
}
.intro_block_button:first-child{
  background: linear-gradient(180deg, #2DE37D 0%, #157841 100%);
  box-shadow: 0 4px 15px rgba(45, 227, 125, 0.2);
}
.intro_block_button:last-child{
  background: linear-gradient(180deg, #E32D2D 0%, #781515 100%);
  box-shadow: 0 4px 15px rgba(227, 45, 45, 0.2);
}
.intro_block_button:hover{
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(45, 227, 125, 0.4);
}
.intro_block_button:last-child:hover{
  box-shadow: 0 8px 25px rgba(227, 45, 45, 0.4);
}
.intro_block_button:active {
  transform: translateY(-1px);
}
.intro_block_info {
  margin-top: 32px;
  color: #9190AD;
leading-trim: both;
text-edge: cap;
font-family: "Inter", sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 110%; /* 137.5% */
letter-spacing: 0.16px;
max-width: 624px;
}

.intro_block_info span{
  background: var(--Style, linear-gradient(90deg, #F937FF 0%, #FB88FF 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
leading-trim: both;
text-edge: cap;
font-family: "Inter", sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 22px;
letter-spacing: 0.16px;
}





.informations {
  width: 100%;
  height: auto;
  margin-top: 120px;
  margin-bottom: 124px;
}
.informations_blocks {
  display: grid;
  grid-template-columns: calc(50% - 20px) 50%;
  grid-column-gap: 20px;
  width: 100%;
}
.informations_block {
  width: 100%;
  height: 100%;
}
.informations_block:first-child .informations_rect_content{
  padding-bottom: 0px;
}
.informations_rect {
  width: 100%;
  height: 100%;
    border-radius: 25px;
border: 1px solid rgba(97, 95, 129, 0.50);
background: rgba(27, 26, 48, 0.75);
}
.informations_rect_content {
  padding: 36px 32px;
}
.informations_rect_recent {
  color: #9190AD;
leading-trim: both;
text-edge: cap;
font-family: "Inter", sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 110%; /* 110% */
letter-spacing: 0.2px;
}
.informations_rect_items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  height: 100%;
  max-height: 340px;
  overflow-y: auto;
}

.informations_rect_items {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE и Edge */
}

.informations_rect_items::-webkit-scrollbar {
  display: none; /* Chrome, Safari и Opera */
}

.informations_rect_item {
  width: 100%;
  height: auto;
  border-radius: 14px;
border: 1px solid #454367;
background: #2A2841;
}
.informations_rect_item_content {
  padding: 20px;
  display: flex;
  align-items: center;
}
.informations_rect_item_logo {
  width: 44px;
height: 44px;
object-fit: cover;
border-radius: 100px;
}
.informations_rect_item_texts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-left: 12px;
}
.informations_rect_item_texts_adress {
  color: #FFF;
leading-trim: both;
text-edge: cap;
font-family: "Manrope", sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 110%; /* 110% */
letter-spacing: 0.2px;
display: flex;
align-items: center;
gap: 12px;
}
.informations_rect_item_texts_yes {
color: #2DFF8A;
}
.informations_rect_item_texts_text {
  color: #9190AD;
leading-trim: both;
text-edge: cap;
font-family: "Inter", sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 110%; /* 137.5% */
letter-spacing: 0.16px;
}
.informations_rect_item_vote {
margin-left: auto;
color: #fff;
text-align: right;
leading-trim: both;
text-edge: cap;
font-family: "Manrope", sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 110%; /* 110% */
letter-spacing: 0.2px;
}
.informations_rect_item_vote_green {
  color: #2DFF8A;
}
.informations_rect_item_texts_no {
  color: #FF2D2D;
}
.informations_rect_item_vote_red {
  color: #FF2D2D;
}
.informations_rect_why {
  color: #FFF;
leading-trim: both;
text-edge: cap;
font-family: "Manrope", sans-serif;
font-size: 24px;
font-style: normal;
font-weight: 600;
line-height: 110%; /* 91.667% */
letter-spacing: 0.24px;
}
.informations_rect_lists {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 32px;
  padding-left: 32px;
}
.informations_rect_list {
  color: #D1D0E2;
leading-trim: both;
text-edge: cap;
font-family: "Manrope", sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 31px; /* 155% */
letter-spacing: 0.2px;
}
.informations_rect_list span{
  background: linear-gradient(90deg, #F937FF 0%, #FB88FF 100%);
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
leading-trim: both;
text-edge: cap;
font-family: "Manrope", sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 600;
line-height: 110%;
letter-spacing: 0.2px;
}



footer{
 width: 100%;
 height: auto; 
 padding-bottom: 36px;
 margin-top: auto;
}
.footer_items {
  display: flex;
  align-items: center;
}
.footer_item:last-child {
  margin-left: auto;
}

.footer_item_text {
  margin-top: 20px;
  color: #9190AD;
leading-trim: both;
text-edge: cap;
font-family: "Manrope", sans-serif;
max-width: 611px;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 110%; /* 156.25% */
letter-spacing: 0.16px;
}

@media (max-width: 499px) {
  .footer_item_text {
    font-size: 14px;
    line-height: 140%;
    max-width: 100%;
  }
}
.footer_item_icons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.footer_item_icon img{
  vertical-align: middle;
  cursor: pointer;
  transition: all .5s;
}
.footer_item_icon img:hover{
opacity: .5;
}
.footer_item_icon img{
  width: auto;
  height: 50px;
  max-width: 200px;
}
.footer_copy {
  margin-top: 52px;
  color: #686880;
text-align: center;
leading-trim: both;
text-edge: cap;
font-family: "Manrope", sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 110%; /* 156.25% */
letter-spacing: 0.16px;
}

@media (max-width: 499px) {
  .footer_copy {
    font-size: 14px;
    margin-top: 32px;
    line-height: 140%;
  }
}



.about_main {
  width: 100%;
  margin-top: 134px;
  margin-bottom: 73px;
}
.about_main_tittle {
  color: #FFF;
text-align: center;
leading-trim: both;
text-edge: cap;
font-family: "Manrope", sans-serif;
font-size: 32px;
font-style: normal;
font-weight: 700;
line-height: 110%; /* 78.125% */
}
.about_main_rect {
  width: 100%;
  max-width: 1106px;
  display: block;
  margin: 0 auto;
  margin-top: 44px;
  border-radius: 25px;
border: 1px solid rgba(97, 95, 129, 0.50);
background: rgba(27, 26, 48, 0.75);
}
.about_main_rect_content {
  padding: 44px 36px;
  padding-right: 65px;
}
.about_main_rect_texts {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 41px;
}
.about_main_rect_text {
  color: #D1D0E2;
leading-trim: both;
text-edge: cap;
font-family: "Inter", sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 110%; /* 110% */
letter-spacing: 0.2px;
}

.about_main_rect_text span{
  background: var(--Style, linear-gradient(90deg, #F937FF 0%, #FB88FF 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
leading-trim: both;
text-edge: cap;
font-family: "Inter", sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 110%;
letter-spacing: 0.2px;
}



.rewards_up_items {
  display: flex;
  flex-direction: column;
  gap: 24px;
  list-style: none;
}
.rewards_up_item {
  color: #D1D0E2;
leading-trim: both;
text-edge: cap;
font-family: "Inter", sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 110%; /* 110% */
letter-spacing: 0.2px;
}
.rewards_up_item_bold{
font-weight: 500;
}

.rewards_up_item_italic{
  color: #D1D0E2;
leading-trim: both;
text-edge: cap;
font-family: "Inter", sans-serif;
font-size: 20px;
font-style: italic;
font-weight: 500;
line-height: 110%;
letter-spacing: 0.2px;
}
.rewards_up_item_white{
  color: #FFF;
leading-trim: both;
text-edge: cap;
font-family: "Inter", sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 110%;
letter-spacing: 0.2px;
}
.rewards_bottom {
  width: 100%;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid #242249;
}
.rewards_bottom_tittle {
  color: #D1D0E2;
leading-trim: both;
text-edge: cap;
font-family: "Inter", sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 110%; /* 110% */
letter-spacing: 0.2px;
}
.rewards_bottom_items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 20px;
  margin-top: 32px;
}
.rewards_bottom_item {
  color: #D1D0E2;
leading-trim: both;
text-edge: cap;
font-family: "Inter", sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 110%; /* 150% */
letter-spacing: 0.18px;
}

.rewards_bottom_info{
  color: #A8A7B4;
leading-trim: both;
text-edge: cap;
font-family: "Inter", sans-serif;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: 110%; /* 142.857% */
letter-spacing: 0.14px;
margin-top: 32px;
}






.modal {
  display: none;
}
.modal_overlay {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 15;
  background: rgba(17, 13, 26, 0);
  backdrop-filter: blur(0px);
  transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1), backdrop-filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal[style*="display: block"] .modal_overlay {
  background: rgba(17, 13, 26, 0.25);
  backdrop-filter: blur(5px);
}
.modal_rect {
  width: 733px;
  height: auto;
  border-radius: 37px;
  border: 1px solid rgba(97, 95, 129, 0.50);
  background: rgba(27, 26, 48, 0.75);
  backdrop-filter: blur(22.5px);
  position: fixed;
  left: calc(50% - 367px);
  top: 50%;
  z-index: 16;
  /* Крутая современная анимация */
  opacity: 0;
  transform: translateY(-50%) scale(0.9);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal[style*="display: block"] .modal_rect {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}
.modal_rect_content {
  padding: 36px;
  padding-top: 39.5px;
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 90vh;
  overflow-y: auto;
}

.modal_rect_content {
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE и Edge */
}

.modal_rect_content::-webkit-scrollbar {
  display: none; /* Chrome, Safari и Opera */
}


.modal_rect_close {
position: absolute;
right: 24px;
top: 24px;
cursor: pointer;
transition: all .5s;
z-index: 1;
}
.modal_rect_close:hover{
  opacity: .5;
}
.modal_rect_up {
  display: flex;
  align-items: center;
}
.modal_rect_up_logo {
  width: 72px;
height: 72px;
border-radius: 100px;
object-fit: cover;
}
.modal_rect_up_texts {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-left: 16px;
}
.modal_rect_up_text_voting {
  color: #9190AD;
leading-trim: both;
text-edge: cap;
font-family: "Inter", sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 110%; /* 193.75% */
letter-spacing: 0.16px;
}
.modal_rect_up_text_tittle {
  color: #FFF;
leading-trim: both;
text-edge: cap;
font-family: "Manrope", sans-serif;
font-size: 32px;
font-style: normal;
font-weight: 700;
line-height: 110%; /* 209.375% */
}
.modal_rect_up_text_adress{
  color: #9190AD;
leading-trim: both;
text-edge: cap;
font-family: "Manrope", sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 110%; /* 193.75% */
letter-spacing: 0.16px;


}
.modal_confirm_text {
  margin-top: 32px;
  text-align: center;
  color: #FFF;
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: -0.5px;
}
.modal_confirm_vote {
  background: linear-gradient(90deg, #F937FF 0%, #FB88FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.modal_confirm_dots {
  display: inline-block;
  margin-left: 2px;
}
.modal_confirm_dots span {
  animation: dotBounce 2s ease-in-out infinite;
  display: inline-block;
  background: linear-gradient(90deg, #F937FF 0%, #FB88FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.modal_confirm_dots span:nth-child(1) {
  animation-delay: 0s;
}
.modal_confirm_dots span:nth-child(2) {
  animation-delay: 0.3s;
}
.modal_confirm_dots span:nth-child(3) {
  animation-delay: 0.6s;
}
@keyframes dotBounce {
  0%, 70%, 100% {
    transform: translateY(0);
    opacity: 0.4;
  }
  35% {
    transform: translateY(-8px);
    opacity: 1;
  }
}
.modal_rect_main {
  width: 100%;
  height: auto;
  margin-top: 32px;
  border-radius: 12px;
border: 1px solid rgba(97, 95, 129, 0.50);
background: #24223B;
}
.modal_rect_main_content {
  padding: 20px;
  padding-bottom: 22px;
}
.modal_rect_main_tittle {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #FFF;
leading-trim: both;
text-edge: cap;
font-family: "Manrope", sans-serif;
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 110%; /* 120% */
}
.modal_rect_main_tittle svg{
  vertical-align: middle;
}
.modal_xp_text {
  background: linear-gradient(90deg, #F937FF 0%, #FB88FF 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.modal_rect_main_text {
  margin-top: 20px;
  color: #9190AD;
leading-trim: both;
text-edge: cap;
font-family: "Inter", sans-serif;
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 110%; /* 137.5% */
letter-spacing: 0.16px;
}
.modal_rect_text {
  margin-top: 32px;
  color: #BCBBCF;
leading-trim: both;
text-edge: cap;
font-family: "Inter", sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 110%; /* 122.222% */
letter-spacing: 0.18px;
}
.modal_rect_text_pink {
  background: var(--Style, linear-gradient(90deg, #F937FF 0%, #FB88FF 100%));
background-clip: text;
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
leading-trim: both;
text-edge: cap;
font-family: "Inter", sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 110%;
letter-spacing: 0.18px;
}
.modal_rect_text_utc {
  color: #FFF;
leading-trim: both;
text-edge: cap;
font-family: "Inter", sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 500;
line-height: 110%;
letter-spacing: 0.18px;
}
.modal_rect_buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  width: 100%;
  height: auto;
}
.modal_rect_button {
  outline: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  height: auto;
  padding: 23px 0px;
  border-radius: 16px;
  border: 1px solid rgba(107, 105, 146, 0.40);
  background: rgba(71, 68, 107, 0.40);
  color: #FFF;
  text-align: center;
  leading-trim: both;
  text-edge: cap;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%;
  position: relative;
  overflow: hidden;
}
.modal_rect_button::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}
.modal_rect_button:hover::before {
  width: 400px;
  height: 400px;
}
.modal_rect_button:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(246, 49, 252, 0.3);
}
.modal_rect_button:active {
  transform: translateY(0px);
}

.modal_rect_button:first-child{
  background: #F631FC;
}
.modal_rect_text {
  margin-top: 32px;
  color: #BCBBCF;
leading-trim: both;
text-edge: cap;
font-family: "Inter", sans-serif;
font-size: 18px;
font-style: normal;
font-weight: 400;
line-height: 110%; /* 122.222% */
letter-spacing: 0.18px;
}

#modalNo #buttonYes {
  background: linear-gradient(180deg, #E32D2D 0%, #781515 100%);
}

/* Анимированные блоки справа внизу */
.animated_blocks_container {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 300px;
  height: 400px;
  pointer-events: none;
  z-index: 5;
  overflow: hidden;
}

.animated_blocks {
  position: relative;
  width: 100%;
  height: 100%;
}

.animated_block {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 14px;
  border: 1px solid #454367;
  background: #2A2841;
  padding: 20px;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
  cursor: pointer;
}

.animated_block.show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.animated_block.hide {
  opacity: 0;
  transform: translateY(-20px) scale(0.9);
}

.animated_block_content {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 12px;
}

.animated_block_logo {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 100px;
  flex-shrink: 0;
}

.animated_block_texts {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 0;
}

.animated_block_address {
  color: #FFF;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  white-space: nowrap;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.animated_block_coin_name {
  color: #BCBBCF;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 16px;
  letter-spacing: 0.14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.animated_block_vote {
  margin-left: auto;
  color: #2DFF8A;
  text-align: right;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 18px;
  letter-spacing: 0.16px;
  flex-shrink: 0;
}

.animated_block_vote.negative {
  color: #FF2D2D;
}

.animated_block_vote_yes {
  color: #2DFF8A;
}

.animated_block_vote_no {
  color: #FF2D2D;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .animated_blocks_container {
    right: 10px;
    bottom: 10px;
    width: 250px;
    height: 300px;
  }
  
  .animated_block {
    max-width: 230px;
    padding: 10px;
  }
  
  .animated_block_logo {
    width: 36px;
    height: 36px;
  }
  
  .animated_block_address {
    font-size: 14px;
  }
  
  .animated_block_coin_name {
    font-size: 12px;
  }
  
  .animated_block_vote {
    font-size: 14px;
  }
}



@media (min-width:320px) and (max-width:499px){
  .modal_rect{
    width: calc(100% - 32px);
    left: 16px;
  }
  .intro_block_coin{
    font-size: 22px;
    text-align: center;
    margin-top: 8px;
    padding-bottom: 5px;
    margin-bottom: 0px;
  }
  .modal_rect_up{
    flex-direction: column;
    gap: 20px;
  }
  .modal_rect_up_text_voting{
    text-align: center;
    font-size: 14px;
  }
  .modal_rect_up_text_tittle{
    text-align: center;
    font-size: 18px;
  }
  .modal_rect_up_texts{
    margin-left: 0px;
  }
  .modal_rect_up_text_adress{
    font-size: 14px;
    text-align: center;
    word-break: break-all;
    
  }
  .modal_rect_content{
    padding: 18px;
  }
  .modal_confirm_text{
    font-size: 20px;
    margin-top: 24px;
  }
  .modal_rect_main_tittle{
    font-size: 18px;
  }
  .modal_rect_text{
    font-size: 16px;
  }
  .modal_rect_text span{
    font-size: 16px;
  }
  .modal_rect_button{
    font-size: 16px;
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .container{
    padding-left: 16px;
    padding-right: 16px;
  }
  .about_main_tittle{
    font-size: 25px;
  }
  .about_main_rect_text{
    font-size: 16px;
  }
  .about_main_rect_text span{
    font-size: 16px;
  }
  .rewards_up_item{
    font-size: 16px;
  }
  .rewards_up_item span{
    font-size: 16px;
  }
  .rewards_bottom_item{
    font-size: 16px;
  }
  .rewards_bottom_tittle{
    font-size: 18px;
  }
  .about_main_rect_content {
    padding: 22px 18px;
    padding-right: 32.5px;
}
  .header_items {
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .header_logo img{
    height: 24px;
  }

  .header_item:last-child {
    margin-left: 20px !important;
  }
  .header_item_right {
    gap: 10px;
    flex-wrap: nowrap;
  }
  .header_navs{
    gap: 16px;
  }
  .header_nav a{
    font-size: 14px;
    white-space: nowrap;
  }
  .header_powered{
    margin: 0 auto;
    display: block;
  }
  .intro{
    margin-top: 150px;
  }
  .intro_block_teg{
    font-size: 16px;
    padding: 6px 16px;
    display: block;
    margin: 0 auto;
  }
  .intro_block_tittle{
    font-size: 45px;
    text-align: center;
    line-height: 1.3;
  }
  .intro_block_tittle span{
    font-size: 45px;
    line-height: 1.3;
  }
  .intro_block_subtittle{
    font-size: 16px;
    text-align: center;
  }
  .intro_block_subtittle span{
    font-size: 16px;
  }
  .intro_block_money{
    display: none;
  }
  .intro_blocks{
    flex-direction: column-reverse;
    gap: 50px;
  }
  .intro_block_buttons{
    flex-direction: column;
    gap: 20px;
  }
  .intro_block:last-child{
    width: 100%;
  }
  .intro_block_adress_copy{
    padding: 6px 16px;
  }
  .informations_blocks{
    grid-template-columns: 100%;
    gap: 30px;
  }
  .intro_block_adress{
    justify-content: center;
  }
  .footer_items{
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  .intro_block_progress_text{
    font-size: 14px;
  }
  .intro_block_button{
    padding-top: 15px;
    padding-bottom: 15px;
    font-size: 16px;
  }
  .intro_block_info{
    font-size: 14px;
  }
  .informations_rect_content {
    padding: 18px 16px;
}
.informations_rect_recent{
  font-size: 18px;
}
.informations_rect_item_content{
  padding: 10px;
}
.informations_rect_item_texts_adress{
  font-size: 14px;
}
.informations_rect_item_logo{
  width: 30px;
    height: 30px;
}
.informations_rect_item_texts_text{
  font-size: 14px;
}
.informations_rect_item_vote{
  font-size: 16px;
}
.informations_rect_why{
  font-size: 20px;
}
.informations_rect_list{
  font-size: 16px;
}
.informations_rect_list span{
  font-size: 16px;
}
.footer_item_icons{
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer_item:last-child {
  margin-left: 0px;
}
.footer_item_text{
  text-align: center;
  font-size: 14px;
  line-height: 140%;
}
.footer_item_icon img{
  width: 100%;
  max-width: 180px;
  height: auto !important;
  object-fit: contain;
}
.footer_item_icon {
  width: 180px;
  display: block;
}
}



@media (min-width:500px) and (max-width:799px){
.intro_block_coin{
    font-size: 25px;
    text-align: center;
    margin-top: 8px;
    padding-bottom: 5px;
    margin-bottom: 0px;
  }

.modal_rect{
    width: calc(100% - 32px);
    left: 16px;
  }
  .modal_rect_up_text_voting{
    font-size: 16px;
  }
  .modal_rect_up_text_tittle{
    font-size: 22px;
  }

  .modal_rect_up_text_adress{
    font-size: 16px;
  }




  .container{
    padding-left: 16px;
    padding-right: 16px;
  }
  .header_items {
    padding-top: 18px;
    padding-bottom: 18px;
  }
  .header_logo img{
    height: 28px;
  }
  .header_item:last-child {
    margin-left: 30px !important;
  }
  .header_item_right {
    gap: 20px;
  }

  .header_navs{
    gap: 18px;
  }

  .header_nav a{
    font-size: 16px;
    white-space: nowrap;
  }

  .intro{
    margin-top: 150px;
  }
  .intro_block_teg{
    display: block;
    margin: 0 auto;
  }
  .intro_block_tittle{
    text-align: center;
  }

  .intro_block_subtittle{
    text-align: center;
  }

  .intro_block_money{
    display: none;
  }
  .intro_blocks{
    flex-direction: column-reverse;
    gap: 50px;
  }
  .intro_block_buttons{
    flex-direction: column;
    gap: 20px;
  }
  .intro_block:last-child{
    width: 100%;
  }

  .informations_blocks{
    grid-template-columns: 100%;
    gap: 30px;
  }
  .intro_block_adress{
    justify-content: center;
  }
  .footer_items{
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
 
  .intro_block_button{
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .footer_item_text{
    text-align: center;
  }
  .header_powered{
    margin: 0 auto;
    display: block;
  }
  .footer_item:last-child {
    margin-left: 0px;
}
}



@media (min-width:800px) and (max-width:1199px){
  .container{
    padding-left: 16px;
    padding-right: 16px;
  }

  .header_item:last-child {
    margin-left: 40px;
  }
  .header_navs{
    gap: 24px;
  }

  .intro_block_coin{
    font-size: 30px;
    text-align: center;
    margin-top: 8px;
    padding-bottom: 6px;
    margin-bottom: 0px;
  }
  .intro_block_teg{
    display: block;
    margin: 0 auto;
  }
  .intro_block_tittle {
    text-align: center;
  }
  .intro_block_subtittle{
    text-align: center;
  }
  .intro_block_adress{
    justify-content: center;
  }

  .intro_block_money{
    display: none;
  }
  .intro_blocks{
    flex-direction: column-reverse;
    gap: 30px;
  }
  .footer_items{
    gap: 20px;
  }
  .informations_rect_item_texts_adress{
    font-size: 16px;
  }
  .informations_rect_item_texts_text{
    font-size: 16px;
  }
  .informations_rect_item_content{
    padding: 10px;
  }
  .informations_rect_content{
    padding: 18px 16px;
  }
  .intro_block:last-child{
    width: 100%;
  }
}



@media (min-width:1200px) and (max-width:1460px){
  .container{
    padding-left: 16px;
    padding-right: 16px;
  }
 
  .intro_block:first-child{
    margin-right: 50px;
  }

  .intro_block_coin{
    font-size: 40px;
    margin-bottom: 0px;
    padding-bottom: 6px;
  }
}