:root{
    --green:#49ff93;
    --purple:#b66dff;
    --dark:#121212;
    --card:#1d1d1d;
    --text:#fff;
}

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

body{
    background:var(--dark);
    color:var(--text);
}

/* HEADER */
.top-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 30px;
    background:#121212;
    border-bottom:2px solid var(--purple);
    position:sticky;
    top:0;
    z-index:9999;
}

.header-left img,
.header-right img{
    height:80px;
    width:auto;
    object-fit:contain;
    filter:drop-shadow(0 0 10px rgba(182,109,255,.6));
}

.header-center{
    flex:1;
    text-align:center;
}

.header-center h1{font-size:1.8rem;}
.header-center p{color:var(--purple);}

.header-center nav{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.header-center nav a{
    color:#fff;
    text-decoration:none;
}

.header-center nav a:hover{
    color:var(--purple);
}

/* SECTIONS */
section{
    max-width:1200px;
    margin:40px auto;
    padding:30px;
    background:var(--card);
    border-radius:20px;
}

/* CARDS */
.card-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:20px;
}

.card{
    background:#252525;
    padding:20px;
    border-radius:15px;
}

/* SOCIALS */
.socials-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.social-card{
    text-align:center;
    text-decoration:none;
    color:#fff;
}

.icon{
    width:40px;
    height:40px;
    margin-bottom:10px;
    color:var(--purple);
}

/* PARTNER FIX (WICHTIG) */
.partner-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:20px;
}

.partner-card{
    background:#252525;
    padding:15px;
    border-radius:15px;
    text-align:center;
    display:flex;
    flex-direction:column;
    gap:10px;
}

.partner-card img{
    width:100%;
    height:120px;
    object-fit:contain;
    background:#000;
    padding:10px;
    border-radius:10px;
}

/* BUTTONS */
button{
    cursor:pointer;
    border:none;
    padding:12px 20px;
    border-radius:10px;
    background:#2a2a2a;
    color:#fff;
}

/* COOKIE */
.cookie-banner{
    position:fixed;
    bottom:20px;
    left:20px;
    right:20px;
    background:#1d1d1d;
    border:1px solid var(--purple);
    padding:20px;
    border-radius:15px;
    z-index:10000;
}

.cookie-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
}