body {
    /* margin: 0;
    font-family: Arial;
    background: linear-gradient(180deg, #0a0a15, #05050d);
    color: white; */

    margin: 0;
    font-family: Arial;
    background: linear-gradient(180deg, #0a0a15, #05050d);
    color: white;

    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    background: rgba(20,20,40,0.9);
    backdrop-filter: blur(10px);
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-container img {
    width: 50px;
    margin-right: 10px;
}

.logo-container h1 {
    color: orange;
    text-shadow: 0 0 10px orange;
}

nav a {
    margin: 0 10px;
    color: #c77dff;
    text-decoration: none;
    transition: 0.3s;
}

nav a:hover {
    color: orange;
    text-shadow: 0 0 10px orange;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background: radial-gradient(circle, #1f1f35, #0a0a15);
}
.hero,
.features {
    flex: 1;
}
.hero h2 {
    font-size: 40px;
}

.hero button {
    margin-top: 20px;
    padding: 12px 25px;
    background: orange;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.hero button:hover {
    background: purple;
    color: white;
    box-shadow: 0 0 15px purple;
}

.features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px;
}

.card {
    background: #1a1a2e65;
    padding: 25px;
    border-radius: 15px;
    width: 250px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 0 10px purple;
}

.card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 0 25px purple;
}

footer {
    text-align: center;
    padding: 15px;
    margin-top: auto; /* MAGIC ✨ */
    background: rgba(20, 20, 40, 0.397);
    /* backdrop-filter: blur(10px); */
}

@media (max-width: 768px) {

    nav {
        display: none;
        flex-direction: column;
        background: #111;
        position: absolute;
        top: 70px;
        right: 20px;
        padding: 15px;
        border-radius: 10px;
    }

    nav.show {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

#toast {
    position: fixed;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    
    background: linear-gradient(135deg, orange, purple);
    color: white;
    padding: 15px 30px;
    border-radius: 10px;
    
    font-weight: bold;
    box-shadow: 0 0 20px rgba(128,0,255,0.7);
    
    transition: 0.5s ease;
    z-index: 9999;
}

#toast.show {
    top: 30px;
}

#toast {
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 10px orange; }
    to { box-shadow: 0 0 25px purple; }
}

.card {
    background: rgba(255, 255, 255, 0.05); /* gennemsigtig */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    border: 1px solid rgba(255, 255, 255, 0);
    border-radius: 16px;

    box-shadow: 0 0 20px rgba(179, 0, 255, 0.048);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 0 35px rgba(0, 200, 255, 0.6);
}

#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at top, #0b0f1a, #02040a);
}

body::before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 20%, rgba(0,200,255,0.15), transparent 40%),
                radial-gradient(circle at 70% 60%, rgba(180,0,255,0.15), transparent 40%);
    z-index: -1;
    pointer-events: none;
}

.discord-button{

display:inline-flex;
align-items:center;
gap:10px;

padding:12px 22px;
margin-top:12px;

font-weight:bold;
font-size:16px;

color:white;
text-decoration:none;

background:rgba(88,101,242,0.15);
border:1px solid rgba(88,101,242,0.4);
border-radius:10px;

backdrop-filter:blur(8px);

transition:all 0.25s ease;

position:relative;
overflow:hidden;

}

/* ikon */

.discord-icon{
width:18px;
height:18px;
}

/* hover */

.discord-button:hover{

background:#5865F2;
transform:translateY(-3px);

box-shadow:
0 0 10px #5865F2,
0 0 25px rgba(88,101,242,0.8),
0 0 45px rgba(88,101,242,0.6);

}

/* glow pulse */

.discord-button::before{

content:"";
position:absolute;
width:100%;
height:100%;
top:0;
left:0;

background:linear-gradient(
120deg,
transparent,
rgba(255,255,255,0.25),
transparent
);

transform:translateX(-100%);
transition:0.5s;

}

.discord-button:hover::before{

transform:translateX(100%);

}

.buttons{
margin-top:10px;
}

.buttons a{

position:relative;
display:inline-block;

padding:16px 45px;
margin:12px;

font-size:18px;
font-weight:600;

color:white;
text-decoration:none;

border-radius:10px;

background:rgba(255,255,255,0.05);
backdrop-filter:blur(10px);

border:1px solid rgba(255,255,255,0.2);

overflow:hidden;

transition:0.35s;

}

/* glow hover */

.buttons a::after{

content:"";

position:absolute;

top:-50%;
left:-50%;

width:200%;
height:200%;

background:radial-gradient(circle,#3b82f6,transparent 70%);

opacity:0;

transition:0.4s;

}

.buttons a:hover::after{
opacity:0.3;
}

.buttons a:hover{

transform:translateY(-6px) scale(1.03);

box-shadow:
0 15px 40px rgba(0,0,0,0.5),
0 0 25px rgba(59,130,246,0.6);

border-color:#3b82f6;

}

.logo{
font-size:24px;
font-weight:bold;
}

.content{
text-align:center;
padding:40px;
background:rgba(0,0,0,0.4);
min-height:100vh;
}

.panel{
background:rgba(30,30,30,0.9);
border:3px solid rgba(255,255,255,0.2);
border-radius:10px;
padding:25px;
margin:30px auto;
max-width:600px;
}

.panel iframe{
box-shadow:0 0 25px rgba(0,0,0,0.6);
border:1px solid rgba(255,255,255,0.15);
}

.servers{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:wrap;
margin-top:40px;
}

.server-card{
background:rgba(40,40,40,0.9);
border:3px solid rgba(255,255,255,0.2);
border-radius:10px;
padding:25px;
width:220px;
transition:0.2s;
}

button{
background:#55aa55;
border:none;
padding:12px 20px;
cursor:pointer;
color:white;
border-radius:6px;
}

.popup{
position:fixed;
bottom:40px;
left:50%;
transform:translateX(-50%);
background:#1f1f1f;
border:3px solid #55ff55;
padding:15px 25px;
opacity:0;
transition:0.3s;
border-radius:8px;
}

.popup.show{
opacity:1;
}

.server-card:hover{
transform:scale(1.05);
border-color:#55ff55;
}

.server:hover{
transform:translateY(-6px) scale(1.05);
border-color:#55ff55;
box-shadow:0 0 20px rgba(85,255,85,0.4);
}

.server-status{

display:flex;
gap:20px;
justify-content:center;
flex-wrap:wrap;

}

.server{

background:rgba(30,30,30,0.9);
padding:20px;
border-radius:10px;
width:180px;

}