pre {
  font-size: 1.3rem;
  line-height: 2rem;
  margin: 1rem 0 0 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2rem;
  background-color: #151718;
  color: #e6cd69;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}
code {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 400;
}
pre {
}
i,
b,
u,
em,
strong {
  text-decoration: none;
  font-weight: 400;
  font-style: normal;
  color: #55b5db;
}
em {
  color: #a074c4;
}
strong {
  color: #9fca56;
}
u {
  color: #eeeeee;
}
s {
  color: #666666;
  text-decoration: none;
}
.lineOfCode {
  -webkit-animation: typingEffect 1800ms steps(14, end) forwards 1000ms,
    caretAnim 500ms steps(2, end) 0s infinite;
          animation: typingEffect 1800ms steps(14, end) forwards 1000ms,
    caretAnim 500ms steps(2, end) 0s infinite;
  overflow: hidden;
  padding: 0;
  margin: 0;
  width: 0;
  height: auto;
  border-right: 2px solid #ffffff;
}
.lineOfCode:nth-of-type(2) {
  height: 0;
  -webkit-animation-delay: 3100ms;
          animation-delay: 3100ms;
}
.lineOfCode:nth-of-type(3) {
  height: 0;
  -webkit-animation-delay: 5200ms;
          animation-delay: 5200ms;
}

@-webkit-keyframes typingEffect {
  0% {
    border-width: 2px;
  }
  5% {
    width: 0;
    height: auto;
    border-width: 2px;
  }
  93% {
    border-width: 2px;
  }
  100% {
    width: 14ch;
    height: auto;
    border-width: 0;
  }
}

@keyframes typingEffect {
  0% {
    border-width: 2px;
  }
  5% {
    width: 0;
    height: auto;
    border-width: 2px;
  }
  93% {
    border-width: 2px;
  }
  100% {
    width: 14ch;
    height: auto;
    border-width: 0;
  }
}
@-webkit-keyframes caretAnim {
  0% {
    border-color: transparent;
  }
  50% {
    border-color: #ffffff;
  }
  100% {
    border-color: transparent;
  }
}
@keyframes caretAnim {
  0% {
    border-color: transparent;
  }
  50% {
    border-color: #ffffff;
  }
  100% {
    border-color: transparent;
  }
}



@header_background_color: #333;
@header_text_color: #FDFDFD;
@alternate_row_background_color: #DDD;

@table_width: 750px;
@table_body_height: 300px;
@column_one_width: 200px;
@column_two_width: 200px;
@column_three_width: 350px;


body {
  background: #fff;
  height: 1000px;
  font-family: sans-serif;
}
.halftone-wrapper {
  position: relative;
  overflow: hidden;
}
.halftone-wrapper:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #102C54;
    left: 0;
    top: 0;
    mix-blend-mode: screen;
}
.halftone-wrapper:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: #f4f4f4;
    left: 0;
    top: 0;
    mix-blend-mode: multiply;
  z-index: 1;
}
.halftone {
  width: 100vw;
  height: 18vw;
    background: white;
    position: relative;
    filter: contrast(25000%);
    overflow: hidden;
    transform: translateZ(0); /* force a HW accelerated layer */
}
.halftone .background {
  width: 100vw;
  height: 50vw;
	background: linear-gradient(-45deg, #bfbfbf, #5f5f5f, #000, #363636, #c4c4c4, #868686, #404040, #000);
    background-size: 400% 100%;
    animation: gradient 30s ease infinite;
    height: 50vw;
    z-index: -1;

} 

@keyframes gradient {
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
} 


.halftone-mask {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
}

.halftone > * {
    filter: brightness(0.5) blur(4px);
}

.halftone::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    right: -100%;
    bottom: -100%;
    background: radial-gradient(1.25vw 1.25vw, #222, white);
    background-size: 1vw 1vw;
    background-position: 0 -1.4vw, 1.4vw 0;
    mix-blend-mode: screen;
    pointer-events: none;
    transition: 1s ease-in-out transform;
    z-index: 1;
  transform: rotate(45deg);
}

h2 {
  text-align:center;
  margin-top: 10rem;
  background: #fff;
  padding: 4rem;
}






.fixed_headers {
  width: @table_width;
  table-layout: fixed;
  border-collapse: collapse;
  
  th { text-decoration: underline; }
  th, td {
    padding: 5px;
    text-align: left;
  }
  
  td:nth-child(1), th:nth-child(1) { min-width: @column_one_width; }
  td:nth-child(2), th:nth-child(2) { min-width: @column_two_width; }
  td:nth-child(3), th:nth-child(3) { width: @column_three_width; }

  thead {
    background-color: @header_background_color;
    color: @header_text_color;
    tr {
      display: block;
      position: relative;
    }
  }
  tbody {
    display: block;
    overflow: auto;
    width: 100%;
    height: @table_body_height;
    tr:nth-child(even) {
      background-color: @alternate_row_background_color;
    }
  }
}

.old_ie_wrapper {
  height: @table_body_height;
  width: @table_width;
  overflow-x: hidden;
  overflow-y: auto;
  tbody { height: auto; }
}



/*! CSS Used from: https://assets.website-files.com/5bbfaf3252489b4c484ba9b9/css/memberstack.ea2c43568.min.css */
a{background-color:transparent;}
a:active,a:hover{outline:0;}
img{border:0;vertical-align:middle;display:inline-block;}
*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
.w-inline-block{max-width:100%;display:inline-block;}
h4{margin-top:10px;}
p{margin-top:0;}
h4{font-weight:700;margin-bottom:10px;}
h4{font-size:18px;line-height:24px;}
.w-tab-link{vertical-align:top;text-decoration:none;}
.w-richtext:after,.w-richtext:before{content:" ";display:table;grid-column-start:1;grid-row-start:1;grid-column-end:2;grid-row-end:2;}
.w-richtext:after{clear:both;}
.w-tabs:after,.w-tabs:before{content:" ";grid-column-start:1;grid-row-start:1;grid-column-end:2;grid-row-end:2;}
img{max-width:100%;}
.w-tabs:after{clear:both;}
.w-embed-youtubevideo{background-size:cover;}
.w-embed-youtubevideo{background-position:50% 50%;}
.w-embed-youtubevideo,.w-tab-content,.w-tab-link,.w-tab-menu,.w-tabs{position:relative;}
.w-tabs:after,.w-tabs:before{display:table;}
.w-tab-link{display:inline-block;padding:9px 30px;text-align:left;cursor:pointer;color:#222;background-color:#ddd;}
.w-tab-link.w--current{background-color:#C8C8C8;}
.w-tab-content{display:block;overflow:hidden;}
.w-tab-pane{position:relative;display:none;}
.w--tab-active{display:block;}
@media screen and (max-width:479px){
.w-tab-link{display:block;}
}
a,a:hover{color:#2aa8ff;}
p{margin-bottom:15px;}
.w-embed-youtubevideo{width:100%;padding-bottom:0;padding-left:0;padding-right:0;background-image:url(https://d3e54v103j8qbb.cloudfront.net/static/youtube-placeholder.2b05e7d68d.svg);}
.w-embed-youtubevideo:empty{min-height:75px;padding-bottom:56.25%;}
a{-webkit-transition:color .2s ease;transition:color .2s ease;text-decoration:none;}
.container{width:100%;max-width:1200px;margin-right:auto;margin-left:auto;padding-right:50px;padding-left:50px;text-align:left;}
.event-card:hover{-webkit-transform:translate(0,-3px);-ms-transform:translate(0,-3px);}
.about-flex{-webkit-box-pack:justify;}
.about-flex{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;}
.timeline-dot{left:auto;position:absolute;}
.about-flex{display:flex;width:100%;min-height:500px;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;}
.event-top-row{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;}
.event-wrapper{width:33%;min-width:300px;margin-right:2em;}
.event-card{position:relative;width:100%;margin-bottom:2.5em;padding:0;border:1px solid #dbe2eb;border-radius:4px;background-color:#fff;box-shadow:3px 3px 12px 0 rgba(45,62,80,.12);-webkit-transition:box-shadow .2s ease,border-color .2s ease,color .2s ease,-webkit-transform .2s ease;transition:box-shadow .2s ease,border-color .2s ease,color .2s ease,-webkit-transform .2s ease;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease,color .2s ease;transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease,color .2s ease,-webkit-transform .2s ease;color:#263d49;font-size:12px;}
.event-card:hover{border-color:#2aa8ff;box-shadow:0 0 5px 0 rgba(42,168,255,.25),7px 7px 20px 0 rgba(45,62,80,.12);transform:translate(0,-3px);color:#192a33;}
.event-card.w--current{border-color:#2aa8ff;background-color:#fff;}
.event-card.no-event{z-index:-1;}
.event-top-row{position:relative;display:flex;padding:.5em 1.5em .25em .75em;-webkit-box-pack:justify;-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between;border-top-left-radius:4px;border-top-right-radius:4px;background-color:rgba(219,226,235,.5);font-size:10px;}
.event-icon{position:relative;top:-2px;display:inline-block;overflow:hidden;max-height:18px;margin-top:1px;margin-right:.75em;margin-bottom:2px;font-size:15px;}
.event-padding{padding:1em 1.5em 1.25em;line-height:1.4;}
.event-date{padding-top:2px;font-weight:700;}
.event-category{display:inline-block;letter-spacing:.1em;}
.event-title{margin-top:5px;margin-bottom:3px;font-size:15px;line-height:21px;}
.timeline-dot{top:0;right:0;bottom:0;z-index:2;width:8px;height:8px;margin-top:auto;margin-right:-4px;margin-bottom:auto;border:2px solid #2aa8ff;border-radius:20px;background-color:#fff;}
.time-line{position:absolute;left:100%;top:1px;width:20px;height:2px;background-color:#2aa8ff;}
.vertical-timeline{position:absolute;top:-1em;right:-23px;z-index:-1;height:150%;border-right:2px dotted #dbe2eb;background-color:#fff;}
.event-detail-wrap{position:relative;overflow:visible;width:66%;}
.event-image{display:block;overflow:hidden;width:100%;margin-bottom:3em;margin-left:auto;border:1px solid #dbe2eb;border-radius:4px;box-shadow:28px 28px 50px 0 rgba(45,62,80,.2);}
.sticky-event{position:-webkit-sticky;position:sticky;top:100px;padding-left:10%;}
@media (max-width:991px){
.container{padding-right:5%;padding-left:5%;}
}
@media (max-width:767px){
p{margin-bottom:20px;font-size:13px;line-height:1.8em;}
}
@media (max-width:479px){
p{font-size:14px;line-height:2em;}
}
/*! CSS Used from: Embedded */
*{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;}

body {
    background: #fbfbfd;
}

.new_footer_area {
    background: #fbfbfd;
}


.new_footer_top {
    padding: 120px 0px 270px;
    position: relative;
      overflow-x: hidden;
}
.new_footer_area .footer_bottom {
    padding-top: 5px;
    padding-bottom: 50px;
}
.footer_bottom {
    font-size: 14px;
    font-weight: 300;
    line-height: 20px;
    color: #7f88a6;
    padding: 27px 0px;
}
.new_footer_top .company_widget p {
    font-size: 16px;
    font-weight: 300;
    line-height: 28px;
    color: #6a7695;
    margin-bottom: 20px;
}
.new_footer_top .company_widget .f_subscribe_two .btn_get {
    border-width: 1px;
    margin-top: 20px;
}
.btn_get_two:hover {
    background: transparent;
    color: #5e2ced;
}
.btn_get:hover {
    color: #fff;
    background: #6754e2;
    border-color: #6754e2;
    -webkit-box-shadow: none;
    box-shadow: none;
}
a:hover, a:focus, .btn:hover, .btn:focus, button:hover, button:focus {
    text-decoration: none;
    outline: none;
}



.new_footer_top .f_widget.about-widget .f_list li a:hover {
    color: #5e2ced;
}
.new_footer_top .f_widget.about-widget .f_list li {
    margin-bottom: 11px;
}
.f_widget.about-widget .f_list li:last-child {
    margin-bottom: 0px;
}
.f_widget.about-widget .f_list li {
    margin-bottom: 15px;
}
.f_widget.about-widget .f_list {
    margin-bottom: 0px;
}
.new_footer_top .f_social_icon a {
    width: 44px;
    height: 44px;
    line-height: 43px;
    background: transparent;
    border: 1px solid #e2e2eb;
    font-size: 24px;
}
.f_social_icon a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    font-size: 14px;
    line-height: 45px;
    color: #858da8;
    display: inline-block;
    background: #ebeef5;
    text-align: center;
    -webkit-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}
.ti-facebook:before {
    content: "\e741";
}
.ti-twitter-alt:before {
    content: "\e74b";
}
.ti-vimeo-alt:before {
    content: "\e74a";
}
.ti-pinterest:before {
    content: "\e731";
}

.btn_get_two {
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #5e2ced;
    border-color: #5e2ced;
    color: #fff;
}

.btn_get_two:hover {
    background: transparent;
    color: #5e2ced;
}

.new_footer_top .f_social_icon a:hover {
    background: #5e2ced;
    border-color: #5e2ced;
  color:white;
}
.new_footer_top .f_social_icon a + a {
    margin-left: 4px;
}
.new_footer_top .f-title {
    margin-bottom: 30px;
    color: #263b5e;
}
.f_600 {
    font-weight: 600;
}
.f_size_18 {
    font-size: 18px;
}
h1, h2, h3, h4, h5, h6 {
    color: #4b505e;
}
.new_footer_top .f_widget.about-widget .f_list li a {
    color: #6a7695;
}


.new_footer_top .footer_bg {
    position: absolute;
    bottom: 0;
    background: url("https://spbmetromap.ru/footer_bg.png") no-repeat scroll center 0;
    width: 100%;
    height: 266px;
}

.new_footer_top .footer_bg .footer_bg_one {
    background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEia0PYPxwT5ifToyP3SNZeQWfJEWrUENYA5IXM6sN5vLwAKvaJS1pQVu8mOFFUa_ET4JuHNTFAxKURFerJYHDUWXLXl1vDofYXuij45JZelYOjEFoCOn7E6Vxu0fwV7ACPzArcno1rYuVxGB7JY6G7__e4_KZW4lTYIaHSLVaVLzklZBLZnQw047oq5-Q/s16000/volks.gif") no-repeat center center;
    width: 330px;
    height: 105px;
  background-size:100%;
    position: absolute;
    bottom: 0;
    left: 30%;
    -webkit-animation: myfirst 22s linear infinite;
    animation: myfirst 22s linear infinite;
}

.new_footer_top .footer_bg .footer_bg_two {
    background: url("https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhyLGwEUVwPK6Vi8xXMymsc-ZXVwLWyXhogZxbcXQYSY55REw_0D4VTQnsVzCrL7nsyjd0P7RVOI5NKJbQ75koZIalD8mqbMquP20fL3DxsWngKkOLOzoOf9sMuxlbyfkIBTsDw5WFUj-YJiI50yzgVjF8cZPHhEjkOP_PRTQXDHEq8AyWpBiJdN9SfQA/s16000/cyclist.gif") no-repeat center center;
    width: 88px;
    height: 100px;
  background-size:100%;
    bottom: 0;
    left: 38%;
    position: absolute;
    -webkit-animation: myfirst 30s linear infinite;
    animation: myfirst 30s linear infinite;
}



@-moz-keyframes myfirst {
  0% {
    left: -25%;
  }
  100% {
    left: 100%;
  }
}

@-webkit-keyframes myfirst {
  0% {
    left: -25%;
  }
  100% {
    left: 100%;
  }
}

@keyframes myfirst {
  0% {
    left: -25%;
  }
  100% {
    left: 100%;
  }
}

/*************footer End*****************/


.c-author {
  color: #404040;
  margin: 10px 0;
  text-align: center;
}

.c-author__link {
  color: #404040;
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.c-author__link::before, .c-author__link::after {
  bottom: 0;
  content: "";
  height: 8px;
  left: 0;
  position: absolute;
  z-index: -1;
}
.c-author__link::before {
  background-color: rgba(64, 64, 64, 0.15);
  width: 100%;
}
.c-author__link::after {
  background-color: #c584f8;
  transition: width 0.3s ease-in-out;
  width: 0;
  will-change: width;
}
.c-author__link:hover::after {
  width: 100%;
}

.c-fe30 {
  -webkit-animation: fe30-anime 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 4s forwards;
          animation: fe30-anime 0.5s cubic-bezier(0.215, 0.61, 0.355, 1) 4s forwards;
  bottom: 0;
  display: none;
  opacity: 0;
  position: fixed;
  right: 0;
}
.is-desktop .c-fe30 {
  display: block;
}

.c-fe30__inner {
  background-color: #fff;
  border-radius: 7px;
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.1);
  color: #2d2f31;
  font-size: 14px;
  line-height: 1.45;
  margin: 10px;
  padding: 20px 20px 10px;
  transform: perspective(1000px) rotateX(0) rotateY(0) scale3d(1, 1, 1);
  transform-style: preserve-3d;
  width: 250px;
}

.c-fe30__photo {
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.1);
  display: block;
  height: 80px;
  position: absolute;
  top: -50px;
  left: 50%;
  overflow: hidden;
  transform: translateX(-50%) translateZ(26px);
  width: 80px;
}

.c-fe30__img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}

.c-fe30__link {
  color: #c584f8;
  display: inline-block;
  transform: translateZ(18px);
}
.c-fe30__link:hover {
  text-decoration: none;
}

@-webkit-keyframes fe30-anime {
  0% {
    opacity: 0;
    transform: translate(0, 100%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes fe30-anime {
  0% {
    opacity: 0;
    transform: translate(0, 100%);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
/**
 * Utilities
 */
 
.wrapper {
  height: 0vh;
  background: #333;
}

#main-div {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 0;
}

#main-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 50px;
  width: 50px;
  font-size: 20px;
  color: #0064f3;
  cursor: pointer;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}

#main-button ~ button {
  visibility: hidden;
  font-weight: 600;
  height: 50px;
  padding: 0 20px;
  color: #fff;
  background: linear-gradient(90deg, #00a1f5, #0064f3);
  box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
  border: 0;
  position: absolute;
  z-index: -1;
  right: 0;
  bottom: 0;
  opacity: 0;
  white-space: nowrap;
  cursor: pointer;
  transition: .2s all linear;
  -webkit-transition: .2s all linear;
  -moz-transition: .2s all linear;
  -ms-transition: .2s all linear;
  -o-transition: .2s all linear;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

#main-button.open ~ button {
  visibility: visible;
  right: 70px;
  opacity: 1;
  transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
  -webkit-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
  -moz-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
  -ms-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
  -o-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
}

#main-button ~ a {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  height: 50px;
  width: 50px;
  font-size: 20px;
  opacity: 0;
  text-decoration: none;
  color: #fff;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0,0,0,.5);
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  transition: .2s all linear;
  -webkit-transition: .2s all linear;
  -moz-transition: .2s all linear;
  -ms-transition: .2s all linear;
  -o-transition: .2s all linear;
}

#main-button ~ .telegram-color {
  background: linear-gradient(0deg, #017AB1, #01ABE6);
}

#main-button ~ .whatsapp-color {
  background: linear-gradient(0deg, #00B100, #09db09);
}

#main-button ~ .messenger-color {
  background: linear-gradient(0deg, #0078FF, #00C6FF);
}

#main-button.open ~ a {
  opacity: 1;
  transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
  -webkit-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
  -moz-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
  -ms-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
  -o-transition: .4s all cubic-bezier(0, 0.01, 0, 1.27);
}
#main-button.open ~ a:nth-of-type(1) {
  bottom: 60px;
}
#main-button.open ~ a:nth-of-type(2) {
  bottom: 120px;
}
#main-button.open ~ a:nth-of-type(3) {
  bottom: 180px;
}

.wave {
  animation-name: wave;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes wave {
  0% {box-shadow: 0 0 0px 0px rgba(255, 255, 255, 0.5);}
  100% {box-shadow: 0 0 0px 10px rgba(255, 255, 255, 0);}
}

.open {
  animation-iteration-count: 1;
}








@property --angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

:root {
  --bg: oklch(12.9% 0.042 264.695);
  --c1: oklch(44.4% 0.177 26.899);
  --c2: oklch(85.2% 0.199 91.936);
  --c3: oklch(58.8% 0.158 241.966);
}

.orb {
  display: grid;
  grid-template-areas: "stack";
  inline-size: min(80vmin, 100%);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;

  &::before,
  &::after {
    content: "";
    display: block;
    grid-area: stack;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: translateZ(0);
  }

  &::before {
    background: conic-gradient(
        from calc(var(--angle) * 2) at 25% 70%,
        var(--c3),
        transparent 20% 80%,
        var(--c3)
      ),
      conic-gradient(
        from calc(var(--angle) * 2) at 45% 75%,
        var(--c2),
        transparent 30% 60%,
        var(--c2)
      ),
      conic-gradient(
        from calc(var(--angle) * -3) at 80% 20%,
        var(--c1),
        transparent 40% 60%,
        var(--c1)
      ),
      conic-gradient(
        from calc(var(--angle) * 2) at 15% 5%,
        var(--c2),
        transparent 10% 90%,
        var(--c2)
      ),
      conic-gradient(
        from calc(var(--angle) * 1) at 20% 80%,
        var(--c1),
        transparent 10% 90%,
        var(--c1)
      ),
      conic-gradient(
        from calc(var(--angle) * -2) at 85% 10%,
        var(--c3),
        transparent 20% 80%,
        var(--c3)
      );
    box-shadow: inset var(--bg) 0 0 5vmin 1vmin;
    filter: blur(3vmin) contrast(5);
    animation: rotate 20s linear infinite;
  }

  &::after {
    --dot: 1.5px;
    background-image: radial-gradient(
      circle at center,
      var(--bg) var(--dot),
      transparent var(--dot)
    );
    background-size: calc(var(--dot) * 2) calc(var(--dot) * 2);
    mask-image: radial-gradient(black 25%, transparent 75%);
    backdrop-filter: blur(8vmin) contrast(10);
    mix-blend-mode: overlay;
  }
}

@keyframes rotate {
  to {
    --angle: 360deg;
  }
}






















section {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 50em;
  margin-inline: auto;
  gap: 3.25rem;
  position: relative;
  z-index: 10;
  align-items: center;
  padding: 5em 0;

  .card {
    position: relative;
    z-index: 555;
    max-width: 38rem;
    min-height: 20rem;
    width: 90%;
    display: grid;
    place-content: center;
    place-items: center;
    text-align: center;
    position: relative;
    box-shadow: 0.063em 0.75em 1.563em rgb(0 0 0 / 78%);
    border-radius: 1rem;

    @include mQ(33.75rem) {
      min-height: 15rem;
    }

    &-header {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      padding: 0.8em 0.8em 0em 1.5em;

      .close {
        color: #d9d9d9;
        width: 1.5rem;
        cursor: pointer;
      }
    }

    &-body {
      width: 100%;
      padding: 0.7em 2em 0.5em 2em;
      text-align: left;

      @include mQ(33.75rem) {
        display: flex;
        text-align: unset;
      }

      .icon {
        width: 3rem;
        @include mQ(33.75rem) {
          width: 4rem;
        }
      }

      > div {
        @include mQ(33.75rem) {
          margin-left: 2em;
        }
      }

      h3 {
        text-align: left;
        color: #fff;
        font-size: 1.2rem;
        letter-spacing: 0.035em;
        margin-top: 0.625em;
        margin-bottom: 0.5em;
        font-weight: 600;
      }

      p {
        text-align: left;
        color: #cccccc;
        font-size: 1rem;
        letter-spacing: 0.031rem;
      }
    }
    .progress {
      width: 100%;
      margin-top: 0.938rem;

      @include mQ(33.75rem) {
        display: flex;
        align-items: center;
        justify-content: center;
      }

      > div {
        width: 100%;
      }

      .progress-bar {
        position: relative;
        width: 100%;
        background: #363636;
        height: 0.35rem;
        display: block;
        border-radius: 3.125rem;

        &:after {
          position: absolute;
          content: "";
          top: 0;
          left: 0;
          right: 0;
          bottom: 0;
          height: 100%;
          display: block;
          border-radius: 3.125rem;
        }
      }
      span:first-of-type {
        color: #cccccc;
        text-align: right;
        font-weight: 600;
        width: 100%;
        display: block;
        margin-bottom: 0.313rem;
        font-size: 0.9rem;
      }
    }

    .btn-first,
    .btn-second {
      background: #222127;
      color: #fff;
      border-radius: 0.25em;
      padding: 0.5rem 1.5rem;
      display: inline-block;
      font-size: 0.9rem;

      @include mQ(33.75rem) {
        padding: 0.625rem 2.2rem;
      }
    }

    .btn-second {
      margin-left: 2em;
    }
  }

  .blue {
    background: radial-gradient(
      ellipse at right top,
      #00458f8f 0%,
      #151419 45%,
      #151419 100%
    );
    opacity: 0.95;
    transition: opacity 0.25s ease-in;

    &:hover {
      opacity: 1;
    }

    .icon {
      color: $clr-blue;
    }

    &:before {
      background: linear-gradient(
          45deg,
          #232228,
          #232228,
          #232228,
          #232228,
          #1890ff
        )
        border-box;
    }

    .progress-bar:after {
      width: 68%;
      background: $clr-blue;
      background: linear-gradient(90deg, #1d1da3 0%, #4242cf 60%, #5a81ff 100%);
    }
    .btn-first {
      margin-top: 1.5em;
      margin-bottom: 1em;

      @include mQ(33.75rem) {
        margin-left: 2.5em;
        margin-top: 0;
        margin-bottom: 0;
      }

      &:hover {
        background: $clr-blue;
      }
    }
  }
  .green {
    background: radial-gradient(
      ellipse at right top,
      #107667ed 0%,
      #151419 47%,
      #151419 100%
    );
    opacity: 0.95;
    transition: opacity 0.25s ease-in;

    &:hover {
      opacity: 1;
    }

    .icon {
      color: $clr-green;
    }

    .card-body {
      align-items: flex-end;
    }

    &:before {
      background: linear-gradient(
          45deg,
          #232228,
          #232228,
          #232228,
          #232228,
          #01c3a8
        )
        border-box;
    }

    .progress-bar:after {
      width: 90%;
      background: $clr-green;
    }

    .btn-first {
      margin-left: 0;
      &:hover {
        background: #ccff00;
        color: #111;
      }
    }

    .btn-second {
      &:hover {
        background: $clr-green;
      }
    }
  }
  .red {
    background: radial-gradient(
      ellipse at right top,
      #a63d2a82 0%,
      #151419 47%,
      #151419 100%
    );
    opacity: 0.95;
    transition: opacity 0.25s ease-in;

    &:hover {
      opacity: 1;
    }

    .icon {
      color: $clr-red;
    }

    .card-body {
      align-items: flex-end;
    }

    &:before {
      background: linear-gradient(
          45deg,
          #232228,
          #232228,
          #232228,
          #232228,
          #a63d2a
        )
        border-box;
    }

    .btn-first {
      margin-left: 0;
      &:hover {
        background: #ff6d57;
        color: #111;
      }
    }

    .btn-second {
      &:hover {
        background: $clr-red;
      }
    }
  }
}













































button {
	padding: 1rem 4rem;
	font-size: 1rem;
	border: none;
	border-radius: 999px;
	position: relative;
	color: white;
	background: black;
	isolate: isolate;
	overflow: clip;
	z-index: 0;
	/*
	box-shadow: 
		inset 2px 2px 1px 0 rgba(255 255 255 / 0.5),
		inset -2px -2px 1px 0 rgba(255 255 255 / .25);
*/
	&:hover {
		--after-opacity: 1;
	}

	&::before {
		content: "";
		position: absolute;
		inset: 0;
		z-index: -2;
		border-radius: inhert;
		background-image: radial-gradient(
				circle at var(--blue-x, 50%) var(--blue-y, 50%),
				#18346d 5%,
				transparent 30%
			),
			radial-gradient(
				circle at var(--purple-x, 50%) var(--purple-y, 50%),
				purple 5%,
				transparent 30%
			),
			radial-gradient(
				circle at var(--red-x, 50%) var(--red-y, 50%),
				red 5%,
				transparent 30%
			),
			radial-gradient(
				circle at var(--orange-x, 50%) var(--orange-y, 50%),
				orange 5%,
				transparent 30%
			),
			radial-gradient(
				circle at var(--green-x, 50%) var(--green-y, 50%),
				green 5%,
				transparent 30%
			),
			radial-gradient(
				circle at var(--yellow-x, 50%) var(--yellow-y, 50%),
				yellow 5%,
				transparent 30%
			);
		background-size: 200% 200%;
		background-repeat: no-repeat;
		animation: moveGradients 10s linear infinite;
	}
	&::after {
		content: "";
		position: absolute;
		inset: 2px;
		border-radius: inherit;
		background: black;
		z-index: -1;
		backdrop-filter: blur(var(--after-blur, 3px));
		transition: opacity 500ms ease-in-out;
		opacity: var(--after-opacity, 0);
	}
}

@keyframes moveGradients {
	0%,
	100% {
		--blue-x: -40%;
		--blue-y: 35%;
		--purple-x: 35%;
		--purple-y: -10%;
		--red-x: -10%;
		--red-y: -80%;
		--orange-x: 50%;
		--orange-y: 145%;
		--green-x: 0%;
		--green-y: 80%;
		--yellow-x: 35%;
		--yellow-y: 95%;
	}
	25% {
		--blue-x: 30%;
		--blue-y: -25%;
		--purple-x: 5%;
		--purple-y: 40%;
		--red-x: 45%;
		--red-y: 150%;
		--orange-x: -15%;
		--orange-y: 30%;
		--green-x: 45%;
		--green-y: 15%;
		--yellow-x: -20%;
		--yellow-y: -40%;
	}
	50% {
		--blue-x: 70%;
		--blue-y: 50%;
		--purple-x: 50%;
		--purple-y: 120%;
		--red-x: 35%;
		--red-y: -80%;
		--orange-x: 75%;
		--orange-y: -75%;
		--green-x: 85%;
		--green-y: 100%;
		--yellow-x: 50%;
		--yellow-y: -20%;
	}
	75% {
		--blue-x: -25%;
		--blue-y: 10%;
		--purple-x: 35%;
		--purple-y: -45%;
		--red-x: -10%;
		--red-y: 30%;
		--orange-x: 20%;
		--orange-y: -40%;
		--green-x: -15%;
		--green-y: 50%;
		--yellow-x: 45%;
		--yellow-y: -15%;
	}
}


















-@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

.electric {
  padding: 20px 50px;
  border-radius: 100px;
  cursor: pointer;
  background-color: rgba(106, 123, 252, 0.13);
  border: 2px solid rgb(125, 140, 255);
  color: white;
  position: relative;
  filter: blur(0px);
}

#electric2 {
  position: absolute;
  top: 0;
  left: 0;
  filter: blur(1px);
  background-color: rgba(106, 123, 252, 0.414);
  border: 2px solid rgb(125, 140, 255);
  color: rgb(182, 191, 255);
  /* display: none; */
  z-index: -1;
}

svg {
  position: absolute;
}
.yellow {
  width: 110%;
  offset-path: 20%;
  stroke-dasharray: 300;
  stroke-dashoffset: 1000;
  animation: dash 1s linear;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
}

.blue {
  width: 110%;
  offset-path: 20%;
  stroke-dasharray: 400;
  stroke-dashoffset: 1000;
  animation: dash 1.2s linear;
  animation-iteration-count: infinite;
  animation-direction: alternate-reverse;
}

#y1 {
  top: -115%;
  left: -5%;
  filter: blur(0.5px);
}

#y2 {
  width: 120%;
  left: -10%;
  top: -155%;
  filter: brightness(1);
}

#b1 {
  left: -5%;
  top: -125%;
  /* filter: blur(.5px) */
}

#b2 {
  left: -10%;
  top: -165%;
  width: 120%;
  /* filter: blur(.5px) */
}

@keyframes dot1 {
  from {
    bottom: 0%;
    left: 10%;
    opacity: 1;
  }
  to {
    bottom: -30%;
    left: 0%;
    opacity: 0;
  }
}
@keyframes dot2 {
  from {
    top: 0%;
    left: 30%;
    opacity: 1;
  }
  to {
    top: -30%;
    left: 40%;
    opacity: 0;
  }
}

@keyframes dot3 {
  from {
    top: 0%;
    left: 80%;
    opacity: 1;
  }
  to {
    top: -30%;
    left: 80%;
    opacity: 0;
  }
}
@keyframes dot4 {
  from {
    bottom: 20%;
    left: 100%;
    opacity: 1;
  }
  to {
    bottom: 30%;
    left: 120%;
    opacity: 0;
  }
}

.part {
  content: " ";
  width: 3px;
  height: 3px;
  border-radius: 5px;
  background-color: rgb(183, 226, 255);
  z-index: 2;
  position: absolute;
  filter: blur(1px);
  display: none;
}

#part1 {
  animation: dot1;
  transform-origin: center;
  animation-duration: 1.5s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-iteration-count: infinite;
}
#part2 {
  animation: dot2;
  transform-origin: center;
  animation-duration: 1.6s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-iteration-count: infinite;
}
#part3 {
  animation: dot3;
  transform-origin: center;
  animation-duration: 1.5s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-iteration-count: infinite;
}

#part4 {
  animation: dot4;
  transform-origin: center;
  animation-duration: 1.5s;
  animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
  animation-iteration-count: infinite;
}

.buttonHolder {
  width: max-content;
  max-height: 20px;
}

.hide {
  opacity: 0;
}
.buttonHolder:hover .hide {
  opacity: 1;
}

.buttonHolder:hover .part {
  display: flex;
}















@charset "UTF-8";
body {
  background: rgb(var(--light-grey));
  zoom: 100%;
}
@media (max-width:31.98rem) {
  body {
    zoom: 100%;
  }
}

.marquee {
  height: 4rem;
  --box-shadow-color: var(--ink-light);
  -webkit-box-shadow: 0 0 0 1px rgba(var(--box-shadow-color), 0.02), 0 1px 3px -1px rgba(var(--box-shadow-color), 0.2);
          box-shadow: 0 0 0 1px rgba(var(--box-shadow-color), 0.02), 0 1px 3px -1px rgba(var(--box-shadow-color), 0.2);
  -webkit-transition: -webkit-box-shadow 0.2s ease-in-out;
  transition: -webkit-box-shadow 0.2s ease-in-out;
  transition: box-shadow 0.2s ease-in-out;
  transition: box-shadow 0.2s ease-in-out, -webkit-box-shadow 0.2s ease-in-out;
}
@media (hover: hover) {
  .marquee:hover {
    -webkit-box-shadow: 0 0.3px 0.4px rgba(var(--box-shadow-color), 0.02), 0 0.9px 1.5px rgba(var(--box-shadow-color), 0.045), 0 3.5px 6px rgba(var(--box-shadow-color), 0.09);
            box-shadow: 0 0.3px 0.4px rgba(var(--box-shadow-color), 0.02), 0 0.9px 1.5px rgba(var(--box-shadow-color), 0.045), 0 3.5px 6px rgba(var(--box-shadow-color), 0.09);
  }
}
@media (hover: none) {
  .marquee:active {
    -webkit-box-shadow: 0 0.3px 0.4px rgba(var(--box-shadow-color), 0.02), 0 0.9px 1.5px rgba(var(--box-shadow-color), 0.045), 0 3.5px 6px rgba(var(--box-shadow-color), 0.09);
            box-shadow: 0 0.3px 0.4px rgba(var(--box-shadow-color), 0.02), 0 0.9px 1.5px rgba(var(--box-shadow-color), 0.045), 0 3.5px 6px rgba(var(--box-shadow-color), 0.09);
  }
}

.marquee-wrapper {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
}
.marquee-content {
  -webkit-transform: translate3d(0px, 0px, 0px);
          transform: translate3d(0px, 0px, 0px);
}
.marquee-content::before {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.marquee-content > div {
  height: 4rem;
}
@media (hover: hover) {
  .marquee-content:hover > div {
    -webkit-animation-play-state: var(--pause-on-hover);
            animation-play-state: var(--pause-on-hover);
  }
}
@media (hover: none) {
  .marquee-content:active > div {
    -webkit-animation-play-state: var(--pause-on-click);
            animation-play-state: var(--pause-on-click);
  }
}

.marquee-inner {
  -webkit-animation: scroll var(--duration) linear var(--delay) var(--iteration-count);
          animation: scroll var(--duration) linear var(--delay) var(--iteration-count);
  -webkit-animation-delay: var(--delay);
          animation-delay: var(--delay);
  -webkit-animation-direction: var(--direction);
          animation-direction: var(--direction);
  -webkit-animation-play-state: var(--play);
          animation-play-state: var(--play);
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}

@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.marquee-item {
  padding-right: var(--padding-right);
  --padding-right: 1rem;
}
.marquee-item:before {
  color: rgb(var(--dark));
  content: "В·";
  font-weight: bold;
  padding-right: var(--padding-right);
}
.marquee-item > span {
  text-overflow: ellipsis;
  line-height: 26px;
} 

.marquee-action__button {
  -webkit-transition: background-color 0.2s ease-in-out;
  transition: background-color 0.2s ease-in-out;
}
@media (hover: hover) {
  .marquee-action__button:hover {
    background-color: rgb(var(--light-grey));
  }
}
@media (hover: none) {
  .marquee-action__button:active {
    background-color: rgb(var(--light-grey));
  }
}



















@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');



.showcase {
  max-width: 900px;
  width: 100%;
  text-align: center;
}

.header {
  margin-bottom: 4rem;
}

.main-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.description {
  font-size: 1.2rem;
  color: #6b7280;
  font-weight: 400;
  letter-spacing: 0.5px;
}

.button-collection {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.button-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.button-label {
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.shine-button {
  position: relative;
  padding: 1.2rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  min-width: 200px;
}

.shine-button::before {
  content: '';
  position: absolute;
  height: 250%;
  width: 40px;
  top: 0;
  left: -60px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(45deg) translateY(-35%);
  animation: shine 3s ease infinite;
}

@keyframes shine {
  0% {
    left: -80px;
  }
  40% {
    left: calc(100% + 20px);
  }
  100% {
    left: calc(100% + 20px);
  }
}

.button-ocean {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  box-shadow: 
    0 10px 30px rgba(102, 126, 234, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button-ocean:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 15px 40px rgba(102, 126, 234, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button-emerald {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  color: #fff;
  box-shadow: 
    0 10px 30px rgba(17, 153, 142, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button-emerald:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 15px 40px rgba(17, 153, 142, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button-sunset {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: #fff;
  box-shadow: 
    0 10px 30px rgba(240, 147, 251, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button-sunset:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 15px 40px rgba(240, 147, 251, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button-deep {
  background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
  color: #fff;
  box-shadow: 
    0 10px 30px rgba(30, 58, 138, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button-deep:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 15px 40px rgba(30, 58, 138, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button-gold {
  background: linear-gradient(135deg, #f7971e 0%, #ffd200 100%);
  color: #fff;
  box-shadow: 
    0 10px 30px rgba(247, 151, 30, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button-gold:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 15px 40px rgba(247, 151, 30, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.button-chrome {
  background: linear-gradient(135deg, #bdc3c7 0%, #2c3e50 100%);
  color: #fff;
  box-shadow: 
    0 10px 30px rgba(45, 62, 80, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.button-chrome:hover {
  background: linear-gradient(135deg, #d5dbdb 0%, #34495e 100%);
  transform: translateY(-3px);
  box-shadow: 
    0 15px 40px rgba(45, 62, 80, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.button-purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%);
  color: #fff;
  box-shadow: 
    0 10px 30px rgba(139, 92, 246, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button-purple:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 15px 40px rgba(139, 92, 246, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button-mint {
  background: linear-gradient(135deg, #2dd4bf 0%, #06b6d4 100%);
  color: #fff;
  box-shadow: 
    0 10px 30px rgba(45, 212, 191, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button-mint:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 15px 40px rgba(45, 212, 191, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button-electric {
  background: linear-gradient(135deg, #32ff32 0%, #65ff65 50%, #98ff98 100%);
  color: #fff;
  box-shadow: 
    0 10px 30px rgba(50, 255, 50, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button-electric:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 15px 40px rgba(50, 255, 50, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button-lavender {
  background: linear-gradient(135deg, #9ca3af 0%, #c084fc 50%, #a78bfa 100%);
  color: #fff;
  box-shadow: 
    0 10px 30px rgba(192, 132, 252, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button-lavender:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 15px 40px rgba(192, 132, 252, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.button-fire {
  background: linear-gradient(135deg, #ff4500 0%, #ff6347 50%, #ffa500 100%);
  color: #fff;
  box-shadow: 
    0 10px 30px rgba(255, 69, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button-fire:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 15px 40px rgba(255, 69, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.button-forest {
  background: linear-gradient(135deg, #134e5e 0%, #71b280 100%);
  color: #fff;
  box-shadow: 
    0 10px 30px rgba(19, 78, 94, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button-forest:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 15px 40px rgba(19, 78, 94, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.shine-button:active {
  transform: translateY(-1px);
  transition: transform 0.1s ease;
}

@media (max-width: 768px) {
  .button-collection {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .main-title {
    font-size: 2.5rem;
    letter-spacing: 1px;
  }

  .description {
    font-size: 1.1rem;
  }
}










