@import url("https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Jura:wght@300..700&family=Michroma&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=WDXL+Lubrifont+SC&display=swap");

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

html {
  scroll-behavior: smooth;
}

h2 {
  font-family: "Jura", sans-serif;
  font-size: 50px;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#particle-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  background-color: black;
  pointer-events: none; /* clicks go through it */
}


body {
  background-color: black;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

h1 {
    color: white;
}

p {
    color: white;
}

.join-beta-section {
animation: fadeIn 0.6s ease-out forwards;
background: transparent;
padding: 100px 20px;
color: white;
font-family: "Jura", sans-serif;
scroll-margin-top: 150px;
margin-top: 50px;
}

.join-beta-panel {
max-width: 700px;
margin: 0 auto;
text-align: center;
padding: 60px 40px;
border-radius: 20px;
background-color: #1111115f;
border: 0.15rem solid #3da9fc16;
box-shadow: 0 0 30px rgba(61, 169, 252, 0.2);
border-radius: 31px;
}

.join-beta-heading {
font-size: 40px;
color: #3da9fc;
margin-bottom: 12px;
}

.join-beta-subtext {
font-size: 18px;
color: #ccc;
margin-bottom: 30px;
}


/* Reuse existing beta status button style */
.beta-status-button-container {
margin-top: 30px;
}

.hidden {
display: none;
}

@keyframes fadeIn {
from { opacity: 0; transform: scale(0.95); }
to { opacity: 1; transform: scale(1); }
}

/* Check Beta Status Button */
.beta-status-button-container {
margin-top: 30px;
text-align: center;
margin-bottom: 30px;
}

.beta-status-button {
font-family: "Jura", sans-serif;
display: inline-block;
padding: 14px 28px;
font-size: 16px;
font-weight: bold;
border: 0.13rem solid #3da9fc;
color: #3da9fc;
background-color: #000000;
border-radius: 12px;
text-decoration: none;
transition: background 0.2s ease, transform 0.2s ease;
}

.beta-status-button:hover {
background-color: #3da9fc;
color: #000;
box-shadow: 0 0 30px rgba(61, 169, 252, 0.5);
}

.STORMIgniteButton {
  margin-top: 30px;
  margin-left: 30px;
  display: inline-block;
  position: relative;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  border: 0.13rem solid #095a8c;
  border-radius: 31px;
  background-color: rgb(0, 0, 0);
  font-family: "Jura", sans-serif;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.STORMIgniteButton a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(14px, 4vw, 20px);
  display: flex;
  font-size: 20px;
  font-weight: bold;
  background: linear-gradient(90deg, #ffffff, #145076);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.STORMIgniteButton:hover {
  transform: scale(1.05);
  background-color: black;
  box-shadow: 0 0 15px rgba(154, 160, 166, 0.6);
  transition: transform 0.2s ease-in-out, box-shadow 0.3s ease;
}

/* ==== CUSTOM SCROLL BAR ====*/
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: black;
  border-radius: 31px;
}

::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 31px;
  border: 2px solid #111;
}

::-webkit-scrollbar-thumb:hover {
  background: #ffffff;
}