    body { font-family: sans-serif; display: 
        flex; flex-direction: 
        column; align-items: 
        center; padding: 2rem; 
        background: #121213; 
        color: white; 
    }
    h1 { 
        letter-spacing: 0.2em; 
        margin-top: 70px;
        margin-bottom: 1rem; 
    }
    #board { 
        display: grid; 
        grid-template-rows: repeat(6, 1fr); 
        gap: 5px; margin-bottom: 1rem;
}
    .row { 
        display: grid; 
        grid-template-columns: repeat(5, 62px); 
        gap: 5px; 
    }
    .tile { 
        width: 62px; 
        height: 62px; 
        border: 2px solid #3a3a3c; 
        display: flex; 
        align-items: center; 
        justify-content: center; 
        font-size: 2rem; 
        font-weight: bold; 
        text-transform: uppercase; 
        transition: background 0.3s; 
    }
    .tile.correct { background: #538d4e; border-color: #538d4e; }
    .tile.present { background: #b59f3b; border-color: #b59f3b; }
    .tile.absent  { background: #3a3a3c; border-color: #3a3a3c; }
    #keyboard { display: flex; flex-direction: column; gap: 8px; align-items: center; }
    .kb-row { display: flex; gap: 6px; }
    .key { padding: 14px 8px; min-width: 36px; border: none; border-radius: 4px; background: #818384; color: white; font-size: 0.85rem; font-weight: bold; cursor: pointer; text-transform: uppercase; }
    .key.correct { background: #538d4e; }
    .key.present { background: #b59f3b; }
    .key.absent  { background: #3a3a3c; }
    #message { 
        height: 2rem; 
        font-weight: 
        bold; color: #fff; 
        margin-bottom: 0.5rem; 
    }
    .home-button {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 10px 15px;
    color: white;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    font-family: 'Courier New', Courier, monospace;
}