@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;700&display=swap");
.wallet-adapter-button {
  background-color: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-family: DM Sans, Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  height: 48px;
  line-height: 48px;
  padding: 0 24px;
  border-radius: 4px;
}
.wallet-adapter-button-trigger {
  background-color: #512da8;
}
.wallet-adapter-button:not([disabled]):focus-visible {
  outline-color: #fff;
}
.wallet-adapter-button:not([disabled]):hover {
  background-color: #1a1f2e;
}
.wallet-adapter-button[disabled] {
  background: #404144;
  color: #999;
  cursor: not-allowed;
}
.wallet-adapter-button-end-icon,
.wallet-adapter-button-end-icon img,
.wallet-adapter-button-start-icon,
.wallet-adapter-button-start-icon img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}
.wallet-adapter-button-end-icon {
  margin-left: 12px;
}
.wallet-adapter-button-start-icon {
  margin-right: 12px;
}
.wallet-adapter-collapse {
  width: 100%;
}
.wallet-adapter-dropdown {
  position: relative;
  display: inline-block;
}
.wallet-adapter-dropdown-list {
  position: absolute;
  z-index: 99;
  display: grid;
  grid-template-rows: 1fr;
  grid-row-gap: 10px;
  padding: 10px;
  top: 100%;
  right: 0;
  margin: 0;
  list-style: none;
  background: #2c2d30;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  font-family: DM Sans, Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
}
.wallet-adapter-dropdown-list-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(10px);
}
.wallet-adapter-dropdown-list-item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  cursor: pointer;
  white-space: nowrap;
  box-sizing: border-box;
  padding: 0 20px;
  width: 100%;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  height: 37px;
  color: #fff;
}
.wallet-adapter-dropdown-list-item:not([disabled]):hover {
  background-color: #1a1f2e;
}
.wallet-adapter-modal-collapse-button svg {
  align-self: center;
  fill: #999;
}
.wallet-adapter-modal-collapse-button.wallet-adapter-modal-collapse-button-active
  svg {
  transform: rotate(180deg);
  transition: transform 0.15s ease-in;
}
.wallet-adapter-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  transition: opacity 0.15s linear;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1040;
  overflow-y: auto;
}
.wallet-adapter-modal.wallet-adapter-modal-fade-in {
  opacity: 1;
}
.wallet-adapter-modal-button-close {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 18px;
  right: 18px;
  padding: 12px;
  cursor: pointer;
  background: #1a1f2e;
  border: none;
  border-radius: 50%;
}
.wallet-adapter-modal-button-close:focus-visible {
  outline-color: #fff;
}
.wallet-adapter-modal-button-close svg {
  fill: #777;
  transition: fill 0.2s ease 0s;
}
.wallet-adapter-modal-button-close:hover svg {
  fill: #fff;
}
.wallet-adapter-modal-overlay {
  background: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.wallet-adapter-modal-container {
  display: flex;
  margin: 3rem;
  min-height: calc(100vh - 6rem);
  align-items: center;
  justify-content: center;
}
@media (max-width: 480px) {
  .wallet-adapter-modal-container {
    margin: 1rem;
    min-height: calc(100vh - 2rem);
  }
}
.wallet-adapter-modal-wrapper {
  box-sizing: border-box;
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  z-index: 1050;
  max-width: 400px;
  border-radius: 10px;
  background: #10141f;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
  font-family: DM Sans, Roboto, Helvetica Neue, Helvetica, Arial, sans-serif;
  flex: 1;
}
.wallet-adapter-modal-wrapper .wallet-adapter-button {
  width: 100%;
}
.wallet-adapter-modal-title {
  font-weight: 500;
  font-size: 24px;
  line-height: 36px;
  margin: 0;
  padding: 64px 48px 48px;
  text-align: center;
  color: #fff;
}
@media (max-width: 374px) {
  .wallet-adapter-modal-title {
    font-size: 18px;
  }
}
.wallet-adapter-modal-list {
  margin: 0 0 12px;
  padding: 0;
  width: 100%;
  list-style: none;
}
.wallet-adapter-modal-list .wallet-adapter-button {
  font-weight: 400;
  border-radius: 0;
  font-size: 18px;
}
.wallet-adapter-modal-list .wallet-adapter-button-end-icon,
.wallet-adapter-modal-list .wallet-adapter-button-end-icon img,
.wallet-adapter-modal-list .wallet-adapter-button-start-icon,
.wallet-adapter-modal-list .wallet-adapter-button-start-icon img {
  width: 28px;
  height: 28px;
}
.wallet-adapter-modal-list .wallet-adapter-button span {
  margin-left: auto;
  font-size: 14px;
  opacity: 0.6;
}
.wallet-adapter-modal-list-more {
  cursor: pointer;
  border: none;
  padding: 12px 24px 24px 12px;
  align-self: flex-end;
  display: flex;
  align-items: center;
  background-color: transparent;
  color: #fff;
}
.wallet-adapter-modal-list-more svg {
  transition: all 0.1s ease;
  fill: #fff;
  margin-left: 0.5rem;
}
.wallet-adapter-modal-list-more-icon-rotate {
  transform: rotate(180deg);
}
.wallet-adapter-modal-middle {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 24px 24px;
  box-sizing: border-box;
}
.wallet-adapter-modal-middle-button {
  display: block;
  cursor: pointer;
  margin-top: 48px;
  width: 100%;
  background-color: #512da8;
  padding: 12px;
  font-size: 18px;
  border: none;
  border-radius: 8px;
  color: #fff;
}
.Hero_mainDiv___xDsh {
  background-image: url(/top_section/BG_TOP2.png);
  background-size: cover;
  background-position: 50%;
  width: 100%;
  min-height: 100vh;
  position: relative;
}
.Hero_blueGradient__hbSuw {
  background: linear-gradient(270deg, #3a84b5, #5bb1ea);
}
.Hero_textVT323__mTqU2 {
  font-family: var(--font-vt323);
  font-size: 1rem;
}
.Hero_transparentBackgroundDiv__P24Ix {
  background-image: url(/top_section/middle_background.png);
  background-size: cover;
  background-position: 50%;
  width: 100%;
  position: relative;
}
.Hero_absoluteImage__AiD1V {
  left: 20px;
  top: 45%;
  transform: translateY(-50%);
  max-width: 100%;
}
.Hero_absoluteImage2__dFw08,
.Hero_absoluteImage__AiD1V {
  position: absolute;
  width: 12%;
  height: auto;
  z-index: 10;
  max-height: 100%;
  opacity: 0.8;
}
.Hero_absoluteImage2__dFw08 {
  right: 0;
  bottom: 150px;
  max-width: 300px;
}
.Hero_absoluteImage3__8E0OD {
  position: absolute;
  width: 12%;
  height: auto;
  left: 0;
  max-width: 300px;
  transform: translateY(-100%);
  z-index: 10;
  max-height: 100%;
  opacity: 0.1;
}
.Hero_centerBottomImage__4jyT4 {
  position: absolute;
  width: 85%;
  height: auto;
  max-width: 600px;
  left: 52%;
  bottom: 0;
  transform: translateX(-50%);
  max-width: 85%;
  max-height: 100%;
}
.Hero_centeredVideo__K3L3y {
  width: 150%;
  height: auto;
  overflow: hidden;
}
.Hero_customToast__rpsAr {
  background-color: #333;
  color: #fff;
  border: 1px solid #007bff;
  padding: 12px;
  font-family: VT323, monospace;
}
.Hero_customToastSuccess__DHs4y {
  background-color: #28a745;
}
.Hero_customToastError__6Cc6F {
  background-color: #dc3545;
}
@keyframes Marquee_marquee__kA8oJ {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.Marquee_marqueeContainer__Yepmi {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.Marquee_marqueeContent__QDMRL {
  display: flex;
  width: 200%;
  animation: Marquee_marquee__kA8oJ 20s linear infinite;
}
.Marquee_marqueeText__fiyCV {
  flex: 1;
  display: inline-block;
}
.Fugonomics_windowImage__ejouJ {
  right: -50px;
  bottom: 35%;
  overflow: hidden;
}
.Articles_mainDiv__1awpL {
  background-image: url(/articles/articles_background2.png);
  background-color: #000;
  background-size: cover;
  background-position: 50%;
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.Articles_contentWrapper__YEMZq {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.Articles_column__pIWcA {
  flex: 1;
  margin: 0 10px;
  padding-left: 10px;
  padding-right: 15px;
}
.Articles_paginationControls__fsPS5 {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.9);
  width: 100%;
  margin: 20px auto 10px;
  gap: 10px;
}
.Articles_paginationControls__fsPS5 button {
  padding: 5px 10px;
  border: none;
  background-color: hsla(0, 0%, 100%, 0.33);
  color: #fff;
  cursor: pointer;
  transition: background 0.3s;
}
.Articles_paginationControls__fsPS5 button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
@media (max-width: 768px) {
  .Articles_contentWrapper__YEMZq {
    margin-top: 3rem;
    flex-direction: column;
    align-items: center;
  }
  .Articles_column__pIWcA {
    width: 100%;
    margin: 0;
    padding: 0 20px;
  }
}
.NewsModal_modalOverlay__Zk8xL {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.NewsModal_modalContent__ezFcc {
  background: #000;
  color: #fff;
  padding: 2rem;
  width: 80%;
  max-width: 1200px;
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: stretch;
  z-index: 1001;
}
.NewsModal_modalBody__NG43k {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.NewsModal_leftSide__gf0u2 {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.NewsModal_image__EaWFc {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 1rem;
}
.NewsModal_rightSide__IcNrW {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.NewsModal_content__bPO6B {
  flex-grow: 1;
  font-size: 1rem;
  white-space: pre-wrap;
  line-height: 1.5;
}
.NewsModal_paginationControls__ZKAhz {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .NewsModal_modalContent__ezFcc {
    width: 90%;
    max-width: 500px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 1rem;
    flex-direction: column;
  }
  .NewsModal_modalBody__NG43k {
    flex-direction: column;
    overflow-y: auto;
    gap: 1rem;
  }
  .NewsModal_content__bPO6B {
    max-height: 40vh;
    overflow-y: auto;
    padding-right: 1rem;
  }
  .NewsModal_paginationControls__ZKAhz {
    display: none;
  }
  .NewsModal_mobileMinimizeButton__Xh1Am {
    display: block;
    margin: 1rem auto;
    text-align: center;
  }
}
.NewsCard_newsCard__NMBfJ {
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.8);
}
@media (max-width: 768px) {
  .NewsCard_newsCard__NMBfJ {
    border: 1px solid #fff;
  }
}
.Carousel_carouselContainer__fTF4E {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
}
.Carousel_carouselTrack__N93ch {
  display: flex;
  width: max-content;
}
.Carousel_carouselTrackLeftToRight__iwHPV {
  animation: Carousel_scrollInfiniteLeftToRight__oRBHr 250s linear infinite;
}
.Carousel_carouselTrackRightToLeft__FcYMv {
  animation: Carousel_scrollInfiniteRightToLeft__wGoZR 250s linear infinite;
}
.Carousel_carouselTrack__N93ch img {
  width: 300px;
  height: auto;
  object-fit: cover;
  margin-left: 10px;
  margin-right: 10px;
}
@keyframes Carousel_scrollInfiniteLeftToRight__oRBHr {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-300px * 25));
  }
}
@keyframes Carousel_scrollInfiniteRightToLeft__wGoZR {
  0% {
    transform: translateX(calc(-300px * 25));
  }
  to {
    transform: translateX(0);
  }
}
:root {
  --toastify-color-light: #fff;
  --toastify-color-dark: #121212;
  --toastify-color-info: #3498db;
  --toastify-color-success: #07bc0c;
  --toastify-color-warning: #f1c40f;
  --toastify-color-error: #e74c3c;
  --toastify-color-transparent: hsla(0, 0%, 100%, 0.7);
  --toastify-icon-color-info: var(--toastify-color-info);
  --toastify-icon-color-success: var(--toastify-color-success);
  --toastify-icon-color-warning: var(--toastify-color-warning);
  --toastify-icon-color-error: var(--toastify-color-error);
  --toastify-toast-width: 320px;
  --toastify-toast-offset: 16px;
  --toastify-toast-top: max(
    var(--toastify-toast-offset),
    env(safe-area-inset-top)
  );
  --toastify-toast-right: max(
    var(--toastify-toast-offset),
    env(safe-area-inset-right)
  );
  --toastify-toast-left: max(
    var(--toastify-toast-offset),
    env(safe-area-inset-left)
  );
  --toastify-toast-bottom: max(
    var(--toastify-toast-offset),
    env(safe-area-inset-bottom)
  );
  --toastify-toast-background: #fff;
  --toastify-toast-min-height: 64px;
  --toastify-toast-max-height: 800px;
  --toastify-toast-bd-radius: 6px;
  --toastify-font-family: sans-serif;
  --toastify-z-index: 9999;
  --toastify-text-color-light: #757575;
  --toastify-text-color-dark: #fff;
  --toastify-text-color-info: #fff;
  --toastify-text-color-success: #fff;
  --toastify-text-color-warning: #fff;
  --toastify-text-color-error: #fff;
  --toastify-spinner-color: #616161;
  --toastify-spinner-color-empty-area: #e0e0e0;
  --toastify-color-progress-light: linear-gradient(
    90deg,
    #4cd964,
    #5ac8fa,
    #007aff,
    #34aadc,
    #5856d6,
    #ff2d55
  );
  --toastify-color-progress-dark: #bb86fc;
  --toastify-color-progress-info: var(--toastify-color-info);
  --toastify-color-progress-success: var(--toastify-color-success);
  --toastify-color-progress-warning: var(--toastify-color-warning);
  --toastify-color-progress-error: var(--toastify-color-error);
  --toastify-color-progress-bgo: 0.2;
}
.Toastify__toast-container {
  z-index: var(--toastify-z-index);
  -webkit-transform: translateZ(var(--toastify-z-index));
  position: fixed;
  padding: 4px;
  width: var(--toastify-toast-width);
  box-sizing: border-box;
  color: #fff;
}
.Toastify__toast-container--top-left {
  top: var(--toastify-toast-top);
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--top-center {
  top: var(--toastify-toast-top);
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--top-right {
  top: var(--toastify-toast-top);
  right: var(--toastify-toast-right);
}
.Toastify__toast-container--bottom-left {
  bottom: var(--toastify-toast-bottom);
  left: var(--toastify-toast-left);
}
.Toastify__toast-container--bottom-center {
  bottom: var(--toastify-toast-bottom);
  left: 50%;
  transform: translateX(-50%);
}
.Toastify__toast-container--bottom-right {
  bottom: var(--toastify-toast-bottom);
  right: var(--toastify-toast-right);
}
@media only screen and (max-width: 480px) {
  .Toastify__toast-container {
    width: 100vw;
    padding: 0;
    left: env(safe-area-inset-left);
    margin: 0;
  }
  .Toastify__toast-container--top-center,
  .Toastify__toast-container--top-left,
  .Toastify__toast-container--top-right {
    top: env(safe-area-inset-top);
    transform: translateX(0);
  }
  .Toastify__toast-container--bottom-center,
  .Toastify__toast-container--bottom-left,
  .Toastify__toast-container--bottom-right {
    bottom: env(safe-area-inset-bottom);
    transform: translateX(0);
  }
  .Toastify__toast-container--rtl {
    right: env(safe-area-inset-right);
    left: auto;
  }
}
.Toastify__toast {
  --y: 0;
  position: relative;
  -ms-touch-action: none;
  touch-action: none;
  min-height: var(--toastify-toast-min-height);
  box-sizing: border-box;
  margin-bottom: 1rem;
  padding: 8px;
  border-radius: var(--toastify-toast-bd-radius);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-height: var(--toastify-toast-max-height);
  font-family: var(--toastify-font-family);
  cursor: default;
  direction: ltr;
  z-index: 0;
  overflow: hidden;
}
.Toastify__toast--stacked {
  position: absolute;
  width: 100%;
  transform: translate3d(0, var(--y), 0) scale(var(--s));
  transition: transform 0.3s;
}
.Toastify__toast--stacked[data-collapsed] .Toastify__close-button,
.Toastify__toast--stacked[data-collapsed] .Toastify__toast-body {
  transition: opacity 0.1s;
}
.Toastify__toast--stacked[data-collapsed="false"] {
  overflow: visible;
}
.Toastify__toast--stacked[data-collapsed="true"]:not(:last-child) > * {
  opacity: 0;
}
.Toastify__toast--stacked:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: calc(var(--g) * 1px);
  bottom: 100%;
}
.Toastify__toast--stacked[data-pos="top"] {
  top: 0;
}
.Toastify__toast--stacked[data-pos="bot"] {
  bottom: 0;
}
.Toastify__toast--stacked[data-pos="bot"].Toastify__toast--stacked:before {
  transform-origin: top;
}
.Toastify__toast--stacked[data-pos="top"].Toastify__toast--stacked:before {
  transform-origin: bottom;
}
.Toastify__toast--stacked:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  transform: scaleY(3);
  z-index: -1;
}
.Toastify__toast--rtl {
  direction: rtl;
}
.Toastify__toast--close-on-click {
  cursor: pointer;
}
.Toastify__toast-body {
  margin: auto 0;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 6px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
}
.Toastify__toast-body > div:last-child {
  word-break: break-word;
  -ms-flex: 1;
  flex: 1;
}
.Toastify__toast-icon {
  -webkit-margin-end: 10px;
  margin-inline-end: 10px;
  width: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: -ms-flexbox;
  display: flex;
}
.Toastify--animate {
  animation-fill-mode: both;
  animation-duration: 0.5s;
}
.Toastify--animate-icon {
  animation-fill-mode: both;
  animation-duration: 0.3s;
}
@media only screen and (max-width: 480px) {
  .Toastify__toast {
    margin-bottom: 0;
    border-radius: 0;
  }
}
.Toastify__toast-theme--dark {
  background: var(--toastify-color-dark);
  color: var(--toastify-text-color-dark);
}
.Toastify__toast-theme--colored.Toastify__toast--default,
.Toastify__toast-theme--light {
  background: var(--toastify-color-light);
  color: var(--toastify-text-color-light);
}
.Toastify__toast-theme--colored.Toastify__toast--info {
  color: var(--toastify-text-color-info);
  background: var(--toastify-color-info);
}
.Toastify__toast-theme--colored.Toastify__toast--success {
  color: var(--toastify-text-color-success);
  background: var(--toastify-color-success);
}
.Toastify__toast-theme--colored.Toastify__toast--warning {
  color: var(--toastify-text-color-warning);
  background: var(--toastify-color-warning);
}
.Toastify__toast-theme--colored.Toastify__toast--error {
  color: var(--toastify-text-color-error);
  background: var(--toastify-color-error);
}
.Toastify__progress-bar-theme--light {
  background: var(--toastify-color-progress-light);
}
.Toastify__progress-bar-theme--dark {
  background: var(--toastify-color-progress-dark);
}
.Toastify__progress-bar--info {
  background: var(--toastify-color-progress-info);
}
.Toastify__progress-bar--success {
  background: var(--toastify-color-progress-success);
}
.Toastify__progress-bar--warning {
  background: var(--toastify-color-progress-warning);
}
.Toastify__progress-bar--error {
  background: var(--toastify-color-progress-error);
}
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--error,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--info,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--success,
.Toastify__progress-bar-theme--colored.Toastify__progress-bar--warning {
  background: var(--toastify-color-transparent);
}
.Toastify__close-button {
  color: #fff;
  background: transparent;
  outline: none;
  border: none;
  padding: 0;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.3s ease;
  -ms-flex-item-align: start;
  align-self: flex-start;
  z-index: 1;
}
.Toastify__close-button--light {
  color: #000;
  opacity: 0.3;
}
.Toastify__close-button > svg {
  fill: currentColor;
  height: 16px;
  width: 14px;
}
.Toastify__close-button:focus,
.Toastify__close-button:hover {
  opacity: 1;
}
@keyframes Toastify__trackProgress {
  0% {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}
.Toastify__progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--toastify-z-index);
  opacity: 0.7;
  transform-origin: left;
  border-bottom-left-radius: var(--toastify-toast-bd-radius);
}
.Toastify__progress-bar--animated {
  animation: Toastify__trackProgress linear 1 forwards;
}
.Toastify__progress-bar--controlled {
  transition: transform 0.2s;
}
.Toastify__progress-bar--rtl {
  right: 0;
  left: auto;
  transform-origin: right;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: var(--toastify-toast-bd-radius);
}
.Toastify__progress-bar--wrp {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px;
  border-bottom-left-radius: var(--toastify-toast-bd-radius);
}
.Toastify__progress-bar--wrp[data-hidden="true"] {
  opacity: 0;
}
.Toastify__progress-bar--bg {
  opacity: var(--toastify-color-progress-bgo);
  width: 100%;
  height: 100%;
}
.Toastify__spinner {
  width: 20px;
  height: 20px;
  box-sizing: border-box;
  border: 2px solid;
  border-radius: 100%;
  border-color: var(--toastify-spinner-color-empty-area);
  border-right-color: var(--toastify-spinner-color);
  animation: Toastify__spin 0.65s linear infinite;
}
@keyframes Toastify__bounceInRight {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, var(--y), 0);
  }
}
@keyframes Toastify__bounceInLeft {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, var(--y), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, var(--y), 0);
  }
}
@keyframes Toastify__bounceInUp {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }
  75% {
    transform: translate3d(0, 10px, 0);
  }
  90% {
    transform: translate3d(0, -5px, 0);
  }
  to {
    transform: translateZ(0);
  }
}
@keyframes Toastify__bounceOutUp {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
@keyframes Toastify__bounceInDown {
  0%,
  60%,
  75%,
  90%,
  to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
@keyframes Toastify__bounceOutDown {
  20% {
    transform: translate3d(0, calc(var(--y) - 10px), 0);
  }
  40%,
  45% {
    opacity: 1;
    transform: translate3d(0, calc(var(--y) + 20px), 0);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.Toastify__bounce-enter--bottom-left,
.Toastify__bounce-enter--top-left {
  animation-name: Toastify__bounceInLeft;
}
.Toastify__bounce-enter--bottom-right,
.Toastify__bounce-enter--top-right {
  animation-name: Toastify__bounceInRight;
}
.Toastify__bounce-enter--top-center {
  animation-name: Toastify__bounceInDown;
}
.Toastify__bounce-enter--bottom-center {
  animation-name: Toastify__bounceInUp;
}
.Toastify__bounce-exit--bottom-left,
.Toastify__bounce-exit--top-left {
  animation-name: Toastify__bounceOutLeft;
}
.Toastify__bounce-exit--bottom-right,
.Toastify__bounce-exit--top-right {
  animation-name: Toastify__bounceOutRight;
}
.Toastify__bounce-exit--top-center {
  animation-name: Toastify__bounceOutUp;
}
.Toastify__bounce-exit--bottom-center {
  animation-name: Toastify__bounceOutDown;
}
@keyframes Toastify__zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes Toastify__zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: translate3d(0, var(--y), 0) scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.Toastify__zoom-enter {
  animation-name: Toastify__zoomIn;
}
.Toastify__zoom-exit {
  animation-name: Toastify__zoomOut;
}
@keyframes Toastify__flipIn {
  0% {
    transform: perspective(400px) rotateX(90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotateX(10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotateX(-5deg);
  }
  to {
    transform: perspective(400px);
  }
}
@keyframes Toastify__flipOut {
  0% {
    transform: translate3d(0, var(--y), 0) perspective(400px);
  }
  30% {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotateX(-20deg);
    opacity: 1;
  }
  to {
    transform: translate3d(0, var(--y), 0) perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.Toastify__flip-enter {
  animation-name: Toastify__flipIn;
}
.Toastify__flip-exit {
  animation-name: Toastify__flipOut;
}
@keyframes Toastify__slideInRight {
  0% {
    transform: translate3d(110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}
@keyframes Toastify__slideInLeft {
  0% {
    transform: translate3d(-110%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}
@keyframes Toastify__slideInUp {
  0% {
    transform: translate3d(0, 110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}
@keyframes Toastify__slideInDown {
  0% {
    transform: translate3d(0, -110%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, var(--y), 0);
  }
}
@keyframes Toastify__slideOutRight {
  0% {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(110%, var(--y), 0);
  }
}
@keyframes Toastify__slideOutLeft {
  0% {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-110%, var(--y), 0);
  }
}
@keyframes Toastify__slideOutDown {
  0% {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 500px, 0);
  }
}
@keyframes Toastify__slideOutUp {
  0% {
    transform: translate3d(0, var(--y), 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -500px, 0);
  }
}
.Toastify__slide-enter--bottom-left,
.Toastify__slide-enter--top-left {
  animation-name: Toastify__slideInLeft;
}
.Toastify__slide-enter--bottom-right,
.Toastify__slide-enter--top-right {
  animation-name: Toastify__slideInRight;
}
.Toastify__slide-enter--top-center {
  animation-name: Toastify__slideInDown;
}
.Toastify__slide-enter--bottom-center {
  animation-name: Toastify__slideInUp;
}
.Toastify__slide-exit--bottom-left,
.Toastify__slide-exit--top-left {
  animation-name: Toastify__slideOutLeft;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}
.Toastify__slide-exit--bottom-right,
.Toastify__slide-exit--top-right {
  animation-name: Toastify__slideOutRight;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}
.Toastify__slide-exit--top-center {
  animation-name: Toastify__slideOutUp;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}
.Toastify__slide-exit--bottom-center {
  animation-name: Toastify__slideOutDown;
  animation-timing-function: ease-in;
  animation-duration: 0.3s;
}
@keyframes Toastify__spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.FugMedia_mainDiv__IwAaR {
  background-image: url(/fug_media/fug_media_background2.png);
  background-color: #000;
  background-size: cover;
  background-position: 50%;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.FugMedia_gridBackground__39NsH {
  background-color: rgba(0, 0, 0, 0.8);
}
.FugMedia_gridBackgroundMobile__NYVEw {
  margin-top: 2rem;
  margin-bottom: 2rem;
  background-color: #000;
  border: 2px solid #fff;
}
.VideoGrid_videoTitle__tLILI {
  height: 3rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  white-space: normal;
}
.VideoGrid_videoContainer__Dno1z {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .VideoGrid_gridContainer__N0nBz {
    grid-template-columns: 1fr;
  }
}
.VideoPlayer_videoContainer__rHMZV {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.VideoPlayer_video__zPx0A {
  background-color: #000;
  width: 100%;
  height: 100%;
}
@keyframes MarqueeBlue_marquee__9HOJJ {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.MarqueeBlue_marqueeContainer__WbzHB {
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.MarqueeBlue_marqueeContent__QhYu4 {
  display: flex;
  width: 200%;
  animation: MarqueeBlue_marquee__9HOJJ 20s linear infinite;
}
.MarqueeBlue_marqueeText__CgtYb {
  flex: 1;
  display: inline-block;
}
.Header_headerMobile__oy_9J {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
}
.Header_button__WLqfM {
  background-color: rgba(162, 195, 238, 0.33);
}
.Manifesto_mainDiv__JUn5i {
  background-image: url(/manifesto/bg_top_clan.png);
  background-color: #000;
  background-size: cover;
  background-position: 50%;
  width: 100%;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.Manifesto_contentWrapper__P2dlM {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.Manifesto_blackDiv___kuo1 {
  background-color: rgba(0, 0, 0, 0.8);
}
.Manifesto_column__043qT {
  flex: 1;
  margin: 0 10px;
  padding-left: 10px;
  padding-right: 15px;
}
.Manifesto_column__043qT:first-child {
  margin-left: 0;
}
.Manifesto_column__043qT:last-child {
  margin-right: 0;
}
.Manifesto_backgroundImage__I5zqJ {
  background-image: url(/manifesto/background_nyan_cat.png);
  background-size: cover;
  background-position: 50%;
  height: auto;
  width: 100%;
}
.MarqueeContrast_marqueeContainer__PxX9j {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  height: auto;
  overflow: visible;
  white-space: nowrap;
  display: flex;
  align-items: center;
  z-index: 1;
}
.MarqueeContrast_marqueeContent__EsWR_ {
  display: inline-block;
  animation: MarqueeContrast_marquee__0J63t 250s linear infinite;
}
@keyframes MarqueeContrast_marquee__0J63t {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.OtherNews_artefactImg__nU_fy {
  max-width: 150px;
}
.OtherNews_absoluteImage__UaQ_t {
  position: absolute;
  width: 25%;
  height: auto;
  top: 43%;
  right: -15%;
  z-index: 10;
}
@keyframes EnterTopAnimation_enterFromTop__szrZQ {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.EnterTopAnimation_enterFromTop__szrZQ {
  animation: EnterTopAnimation_enterFromTop__szrZQ 0.5s ease-out forwards;
}
.Links_socialsContainer__xjX7E {
  border: 1px solid #459cd6;
}
.Links_boxGradientBorder__SVKeZ {
  position: relative;
  padding: 20px;
  border: 1px solid #459cd6;
  z-index: 1;
  overflow: visible;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.Links_label__RlWKx {
  right: 5px;
}
.Links_label2__IX1jB,
.Links_label__RlWKx {
  position: absolute;
  bottom: -27px;
  padding: 3px 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #000;
  background: #459cd6;
  z-index: 2;
}
.Links_label2__IX1jB {
  left: 5px;
}
.Links_link__QiSMC {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.Links_link__QiSMC:hover .Links_hoverFill__qUr3P {
  fill: #c720c9;
}
.Links_customToast__ZYEzo {
  background-color: #333;
  color: #fff;
  padding: 12px;
  font-family: VT323, monospace;
}
.Links_customToastSuccess__VqlwZ {
  background-color: #28a745;
}
.Links_customToastError__NrzU_ {
  background-color: #dc3545;
}
