/* Erzwungenes Design für RetroLotto */
body {
    background-color: #e6ffe6 !important; /* Force: Hellgrün aus Deiner index.html */
    color: #0d3a26;
    font-family: 'Courier New', Courier, monospace;
    padding: 40px;
    display: flex;
    justify-content: center;
}

.recht-container {
    max-width: 700px;
    background-color: #0d3a26; /* Der dunkle Container-Look */
    color: #e0e0e0; /* Heller Text im dunklen Container */
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #135237;
    box-shadow: 0 12px 35px rgba(0,0,0,0.5);
    line-height: 1.6;
}

h2 {
    color: #ffcc00; /* Gelb */
    border-bottom: 1px solid #135237;
    padding-bottom: 10px;
}

a {
    color: #ffcc00;
    text-decoration: none;
    border-bottom: 1px dashed #ffcc00;
}

    a:hover {
        color: #ffffff;
    }
