:root{
    --bg:#0b1724;
    --card:#16283a;
    --card-hover:#1c334b;

    --primary:#4fc3f7;
    --accent:#ff9800;

    --text:#ffffff;
    --text-muted:#d8e6ef;
}

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

body{
    font-family:Arial, Helvetica, sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.6;
}

.hero{
    background:linear-gradient(
        135deg,
        #102539,
        #1f4d72
    );

    padding:80px 20px;
    text-align:center;
}

.hero h1{
    font-size:3rem;
    margin-bottom:15px;
}

.subtitle{
    color:var(--text-muted);
    font-size:1.2rem;
}

.status{
    display:inline-block;

    margin-top:25px;
    padding:10px 20px;

    background:var(--accent);
    color:#000;

    border-radius:25px;
    font-weight:bold;
}

main{
    max-width:1100px;
    margin:auto;
    padding:40px 20px;
}

.card{
    background:var(--card);

    padding:30px;
    margin-bottom:30px;

    border-radius:12px;

    box-shadow:
        0 4px 15px rgba(0,0,0,0.2);
}

.card h2{
    color:var(--primary);
    margin-bottom:20px;
}

blockquote{
    margin:20px 0;

    padding:20px;

    border-left:5px solid var(--accent);

    font-size:1.4rem;
    font-style:italic;
}

.grid{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:20px;
}

.box{
    background:#1b3246;

    padding:20px;

    border-radius:10px;

    transition:0.3s;
}

.box:hover{
    background:var(--card-hover);
}

.box h3{
    color:#77d7ff;
    margin-bottom:10px;
}

footer{
    text-align:center;

    padding:30px;

    color:#9fb4c3;
}

a{
    text-decoration:none;
    color:inherit;
}

/* Kachel-Links */

.box-link{
    display:block;
    text-decoration:none;
    color:inherit;
}

.box-link:visited,
.box-link:hover,
.box-link:active{
    color:inherit;
    text-decoration:none;
}

.box-link h3{
    color:#77d7ff;
}

.box-link p{
    color:#ffffff;
}

.box{
    cursor:pointer;
    transition:all 0.3s ease;
}

.box-link:hover .box{
    transform:translateY(-5px);
    box-shadow:0 8px 20px rgba(0,0,0,0.25);
}

.monatsleiste form {
    margin: 0;
}

.monatsleiste button.monatslink {
    width: 100%;
    font-family: inherit;
    cursor: pointer;
}

.aktuelles{
    background:#1b3246;
    border-left:5px solid var(--accent);

    padding:20px;
    margin:20px auto;

    max-width:700px;

    border-radius:8px;

    text-align:center;
}
.server-sponsor{
    margin:40px auto 20px auto;
    max-width:700px;

    padding:20px;

    text-align:center;

    background:#1b3246;

    border:1px solid #36546c;
    border-radius:10px;
}

.sponsor-title{
    font-size:0.9rem;
    color:#b0c4d4;
}

.server-sponsor h3{
    margin:10px 0;
    color:#77d7ff;
}

.server-sponsor a{
    color:#77d7ff;
    text-decoration:none;
}

.samstag {
    background: rgba(30,90,170,0.15);
}

.sonntag {
    background: rgba(180,30,30,0.15);
}

.heute {
    background: rgba(255,255,0,0.15);
    font-weight: bold;
}
