body {
    background-color: #121212;
    font-family: 'Segoe UI', system-ui, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 180px); /* To lige store kolonner */
    gap: 15px;
    padding: 20px;
}

.card {
    background: #1e1e1e;
    border-radius: 24px;
    padding: 20px;
    text-decoration: none;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #333;
    transition: transform 0.2s ease;
}

.card:hover { transform: translateY(-3px); }

/* Top og bund fylder begge kolonner */
.profile, .weather {
    grid-column: span 2;
}

.profile {
    background: linear-gradient(135deg, #2d3436, #1a1a1a);
    text-align: center;
}

.weather {
    height: 150px;
    padding: 0;
    overflow: hidden;
}

/* Farve-indikatorer i bunden af de 4 link-bokse */
.chat { border-bottom: 4px solid #0084ff; }
.links { border-bottom: 4px solid #ff9f43; }
.nas { border-bottom: 4px solid #1dd1a1; }
.nas2 { border-bottom: 4px solid #ee5253; }

#clock { font-size: 2.8rem; margin: 0; font-family: monospace; }
p { margin: 5px 0 0; font-size: 12px; color: #888; letter-spacing: 1px; }
h2 { font-size: 15px; margin: 0; font-weight: 500; }
.icon { font-size: 30px; margin-bottom: 5px; }
