.shortcuts-container {
    width: 100%;
}

.shortcuts-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 24px;
}

.shortcut-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 8px;
    background: rgba(20, 0, 30, 0.6);
    border: 1px solid rgba(255, 102, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    backdrop-filter: blur(10px);
    min-width: 100px;
}

.shortcut-item:hover {
    background: rgba(30, 0, 40, 0.8);
    border-color: rgba(255, 102, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(221, 0, 255, 0.3);
}

.shortcut-favicon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    overflow: visible;
    transition: all 0.3s ease;
}

.shortcut-item:hover .shortcut-favicon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(255, 102, 255, 0.6));
}

.shortcut-favicon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.shortcut-item:hover .shortcut-favicon img {
    filter: drop-shadow(0 0 12px rgba(255, 102, 255, 0.6));
}

.shortcut-favicon-fallback {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: #ff66ff;
    text-shadow: 0 0 15px rgba(255, 102, 255, 0.6);
}

.shortcut-name {
    font-size: 12px;
    text-align: center;
    color: var(--text-primary);
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}