@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* BASIC */
*{
    text-decoration: none;
}
.bold{
    font-weight: 600;
}
h1{
  font-size: 64px;
  line-height: 1.1;
  margin-bottom: 24px;
  color: white;
  font-family: Montserrat;
}
h3{
    line-height: 1.1;
    margin-bottom: 24px;
    font-family: Montserrat;
    color: white;
    font-weight: 300;
}
body{
    cursor: crosshair;
    background:
    radial-gradient(circle at top, #2b1148, #0b0614 60%),
    repeating-linear-gradient(
        -45deg,
        rgba(255,255,255,0.02),
        rgba(255,255,255,0.02) 2px,
        transparent 2px,
        transparent 40px
    );
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}
button a{
    color: white;
}
.button-primary, .button-secondary {
    margin-left: 0px;
    border-radius: 12px;
    padding: 16px 32px;
    min-width: 100px;
    font-family: Montserrat;
    font-weight: 600;
    color: white;
    border: 1px solid rgba(180, 130, 255, 0.25);
    backdrop-filter: blur(6px);
    transition: all 0.25s ease;
}
.button-primary{
    background: linear-gradient(135deg, rgba(126, 54, 194, 0.5), rgba(100, 50, 200, 0.35));
}
.button-primary:hover{
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 6px 18px rgba(160, 90, 255, 0.35);
    background: linear-gradient(135deg, rgba(147, 63, 226, 0.75), rgba(130, 80, 240, 0.55));
}
.button-secondary{
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.button-secondary:hover{
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 6px 18px rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.2);
}


/* NAVIGATION BAR */
.navbar{
    background: linear-gradient(135deg, rgba(110, 60, 180, 0.30), rgba(50, 20, 90, 0.30));
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 14px;
    padding: 4px 26px;
    margin: 14px;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 8px 25px rgba(140, 80, 255, 0.15);
    border: 1px solid rgba(170, 120, 255, 0.15);
}
.navdiv{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.navlogo a{
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #c084fc, #7c3aed);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    margin-bottom: 32px;
    text-decoration: none;
}
li{
    display: inline-block;
    list-style: none;
}
li a{
    color: rgba(255,255,255,0.9);
    margin-right: 26px;
    font-weight: 400;
    font-size: 17px;
    position: relative;
    transition: all 0.25s ease;
}
li a::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0%;
    height: 2px;
    background: linear-gradient(135deg, #c084fc, #7c3aed);
    transition: 0.25s;
}
li a:hover{
    color: #ffffff;
}
li a:hover::after{
    width: 100%;
}
.navbutton{
    margin-left: 12px;
    border-radius: 12px;
    padding: 10px 18px;
    min-width: 100px;
    background: linear-gradient(135deg, rgba(140, 80, 255, 0.5), rgba(100, 50, 200, 0.35));
    font-family: Montserrat;
    font-weight: 600;
    color: white;
    border: 1px solid rgba(180,130,255,0.25);
    backdrop-filter: blur(6px);
    cursor: pointer;
    transition: all 0.25s ease;
}
.navbutton:hover{
    transform: translateY(-1px) scale(1.03);
    box-shadow: 0 6px 18px rgba(160, 90, 255, 0.35);
    background: linear-gradient(135deg, rgba(160, 100, 255, 0.75), rgba(130, 80, 240, 0.55));
}

/* HERO */
.hero{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 80px;
}
.hero-content{
    max-width: 600px;
    text-align: center;
}
.special-text{
    background: linear-gradient(135deg, #ab52ff, #28133b);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow:
        0 0 6px rgba(171, 82, 255, 0.5),
        0 0 14px rgba(104, 49, 156, 0.5),
        0 0 28px rgba(104, 49, 156, 0.5);
}
.help-buttons{
    display: flex;
    gap: 18px;
    justify-content: center;
}
.hero-image{
    margin-left: 20px;
    position: relative;
}
.hero-image img{
    filter: drop-shadow(0 0 60px rgba(168,85,247,0.35));
}