*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Inter,sans-serif;
    background:#05060a;
    color:white;
}

/* NAV (gleich wie Projects) */

.nav{
    position:fixed;
    top:0;
    width:100%;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 30px;
    background:rgba(10,12,20,.75);
    backdrop-filter:blur(14px);
    z-index:100;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    color:white;
    text-decoration:none;
    font-size:18px;
    font-weight:800;
    letter-spacing:1px;
}

.logo img{
    width:32px;
    height:32px;
    border-radius:8px;
}

.nav nav{
    display:flex;
    gap:35px;
}

.nav nav a{
    color:rgba(255,255,255,.75);
    text-decoration:none;
    font-weight:600;
    transition:.25s;
    position:relative;
}

.nav nav a:hover{
    color:white;
}

.nav nav a.active{
    color:white;
}

.nav nav a.active::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-8px;
    width:100%;
    height:3px;
    border-radius:999px;
    background:#5865F2;
    box-shadow:0 0 12px #5865F2;
}

.discord {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 8px 14px;
  border-radius: 10px;
  background: #5865F2;

  color: white;
  text-decoration: none;
}

.discord img{
    width:20px;
}

.discord:hover{
    transform:translateY(-3px);
    box-shadow:0 0 18px rgba(88,101,242,.8);
}

/* ABOUT PAGE */

.about{
    width:min(900px,90%);
    margin:auto;
    padding-top:150px;
}

.about h1{
    font-family:Orbitron;
    font-size:64px;
    margin-bottom:15px;
}

.about p{
    color:#9aa6c5;
    font-size:18px;
    line-height:1.6;
}

.box{
    margin-top:40px;
    padding:25px;
    border-radius:18px;
    background:rgba(255,255,255,.04);
    border:1px solid rgba(255,255,255,.08);
}

.box h2{
    margin-bottom:10px;
}

/* Header + Nav nicht markierbar */
h1,
.nav{
    user-select: none;
}

/* Bilder nicht markierbar + nicht ziehbar */
/* Bilder nicht ziehbar */
img{
    user-select: none;
    pointer-events: none;
}

/* Links nicht ziehbar */
a{
    user-drag: none;
    -webkit-user-drag: none;
}

/* Buttons normal */
button{
    user-select: none;
}
