* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #0f0f1a;
    color: #eee;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow-x: hidden; /* Damit aus dem Rand ragende Elemente nicht scrollen */
}

/* Platzhalter für zukünftige Design-Elemente */
.side-decoration {
    position: fixed;
    top: 0;
    width: 80px;          /* Später anpassen */
    height: 100%;
    z-index: 0;
    pointer-events: none; /* Keine Maus-Interaktion */
}
.side-decoration.left {
    left: 0;
    background: transparent; /* Hier später Hintergrundbild, Form o.Ä. */
}
.side-decoration.right {
    right: 0;
    background: transparent;
}

.container {
    width: 100%;
    max-width: 700px;
    padding: 2rem 1rem;
    text-align: center;
    position: relative;
    z-index: 1; /* Über den Side-Decorations */
}

header h1 {
    font-size: 2.8rem;
    margin-bottom: 0.3rem;
    color: #ffb86c;
}

header p {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 2.5rem;
}

/* Vertikale Link-Liste */
.card-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
    align-items: stretch;
}

.card-item {
    display: flex;
    align-items: center;
    padding: 1.2rem 2rem;
    border-radius: 1rem;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 1.3rem;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-blend-mode: overlay;
    gap: 1.2rem;
}

.card-item::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: inherit;
    filter: brightness(0.4);
    z-index: 0;
}

.card-item i, .card-item span {
    position: relative;
    z-index: 1;
}

.card-item i {
    font-size: 2rem;
    width: 2.5rem;
    text-align: center;
}

.card-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}

/* Hintergrundfarben der einzelnen Karten */
.ntfy { background: linear-gradient(135deg, #6c5ce7, #a29bfe); }
.grafana { background: linear-gradient(135deg, #e17055, #fdcb6e); }
.traefik { background: linear-gradient(135deg, #00b894, #55efc4); }
.mc { background: linear-gradient(135deg, #2d3436, #636e72); }
.git { background: linear-gradient(135deg, #e84393, #fd79a8); }
.cs { background: linear-gradient(135deg, #0984e3, #74b9ff); }
.discord { background: linear-gradient(135deg, #5865F2, #7986f9); }
.steam { background: linear-gradient(135deg, #1b2838, #2a475e); }
.faceit { background: linear-gradient(135deg, #ff5500, #ff8800); }
.teamspeak { background: linear-gradient(135deg, #1e90ff, #00bfff); }

footer {
    margin-top: 2rem;
    color: #666;
    font-size: 0.9rem;
}