    /* dein richtiges Layout-CSS wie gehabt … */
    .layout-modern {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        text-align: center;
        padding: 30px;
        background: linear-gradient(135deg, #00c853, #007c91);
        color: #ffffff;
        font-family: inherit;
    }

    .layout-modern .uc-box {
        max-width: 520px;
        padding: 40px 35px;
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(12px);
        border-radius: 16px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    }

    .layout-modern h1 {
        font-size: 2.2rem;
        margin-bottom: 15px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .layout-modern p {
        font-size: 1.05rem;
        opacity: 0.9;
        line-height: 1.7;
        margin-bottom: 20px;
    }

    .layout-modern .social-links {
        display: flex;
        gap: 15px;
        justify-content: center;
        margin-top: 20px;
    }

    .layout-modern .social-links a {
        font-size: 1.4rem;
        color: #ffffff;
        opacity: 0.8;
        transition: all 0.3s;
    }

    .layout-modern .social-links a:hover {
        opacity: 1;
        transform: translateY(-3px);
    }

    /* optional: mobile Anpassungen */
    @media (max-width: 768px) {
        .layout-modern h1 {
            font-size: 1.7rem;
        }

        .layout-modern .uc-box {
            padding: 30px 25px;
        }
    }

    /* Login Button */
    .login-button {
        position: fixed;
        bottom: 20px;
        right: 20px;
        background: rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(10px);
        padding: 12px 24px;
        border-radius: 50px;
        text-decoration: none;
        color: #ffffff;
        font-size: 0.9rem;
        transition: all 0.3s;
        border: 1px solid rgba(255, 255, 255, 0.3);
    }

    .login-button:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: translateY(-2px);
    }