body {
    font-family: Consolas, monospace;
    background: rgb(0, 0, 0);
    overflow: hidden;
    display: flex;
    justify-content: center;
}

a {
    color: #ffffff;
}

kbd {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.controls {
    color: #ffffff;
    position: fixed;
    font-size: 14px;
    background-color: black;
    visibility: visible;
}

.controls select {
    background-color: black;
    color: #ffffff;
    border-radius: 10px;
    font-family: Consolas, monospace;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #2d2d2d;
    color: #ffffff;
    padding: 24px;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.modal-logo {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 8px;
}

.modal-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.modal-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.modal-link {
    color: #64b5f6;
    text-decoration: none;
    font-size: 16px;
    padding: 8px 12px;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.modal-link:hover {
    background-color: rgba(100, 181, 246, 0.1);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 24px;
    font-weight: bold;
    color: #aaaaaa;
    cursor: pointer;
    background: none;
    border: none;
}

.modal-close:hover {
    color: #ffffff;
}

.credits-trigger {
    cursor: pointer;
    text-decoration: underline;
}