body {
  margin: 0;
  padding: 20px 20px 80px;
  background: #d4d0c8;
  color: #000;
  font-family: "Poppins", sans-serif;
  text-align: center;
  cursor: url("images/vista-normal.cur"), auto;
  --accent: #0000ee;
  --accent-soft: rgba(0, 0, 238, 0.35);
}

body.tint-green {
  --accent: #1fa968;
  --accent-soft: rgba(57, 217, 138, 0.55);
}

body.tint-orange {
  --accent: #cc5200;
  --accent-soft: rgba(255, 102, 0, 0.55);
}

body.tint-blue {
  --accent: #0062cc;
  --accent-soft: rgba(0, 123, 255, 0.55);
}

body.tint-turquoise {
  --accent: #8b5cf6;
  --accent-soft: rgba(139, 92, 246, 0.22);
}

a,
button {
  cursor: url("images/vista-link.cur"), pointer !important;
}

input,
textarea {
  cursor: text;
}

body.loading,
body.loading a,
body.loading button {
  cursor: none !important;
}

h1 {
  margin: 10px 0 20px;
  color: #27281f;
  font-size: 25px;
  font-weight: 450;
}

.section-title {
  margin: 0 0 20px;
  color: #27281f;
  font-size: 20px;
  font-weight: 450;
  position: relative;
  z-index: 2;
}

.page-tint {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: rgba(212, 208, 200, 0);
  transition: background 0.6s ease;
}

.page-tint.green {
  background: rgba(57, 217, 138, 0.22);
}

.page-tint.orange {
  background: rgba(255, 102, 0, 0.22);
}

.page-tint.blue {
  background: rgba(0, 123, 255, 0.22);
}

.page-tint.turquoise {
  background: rgba(139, 92, 246, 0.24);
}

body.wave-effect::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9991;
  pointer-events: none;
  opacity: 0;
  background-image: url("images/noise.png");
  background-repeat: repeat;
  mix-blend-mode: overlay;
  animation: waveNoise 0.85s ease-out forwards;
}

@keyframes waveNoise {
  0% {
    opacity: 0;
    transform: translate(0, 0);
  }
  15% {
    opacity: 0.1;
  }
  50% {
    opacity: 0.055;
    transform: translate(-2%, 1%);
  }
  100% {
    opacity: 0;
    transform: translate(2%, -1%);
  }
}

h1,
.tornado-container,
.divider,
.links,
.discord-status,
.player {
  position: relative;
  z-index: 2;
}

.tornado-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 48px;
}

.tornado {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  width: 110px;
  text-decoration: none;
  color: #38c98b;
}

