@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
/* BASIC */
*{
  box-sizing: border-box;
  font-family: Montserrat, system-ui, sans-serif;
  text-decoration: none;
}
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;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo{
    width: 72px;
    height: 72px;
    border-radius: 18px;
    margin-bottom: 16px;
}
h1{
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    margin: 6px 0 6px;
}
p{
    color: rgba(210, 200, 255, 0.75);
    font-size: 14px;
    margin-bottom: 28px;
}

/* CARD */
.card{
    width: 420px;
    padding: 36px 34px 40px;
    background: rgba(20, 10, 35, 0.85);
    border-radius: 18px;
    border: 1px solid rgba(160, 120, 255, 0.15);
    box-shadow: 0 25px 80px rgba(120, 60, 255, 0.25);
    text-align: center;
    backdrop-filter: blur(14px);
}
.discordbutton{
    width: 100%;
    height: 52px;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #7b5cff, #9b6bff);
    box-shadow: 0 12px 30px rgba(140, 90, 255, 0.45);
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.discordbutton:hover{
    transform: translateY(-2px);
    box-shadow: 0 18px 45px rgba(160, 110, 255, 0.6);
}
.discordbutton img{
    width: 22px;
    height: 22px;
}
.footer{
    margin-top: 24px;
    font-size: 12px;
    color: rgba(190, 180, 255, 0.45);
}
.footer a{
    color: #a98bff;
    text-decoration: none;
}
.footer a:hover{
    text-decoration: underline;
}