.hotkeys-page {
    padding: clamp(22px, 5vw, 50px) 0;
}

.hotkeys-section {
    width: 100%;
}

.hotkeys-title {
    margin: 0;
    color: var(--text);
    text-align: center;
    font-size: clamp(2rem, 5vw, 3.4rem);
}

.hotkeys-subtitle {
    margin: 10px 0 0;
    color: var(--accent);
    text-align: center;
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    font-weight: 800;
}

.hotkeys-text {
    max-width: 720px;
    margin: 10px auto 30px;
    color: var(--muted);
    text-align: center;
    line-height: 1.7;
}

.hotkeys-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
    gap: clamp(12px, 2vw, 18px);
}

.hotkey-card {
    display: grid;
    place-items: center;
    gap: 10px;
    min-height: 138px;
    padding: 18px 12px;
    color: var(--text);
    background: var(--panel-strong);
    border: 1px solid var(--panel-border);
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 22px rgba(31, 42, 68, 0.06);
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.hotkey-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 14px 28px rgba(31, 42, 68, 0.12);
}

.hotkey-icon {
    width: 58px;
    height: 58px;
    display: block;
}

.hotkey-label {
    font-weight: 800;
    font-size: 0.92rem;
    line-height: 1.25;
}

[data-theme="dark"] .hotkey-card {
    box-shadow: 0 8px 22px rgba(0, 255, 136, 0.04);
}