.tornado-icon {
  width: 75px;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 3px solid #39d98a;
  border-radius: 50%;
  box-shadow: 0 0 14px rgba(57, 217, 138, 0.55);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.tornado:hover .tornado-icon {
  box-shadow: 0 0 20px #39d98a, 0 0 50px #39d98a,
    0 0 90px rgba(57, 217, 138, 0.7);
  transform: scale(1.05);
}

.tornado-icon img {
  width: 52px;
  height: 52px;
}

.tornado-name {
  margin-top: 10px;
  font-size: 24px;
  font-weight: 450;
}

.monero {
  color: #ff6600;
}

.bitlaunch {
  color: #007bff;
}

.njalla {
  color: #8b5cf6;
}

.monero .tornado-icon {
  border-color: #ff6600;
  box-shadow: 0 0 14px rgba(255, 102, 0, 0.55);
}

.bitlaunch .tornado-icon {
  border-color: #007bff;
  box-shadow: 0 0 14px rgba(0, 123, 255, 0.55);
}

.njalla .tornado-icon {
  border-color: #8b5cf6;
  box-shadow: 0 0 14px rgba(139, 92, 246, 0.55);
}

.monero:hover .tornado-icon {
  box-shadow: 0 0 20px #ff6600, 0 0 50px #ff6600,
    0 0 90px rgba(255, 102, 0, 0.7);
}

.bitlaunch:hover .tornado-icon {
  box-shadow: 0 0 20px #007bff, 0 0 50px #007bff,
    0 0 90px rgba(0, 123, 255, 0.7);
}

.njalla:hover .tornado-icon {
  box-shadow:
    0 0 20px #8b5cf6,
    0 0 50px #8b5cf6,
    0 0 90px rgba(139, 92, 246, 0.8);
}

.pgp-note {
  margin-top: 10px;
  position: relative;
  z-index: 2;
}

.pgp-note a {
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.pgp-note a:hover {
  text-decoration: underline;
}

.divider {
  width: 650px;
  height: 1px;
  margin: 25px auto 25px;
  background: var(--accent-soft);
  transition: background 0.3s ease;
}

.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
  max-width: 720px;
  margin: 0 auto;
}

.link {
  width: 110px;
  text-decoration: none;
  color: #000;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px) saturate(160%);
  -webkit-backdrop-filter: blur(8px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 2px 8px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.link:hover .icon {
  transform: translateY(-3px);
}

body.tint-green .link:hover .icon {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 0 22px rgba(57, 217, 138, 0.85), 0 0 46px rgba(57, 217, 138, 0.5),
    0 4px 12px rgba(0, 0, 0, 0.15);
}

body.tint-orange .link:hover .icon {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 0 22px rgba(255, 102, 0, 0.85), 0 0 46px rgba(255, 102, 0, 0.5),
    0 4px 12px rgba(0, 0, 0, 0.15);
}

body.tint-blue .link:hover .icon {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 0 22px rgba(0, 123, 255, 0.85), 0 0 46px rgba(0, 123, 255, 0.5),
    0 4px 12px rgba(0, 0, 0, 0.15);
}

body.tint-turquoise .link:hover .icon {
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 0 22px rgba(139, 92, 246, 0.85), 0 0 46px rgba(139, 92, 246, 0.5),
    0 4px 12px rgba(0, 0, 0, 0.15);
}

.icon img {
  width: 40px;
  height: 40px;
  transition: transform 0.15s ease;
}

.link:hover .icon img {
  transform: scale(1.1);
}

.name {
  color: var(--accent);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.via {
  margin-top: 2px;
  color: #444;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 400;
}

.link:hover .name {
  text-decoration: underline;
}

.discord-status {
  position: fixed;
  right: 15px;
  top: 15px;
  bottom: auto;
  width: 340px;
  z-index: 100;
  padding: 6px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px) saturate(160%);
  -webkit-backdrop-filter: blur(10px) saturate(160%);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 4px 14px rgba(0, 0, 0, 0.18);
}

.discord-status img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.abuseipdb-badge {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 100;
}

.abuseipdb-badge img {
  display: block;
  width: 260px;
  height: auto;
}

.abusech-badge {
  position: fixed;
  right: 15px;
  bottom: 80px;
  z-index: 100;
  width: 250px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: center;
  font-family: sans-serif;
}

.abusech-logo {
  flex: 0 0 auto;
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.abusech-text {
  min-width: 0;
  padding-top: 1px;
}

.abusech-title {
  color: #000000;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
  margin-bottom: 3px;
  position: relative;
  left: -33px;
}

.abusech-stat {
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: #000000;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  white-space: nowrap;
  position: relative;
  left: 2px;
}

.abusech-stat strong {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.abusech-stat:hover span {
  text-decoration: underline;
}

.player {
  position: fixed;
  left: 15px;
  bottom: 15px;
  z-index: 100;
  width: 260px;
  background: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border: 1px solid var(--accent-soft);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  text-align: left;
  font-family: "Poppins", sans-serif;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

.player-btn {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid var(--accent-soft);
  box-shadow: inset -1px -1px #404040;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: border-color 0.3s ease;
}

.player-btn svg {
  width: 16px;
  height: 16px;
}

.player-info {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.player-title {
  font-size: 12px;
  font-weight: 600;
  color: #27281f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-title .status {
  font-weight: 400;
  color: #666;
}

.player-viz {
  width: 100%;
  height: 30px;
  display: block;
}

.enter-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #d4d0c8;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}

.enter-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}

.enter-text {
  font-family: "Poppins", sans-serif;
  font-size: 42px;
  font-weight: 600;
  color: #27281f;
  letter-spacing: 0.5px;
}

#dust-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.loading-cursor {
  position: fixed;
  left: 0;
  top: 0;
  width: 32px;
  height: 32px;
  pointer-events: none;
  z-index: 99999;
  display: none;
  transform: translate(-50%, -50%);
}

.loading-cursor img {
  display: block;
  width: 32px;
  height: 32px;
}

body.loading .loading-cursor {
  display: block;
}

.shockwave {
  position: fixed;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  opacity: 0;
}

.shockwave.green {
  background: radial-gradient(
    circle,
    rgba(57, 217, 138, 0.5) 0%,
    rgba(57, 217, 138, 0.32) 25%,
    rgba(57, 217, 138, 0.18) 50%,
    rgba(57, 217, 138, 0.06) 70%,
    transparent 100%
  );
  animation: shockwave 1s ease-out forwards;
}

.shockwave.orange {
  background: radial-gradient(
    circle,
    rgba(255, 102, 0, 0.5) 0%,
    rgba(255, 102, 0, 0.32) 25%,
    rgba(255, 102, 0, 0.18) 50%,
    rgba(255, 102, 0, 0.06) 70%,
    transparent 100%
  );
  animation: shockwave 1s ease-out forwards;
}

.shockwave.blue {
  background: radial-gradient(
    circle,
    rgba(0, 123, 255, 0.5) 0%,
    rgba(0, 123, 255, 0.32) 25%,
    rgba(0, 123, 255, 0.18) 50%,
    rgba(0, 123, 255, 0.06) 70%,
    transparent 100%
  );
  animation: shockwave 1s ease-out forwards;
}

.shockwave.turquoise {
  background: radial-gradient(
    circle,
    rgba(139, 92, 246, 0.5) 0%,
    rgba(139, 92, 246, 0.32) 25%,
    rgba(139, 92, 246, 0.18) 50%,
    rgba(139, 92, 246, 0.06) 70%,
    transparent 100%
  );
  animation: shockwave 1s ease-out forwards;
}

@keyframes shockwave {
  0% {
    width: 0;
    height: 0;
    opacity: 0.9;
  }
  100% {
    width: 220vmax;
    height: 220vmax;
    opacity: 0;
  }
}