*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Inter',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#070b17;
    color:white;
    overflow-x:hidden;
}

/* Hintergrund */

body::before{
    content:"";
    position:fixed;
    inset:0;
    background:
        radial-gradient(circle at top right,#00bfff33,transparent 35%),
        radial-gradient(circle at bottom left,#5865F233,transparent 40%),
        radial-gradient(circle at center,#0b1020,#05070f 70%);
    z-index:-2;
}

body::after{
    content:"";
    position:fixed;
    inset:0;
    background-image:
        radial-gradient(#4fc3ff 1px, transparent 1px);
    background-size:70px 70px;
    opacity:.08;
    z-index:-1;
}

/* NAV */

nav{

    position:fixed;

    top:0;

    width:100%;

    padding:18px 8%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    backdrop-filter:blur(20px);

    background:rgba(10,14,28,.65);

    border-bottom:1px solid rgba(255,255,255,.05);

    z-index:999;

}

.logo img{

    height:60px;

}

nav ul{

    display:flex;

    list-style:none;

    gap:35px;

}

nav a{

    color:white;

    text-decoration:none;

    transition:.3s;

    font-weight:500;

}

nav a:hover{

    color:#4fc3ff;

}

.supportButton{

    padding:12px 22px;

    border-radius:12px;

    background:#5865F2;

    transition:.3s;

}

.supportButton:hover{

    background:#6d78ff;

    transform:translateY(-2px);

}

/* HERO */

header{

    min-height:100vh;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:150px 8% 80px;

    gap:80px;

}

.heroLeft{

    max-width:600px;

}

.heroLeft h1{

    font-size:72px;

    margin-bottom:25px;

}

.heroLeft span{

    color:#33c4ff;

}

.heroLeft p{

    color:#c9d2e6;

    font-size:20px;

    line-height:1.7;

}

.buttons{

    display:flex;

    gap:20px;

    margin-top:40px;

}

.invite{

    background:#5865F2;

    padding:18px 34px;

    border-radius:14px;

    text-decoration:none;

    color:white;

    transition:.3s;

    box-shadow:0 0 35px #5865F255;

}

.invite:hover{

    transform:translateY(-4px);

    box-shadow:0 0 45px #5865F2;

}

.discord{

    border:2px solid #5865F2;

    padding:18px 34px;

    border-radius:14px;

    text-decoration:none;

    color:white;

    transition:.3s;

}

.discord:hover{

    background:#5865F2;

}

/* LOGO */

.heroRight{

    display:flex;

    justify-content:center;

}

.heroRight img{

    width:520px;

    animation:float 5s ease-in-out infinite;

    filter:drop-shadow(0 0 40px #33c4ff88);

}

@keyframes float{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-18px);

    }

    100%{

        transform:translateY(0px);

    }

}

/* FEATURES */

#features{

    padding:100px 8%;

}

#features h2{

    text-align:center;

    font-size:42px;

    margin-bottom:60px;

}

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));

    gap:30px;

}

.card{

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border-radius:22px;

    padding:35px;

    transition:.35s;

}

.card:hover{

    transform:translateY(-10px);

    border-color:#33c4ff;

    box-shadow:0 0 40px #33c4ff33;

}

.card h3{

    font-size:24px;

    margin-bottom:18px;

}

.card p{

    color:#bfc8dd;

    line-height:1.7;

}

/* TECH */

.tech{

    padding:80px 8%;

    text-align:center;

}

.tech h2{

    font-size:38px;

    margin-bottom:15px;

}

.tech p{

    font-size:22px;

    color:#5ecfff;

}

/* FOOTER */

footer{

    margin-top:80px;

    padding:40px 8%;

    border-top:1px solid rgba(255,255,255,.08);

    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;

}

footer a{

    color:white;

    text-decoration:none;

    margin-left:25px;

    transition:.3s;

}

footer a:hover{

    color:#33c4ff;

}

/* Responsive */

@media(max-width:1000px){

header{

flex-direction:column;

text-align:center;

}

.buttons{

justify-content:center;

flex-wrap:wrap;

}

.heroRight img{

width:340px;

}

nav{

padding:18px 5%;

}

nav ul{

display:none;

}

.heroLeft h1{

font-size:52px;

}

}
/* Animationen */

.hidden{

    opacity:0;

    transform:translateY(50px);

    transition:1s;

}

.show{

    opacity:1;

    transform:translateY(0);

}

.card{

    position:relative;

    overflow:hidden;

}

.card::before{

    content:"";

    position:absolute;

    width:250px;

    height:250px;

    background:radial-gradient(circle,#33c4ff55,transparent 70%);

    left:var(--x);

    top:var(--y);

    transform:translate(-50%,-50%);

    pointer-events:none;

    opacity:0;

    transition:.2s;

}

.card:hover::before{

    opacity:1;

}

/* Scrollbar */

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#070b17;

}

::-webkit-scrollbar-thumb{

    background:#5865F2;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#33c4ff;

}

/* Textauswahl */

::selection{

    background:#5865F2;

    color:white;

}
