body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #0a0a0a;
    color: white;
    min-height: 100vh;
    overflow-x: hidden;
}

.kr-background {
    position: fixed;
    inset: 0;
    background: url("/assets/images/kreuzretter_logo.webp") no-repeat center center;
    background-size: contain;
    opacity: 0.15;
    z-index: 1;
}

.kr-menu {
    position: fixed;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 10;
    text-align: right;
}

.kr-menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    padding: 6px 12px;
    background: rgba(0,0,0,0.6);
    border-radius: 6px;
    transition: 0.2s;
}

.kr-menu a:hover {
    background: rgba(255,0,0,0.7);
}

.kr-logo {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.kr-logo img {
    max-width: min(60vw, 60vh);
    height: auto;
}

.kr-content {
    position: relative;
    z-index: 5;
    padding: 120px 20px 40px 20px;
}
